/*=====================================section.blog */
.blogItem {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}
.blogItem:not(:last-child){
    margin-bottom: 3.5rem;
}
.blogItem:nth-child(even) {
    grid-template-areas:"item2 item1";
}

.blogItem:nth-child(even) > .info {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: item2;
    padding: 0 0 0  3.5rem;
}
.blogItem .media {
    width: 100%;
    /*min-height: 45vh;*/
    /*border-radius: 0.75rem;*/
    overflow: hidden;
}
.blogItem .media > * {
    -webkit-transition: all ease-in-out .45s;
    -o-transition: all ease-in-out .45s;
    transition: all ease-in-out .45s;
}
.blogItem:hover .media > * {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.blogItem  .info {
    color: var(--dark);
    padding: 0 3.5rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap:1.88rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blogItem  .info  .title {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 850;
    margin: 0;
    width: 80%;
}
.blogItem .info .titleDT {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blogItem .info .titleDT .dt > * {
    display: block;
    text-align: center;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 700;
}
.blogItem .info .titleDT {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blogItem .info .titleDT .dt  > * ,
.heroBlogItem .info .dt  > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: .25rem;
}
.blogItem .info .titleDT .dt  span ,
.heroBlogItem .info .dt  span{
    display: block;
    text-align: center;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 400;
    white-space: pre;
}
.blogItem .info .titleDT .dt .blog-category span,
.heroBlogItem .info .dt .blog-category span{
    background-color: var(--primary);
    color: var(--white);
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    padding: .25rem;
    border-radius: .25rem;
    float: left;
}
.blogItem .info .des {
}

.blogItem .info  .authorCta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blogItem .info .authorCta > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.blogItem .info .authorCta .author ,
.heroBlogItem .info .author{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
}
.blogItem .info .authorCta .author img, .heroBlogItem .info .author img {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
}

.blogItem .info .authorCta .author .text {}

.blogItem .info .authorCta .author .text > * ,
.heroBlogItem .info .author .text > *{
    display: block;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 200;
}

.blogItem .info .authorCta .author .text > *.name ,
.heroBlogItem .info .author .text > *.name{
    font-weight: 700;
}
/*=====================================section.blog */
/*=====================================skeleton */
.skeleton {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}
.skeleton:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    background: -o-linear-gradient(350deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 60%) #ededed;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 60%) #ededed;
    background-size: 200% 100%;
    background-position-x: 180%;
    -webkit-animation: 1s loading ease-in-out infinite;
    animation: 1s loading ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
}
@-webkit-keyframes loading {
    to {
        background-position-x: -20%
    }
}
@keyframes loading {
    to {
        background-position-x: -20%
    }
}
/*=====================================skeleton */
.loadMore {
    display: block;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 5rem;
    padding-left: 5rem;
    margin: 2rem auto 1rem;
}
/*================================responsive================================*/
@media only screen and (max-width: 768px) {
    section.hero-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        height: auto;
    }

    section.cooperation .info {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    section.cooperation .playIcon {
        grid-column: auto;
    }

    section.participation .info .participationItems {
        row-gap: 1rem;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin: 2.75rem 0;
    }

    section.services .serviceItems {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 1.56rem;
    }

    .magazineItems {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1.44rem;
    }

    .magazineItem {
        padding: 1.44rem 1rem;
    }

    .magazineItem .media {
        height: 50vh;
    }

    .magazineItem .info {
        margin-top: 1.13rem;
    }

    .blogItem {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 1.56rem;
    }

    .blogItem .media {
        /*height: 30vh;*/
        min-height: auto;
    }

    .blogItem .info .title {
        font-size: 1.25rem;
    }

    .blogItem .info , .blogItem:nth-child(even) > .info {
        padding: 0;
    }

    .blogItem:nth-child(even) {
        grid-template-areas: unset;
    }
    .blogItem:nth-child(even) > .info {
        grid-area: auto;
    }
}
@media only screen and (min-width: 640px) and (max-width: 768px){

}
@media only screen and (min-width: 769px) and (max-width: 1199px) {
    .blogItem .media {
        /*min-height: 35vh;*/
    }
    .blogItem .info .title {
        font-size: 1.5rem;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
    .blogItem .info .title {
        font-size: 1.8rem;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .blogItem .info .title {
        font-size: 2.125rem;
    }
    .blogItem .media {
        /*min-height: 40vh;*/
    }
}
