.yw_listing_cards_section {
    max-width: calc(1440px - 37rem);
    margin: 0 auto 12rem;
}

.year-card {
    border-radius: 1.25rem;
    border: 1px solid var(--Neutral-Stroke, #E9EBEC);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subject {
    color: var(--Pine-Green, #008578);

    /* Heading H9- 14px/SemiBold */
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.125rem;
    /* 128.571% */
    letter-spacing: -0.00875rem;

    display: flex;
    align-items: center;
    gap: .25rem;
}

.card-header .subject-category-icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    filter: brightness(0) saturate(100%) invert(22%) sepia(78%) saturate(4532%) hue-rotate(166deg) brightness(99%) contrast(101%);
}

.tags .tag {
    color: var(--Neutral-Black, #1A1A1A);

    /* Heading H9- 14px/Medium */
    font-family: Inter;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    /* 128.571% */
    letter-spacing: -0.00875rem;

    border-radius: 0.25rem .35rem;
    background: #ECF0F4;
    padding: .45rem;
    margin-left: .25rem;

}

.card-content .title {
    color: var(--Neutral-Black, #1A1A1A);

    /* Heading H7- 18px/SemiBold */
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.01125rem;
    margin-bottom: .5rem;
}

.meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.card-arrow {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
}




.showInMob {
    display: none;
}

@media screen and (width <=768px) {
    .hideInMob {
        display: none;
    }

    .showInMob {
        display: flex;
    }

    .yw_listing_cards_section {
        max-width: 100vw;
        margin: 0 auto 8rem;
        padding: 1rem;
    }

    .mobTagTab{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: .75rem;
        border-top: 1px solid var(--Neutral-Stroke, #E9EBEC);
    }


}