/** Shopify CDN: Minification failed

Line 289:0 Expected "}" to go with "{"

**/
/* ==========================================
   CHERRY Articles
========================================== */

.articles-page{
    background:#fff;
    padding-bottom:80px;
}

/* ==========================================
   HERO
========================================== */

.articles-hero{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    margin:40px auto 70px;
    max-width:1400px;
}

.articles-hero__image{
    display:block;
    width:100%;
    height:500px;
    object-fit:cover;
}

.articles-hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.10) 0%,
        rgba(255,255,255,.08) 45%,
        rgba(255,255,255,.55) 75%,
        rgba(255,255,255,.95) 100%
    );
}

.articles-hero__content{
    position:absolute;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    max-width:460px;
}

.articles-hero__title{
    margin:0;
    color:#8B0000;
    font-size:50px;
    font-weight:800;
    line-height:1.1;
}

.articles-hero__subtitle{
    margin-top:15px;
    color:#555;
    font-size:18px;
    line-height:1.7;
}

/* ==========================================
   INTRO
========================================== */

.articles-intro{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.articles-intro__title{
    color:#8B0000;
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.articles-intro__text{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* ==========================================
   GRID
========================================== */

.articles-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:40px;
    max-width:860px;
    gap:30px;
    margin:0 auto;

/* ==========================
   CARD
========================== */

.article-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;

    background:#fff;

    border:1px solid #b51217;
    border-radius:28px;

    text-align:center;

    height:100%;

    transition:.25s ease;
}

.article-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.article-card__image{
    width:100%;
    overflow:hidden;
}

.article-card__image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.article-card__body{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:20px 28px 28px;
}

.article-card__date{

    font-size:13px;
    color:#777;

    margin-bottom:10px;
}

.article-card__title {
    color: #8B0000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;

    min-height: 47px;
    max-height: 47px;
}

.article-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.6;
    min-height: 63px;
    max-height: 63px;
}

.article-card__button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin:28px auto 0;

    width:150px;

    height:46px;

    background:#8B0000;

    color:#fff;

    text-decoration:none;

    border-radius:999px;

    font-weight:700;
}

.article-card__button:hover{

    background:#650000;

    color:#fff;
}

/* ==========================================
   EMPTY
========================================== */

.articles-empty{
    grid-column:1/-1;
    text-align:center;
    padding:80px 0;
}

.articles-empty h3{
    color:#8B0000;
}

.articles-empty p{
    color:#777;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:990px){

    .articles-grid{
        grid-template-columns:1fr;
        max-width:550px;
    }

}

@media(max-width:768px){

    .articles-hero{
        margin-top:20px;
        border-radius:16px;
    }

    .articles-hero__image{
        height:400px;
    }

    .articles-hero__overlay{
        background:rgba(255,255,255,.55);
    }

    .articles-hero__content{
        left:25px;
        right:25px;
        top:auto;
        bottom:35px;
        transform:none;
    }

    .articles-hero__title{
        font-size:34px;
    }

    .articles-intro__title{
        font-size:30px;
    }

    .article-card__title{
        font-size:26px;
    }

}

