.standalone-native-ad-box {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    width: 100%;
}

.ad-card-clickable-overlay-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: unset;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.standalone-native-ad-box.grid-layout {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.5));
    border: 1px dashed rgba(56, 189, 248, 0.25);
    border-radius: 12px;
    min-height: 210px;
    height: 100%;
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 400ms ease, border-color 400ms ease;
}

.standalone-native-ad-box.grid-layout:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
}

.standalone-native-ad-box.wide-grid-layout {
    grid-column: 1 / -1;
    width: 100%;
    align-self: start;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.5));
    border: 1px dashed rgba(56, 189, 248, 0.25);
    border-radius: 12px;
    min-height: 110px;
    max-height: 150px;
    height: 100%;
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 400ms ease, border-color 400ms ease;
}

.standalone-native-ad-box.wide-grid-layout:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
}

.standalone-native-ad-box.banner-layout {
    grid-column: 1 / -1;
    margin: 6px 0;
    width: 100%;
}

.promo-wrapper-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.promo-mode-grid {
    padding: 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
}

.promo-mode-grid .promo-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    flex: 1 1 auto;
}

.promo-mode-grid .promo-button-cta {
    width: 100%;
    margin-top: auto;
    align-self: flex-end;
}

.promo-mode-banner {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.06), #070a12);
    border: 1px dashed rgba(56, 189, 248, 0.35);
    border-radius: 12px;
    padding: 14px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-direction: row;
    width: 100%;
}

.promo-mode-banner .promo-body {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.promo-mode-banner .promo-button-cta {
    margin-left: auto;
    margin-top: 0;
    align-self: center;
}

.promo-text {
    min-width: 0;
    flex: 1;
    text-align: left;
}

.promo-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 4px 0;
    padding: 0;
    color: #f8fafc;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.promo-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0;
    padding: 0;
    font-weight: 500;
    white-space: normal;
}

.promo-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
}

.promo-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    left: auto;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.05em;
}

.promo-button-cta {
    font-size: 12px;
    padding: 8px 18px;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}