.promo-extra__wrapper {
    width: 100%;
    padding: 20px 0;
}

.promo-extra__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.promo-extra__heading {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    color: #262626;
}

.promo-extra__all {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    color: #1D9E75;
    text-decoration: none;
}

.promo-extra__all:hover {
    text-decoration: underline;
}

.promo-extra__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.promo-extra__card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid #EEEEEE;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    transition: border-color 0.2s;
}

.promo-extra__card:hover {
    border-color: #1D9E75;
}

.promo-extra__card-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #F5F5F5;
}

.promo-extra__card-img-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-extra__card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E1F5EE 0%, #9FE1CB 100%);
}

.promo-extra__card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
}

.promo-extra__card-title {
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
    color: #262626;
    line-height: 1.3;
}

.promo-extra__card-desc {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 400;
    color: #525252;
    line-height: 1.4;
}

.promo-extra__card-date {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 500;
    color: #1D9E75;
    margin-top: 2px;
}