.promotii-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.promo-item {
    display: flex;
    flex-direction: column;
}
.promo-image img {
    border-radius: 8px 8px 0 0;
}
h2.promo-title {
    line-height: 1.3;
    font-size: 28px;
}
.promo-details {
    flex: 1;
    box-sizing: border-box;
    padding: 24px;
    border: 1px solid #F3f3f3;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
}
p.promo-dates {
    font-weight: 400;
}
.promo-content {
    display: flex;
    flex: 1;
}
.promo-actions {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
    justify-content: flex-end;
}
a.btn {
    border-radius: 3px;
    background: var(--global-palette-btn-bg);
    color: var(--global-palette-btn);
    padding: .4em 1em;
    border: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    display: inline-block;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
    text-align: center;
}
a.btn:hover {
    background: var(--global-palette-btn-bg-hover);
    color: var(--global-palette-btn-hover);
}

.promo-details a.btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .promotii-content {
        grid-template-columns: 1fr;
    }
}