@charset "utf-8";

.news__list {
    margin-top: 32px;
}

.pageScroll.delay-1 {
    transition-delay: 0.5s;
}

.news__item {
    transition: all 0.8s cubic-bezier(.275,0,0,1);
    overflow: hidden;
}

.news__item a {
    width: 100%;
    padding: 32px 0;
    border-top: var(--primary-lightGray) solid 1px;
    display: flex;
    justify-content: space-between;
}

.news__item:last-of-type {
    border-bottom: var(--primary-lightGray) solid 1px;
}

.news__item.hidden {
    opacity: 0;
    transform: translateY(30px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-width: 0;
}

.news__time {
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
    letter-spacing: 0.48px;
}

.news__title {
    font-size: 1.6rem;
    line-height: 1.5; 
    letter-spacing: 1.12px;
    margin-top: 8px;
}

.news__text {
    display: none;
}

.news__image {
    flex: none;
    width: 93px;
    height: 70px;
    align-items: center;
}

.news__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media screen and (min-width:768px) and (max-width:1023px) {

    .news__list {
        margin-top: 80px;
    }

    .news__item a {
        padding: 64px 0px;
    }

    .news__content {
        display: flex;
        align-items: flex-start;
    }

    .news__time {
        font-size: 2.0rem;
        letter-spacing: 1.44px;
        flex: none;
        line-height: 1.2;
    }

    .newsTxt__wrapper {
        margin-left: 48px;
    }

    .news__title {
        font-size: 2.4rem;
        letter-spacing: 1.68px;
        margin: 0;
        position: relative;
    }

    .news__text {
        display: block;
        font-size: 1.6rem;
        line-height: 2; 
        letter-spacing: 0.8px;
        margin-top: 32px;
        display: -webkit-box;
        -webkit-line-clamp: 2;  
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news__image {
        flex: none;
        width: 170px;
        height: 100%;
        aspect-ratio: 4/3;
        margin-left: 64px;
        overflow: hidden;
    }

    .news__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (min-width:1024px) {
    

    .news__list {
        margin-top: 80px;
    }

    .news__item a {
        padding: 64px 0px;
    }

    .news__content {
        display: flex;
        align-items: flex-start;
    }

    .news__time {
        font-size: 2.4rem;
        letter-spacing: 1.44px;
        flex: none;
    }

    .newsTxt__wrapper {
        margin-left: 96px;
    }

    .news__title {
        font-size: 2.4rem;
        letter-spacing: 1.68px;
        margin: 0;
        position: relative;
    }

    .news__text {
        display: block;
        font-size: 1.6rem;
        line-height: 2; 
        letter-spacing: 0.8px;
        margin-top: 32px;
        display: -webkit-box;
        -webkit-line-clamp: 3;  
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news__image {
        flex: none;
        width: 212px;
        height: 100%;
        aspect-ratio: 4/3;
        margin-left: 132px;
        overflow: hidden;
    }

    .news__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}