/* === Article Card Component === */
.article-card {
    display: flex;
    flex-direction: column;
}

.article-card__image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card__image:hover img {
    transform: scale(1.03);
}

.article-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}

.article-card__eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 141%;
    text-transform: uppercase;
    color: #9980F1;
}

.article-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    color: black;
    a{
        span{
            font-weight: 600;
            display: block;
        }
    }
}

.article-card__excerpt {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: var(--color-dark-matter);
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-jungle-green);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.2s ease;
}

.article-card__link:hover {
    gap: 12px;
}
.article-card__date{
    display: none;
}

.blog-articles-grid .article-card{
    padding: 14px 14px 28px 14px;
    border-radius: 10px;
    background-color: #FCFBF8;
    .article-card__date{
        display: block;
        font-weight: 500;
        font-size: 12px;
        line-height: 155%;
        color: #3A5E5D;
        vertical-align: middle;
        text-transform: uppercase;

    }
    .article-card__eyebrow{
        display: none;
    }
    .article-card__link{
        display: none;
    }
    .article-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .article-card__tag {
        padding: 4px 12px;
        /*border: 1px solid rgba(0, 0, 0, .15);*/
        border-radius: 999px;
        text-decoration: none;
        color: inherit;
        transition: background .2s, border-color .2s;
        color: #3A5E5D;
        font-weight: 500;
        font-size: 12px;
        line-height: 141%;
        text-align: center;
        vertical-align: middle;
        background-color: #E7E2CA;
    }

    /*.article-card__tag:hover {*/
    /*    background: rgba(0, 0, 0, .05);*/
    /*    border-color: rgba(0, 0, 0, .3);*/
    /*}*/
}
.post-hero__meta .article-card__tags{
    display: flex;
    margin-top: 0;
}
.article-card__tags {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.article-card__tag {
    padding: 4px 12px;
    /*border: 1px solid rgba(0, 0, 0, .15);*/
    border-radius: 999px;
    text-decoration: none;
    color: inherit;
    transition: background .2s, border-color .2s;
    color: #3A5E5D;
    font-weight: 500;
    font-size: 12px;
    line-height: 141%;
    text-align: center;
    vertical-align: middle;
    background-color: #E7E2CA;
}

/*.article-card__tag:hover {*/
/*    background: rgba(0, 0, 0, .05);*/
/*    border-color: rgba(0, 0, 0, .3);*/
/*}*/