.dru-promotions {
    padding-top: 40px;
    padding-bottom: 60px;
}

.dru-promotions__title {
    margin: 0 0 30px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 36px;
    line-height: 46.8px;
    color: #f4f6ef;
}

.dru-promotions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dru-promotions__card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #090909;
    overflow: hidden;
    transition: background .2s ease;
}
.dru-promotions__card:hover {
    background: #151515;
}

.dru-promotions__card-img {
    width: 100%;
    height: 252px;
    background: #1a1a1a center/cover no-repeat;
    overflow: hidden;
}
.dru-promotions__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dru-promotions__card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dru-promotions__card-date {
    font-family: var(--font);
    font-size: 15px;
    line-height: 18px;
    color: #676767;
}
.dru-promotions__card-title {
    margin: 0;
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #ffffff;
}
.dru-promotions__card-desc {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 18px;
    color: #676767;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dru-promotions__card-link {
    margin-top: 10px;
    font-family: var(--font);
    font-size: 15px;
    line-height: 18px;
    color: #6bb022;
    transition: opacity .15s ease;
}
.dru-promotions__card-link:hover { opacity: .7; }

.dru-promotions__more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    width: 142px;
    height: 56px;
    border: 0;
    border-radius: 15px;
    background: #6bb022;
    color: #090909;
    font-family: var(--font);
    font-size: 15px;
    line-height: 19.5px;
    cursor: pointer;
    transition: opacity .15s ease;
}
.dru-promotions__more:hover { opacity: .88; }

@media (max-width: 1240px) {
    .dru-promotions__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .dru-promotions__grid { grid-template-columns: 1fr; }
    .dru-promotions__title { font-size: 28px; }
    .dru-promotions__more { width: 100%; }
}
