.dust-content-promo-slot {
    width: 100%;
    clear: both;
}

.dust-content-promo {
    --dust-promo-accent: #b59142;
    width: min(100%, var(--dust-promo-max-width, 750px));
    margin: clamp(28px, 4vw, 46px) auto;
    clear: both;
    font: inherit;
    text-align: center;
}

.dust-content-promo-label {
    display: block;
    margin: 0 0 7px;
    color: #767676;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dust-content-promo-creative,
.dust-content-promo-link,
.dust-content-promo-image {
    display: block;
    width: 100%;
}

.dust-content-promo-creative {
    overflow: hidden;
    background: #f2f2f2;
}

.dust-content-promo-image {
    height: auto;
    margin: 0;
    border: 0;
    object-fit: contain;
    transition: opacity .2s ease;
}

.dust-content-promo-link:hover .dust-content-promo-image {
    opacity: .93;
}

.dust-content-promo-link:focus-visible,
.dust-content-promo-placeholder-link:focus-visible {
    outline: 2px solid var(--dust-promo-accent);
    outline-offset: 3px;
}

.dust-content-promo-placeholder-box {
    position: relative;
    display: grid;
    min-height: clamp(120px, 26.666vw, 200px);
    place-content: center;
    gap: 7px;
    overflow: hidden;
    border: 1px solid rgba(181, 145, 66, .5);
    background:
        radial-gradient(circle at 18% 20%, rgba(181, 145, 66, .14), transparent 35%),
        linear-gradient(135deg, #111214, #1c1d20);
    color: #fff;
    isolation: isolate;
}

.dust-content-promo-placeholder-box::before,
.dust-content-promo-placeholder-box::after {
    position: absolute;
    z-index: -1;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(181, 145, 66, .18);
    content: '';
    transform: rotate(45deg);
}

.dust-content-promo-placeholder-box::before {
    top: -105px;
    left: -65px;
}

.dust-content-promo-placeholder-box::after {
    right: -65px;
    bottom: -105px;
}

.dust-content-promo-placeholder-link {
    display: grid;
    min-height: inherit;
    place-content: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
}

.dust-content-promo-placeholder-icon {
    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto 4px;
    background: var(--dust-promo-accent);
    box-shadow: 9px -5px 0 -0.5px var(--dust-promo-accent), -9px 5px 0 -0.5px var(--dust-promo-accent);
}

.dust-content-promo-placeholder strong {
    color: #fff;
    font-size: clamp(18px, 2.7vw, 26px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.dust-content-promo-placeholder small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .dust-content-promo {
        margin-block: 28px;
    }

    .dust-content-promo-placeholder-box {
        min-height: 120px;
        padding: 22px 18px;
    }
}
