/* Native ad card — стиль як у Facebook (sponsored post) */

.site-ad {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(24, 20, 32, 0.98);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.site-ad__head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 6px 8px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-ad__mark {
    display: none;
}

.site-ad__close {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.site-ad__close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.site-ad__link {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.site-ad__link:hover .site-ad__title {
    color: #d8b4fe;
}

.site-ad__teaser-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-ad__copy {
    padding: 10px 12px 8px;
}

.site-ad__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 4px;
    word-break: break-word;
}

.site-ad__desc {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-ad__media {
    width: 100%;
    background: #0a0810;
    line-height: 0;
}

.site-ad--teaser .site-ad__media > .site-ad__img,
.site-ad--placement-post_message.site-ad--teaser .site-ad__media > .site-ad__img,
.site-ad--placement-sidebar.site-ad--teaser .site-ad__media > .site-ad__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: var(--site-ad-img-max-h, 360px);
    object-fit: contain;
    object-position: center;
    background: #0a0810;
}

.site-ad--banner .site-ad__media {
    position: relative;
    aspect-ratio: 1.91 / 1;
    overflow: hidden;
}

.site-ad--banner .site-ad__media > .site-ad__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.site-ad--inline,
.site-ad--placement-photos_grid,
.site-ad--placement-videos_grid,
.site-ad--placement-stories_grid {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin: 10px 0 14px;
    --site-ad-img-max-h: 320px;
}

.site-ad--placement-footer {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    --site-ad-img-max-h: 340px;
}

.site-ad--placement-sidebar {
    width: 100%;
    margin-top: 10px;
    --site-ad-img-max-h: 240px;
}

.site-ad--placement-post_message,
.site-ad--placement-forum_reply {
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0;
    --site-ad-img-max-h: 320px;
}

.site-ad--inpage_push {
    position: fixed;
    top: calc(var(--topbar-h, 58px) + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 120;
    width: min(420px, calc(100vw - 16px));
    margin: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.site-ad__push-inner {
    padding: 0 12px 12px;
}

.site-ad__push-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.site-ad.is-hidden {
    display: none !important;
}

.site-ads-footer-wrap {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 14px;
    padding: 0;
    box-sizing: border-box;
}

.site-ads-footer-wrap .site-ad {
    margin: 0 0 10px;
}

.site-ads-footer-wrap .site-ad:last-child {
    margin-bottom: 0;
}

.main-footer .site-ads-footer-wrap {
    padding-bottom: 0;
}

@media (max-width: 640px) {
    .site-ad--placement-footer {
        --site-ad-img-max-h: 280px;
    }

    .site-ad--placement-sidebar {
        --site-ad-img-max-h: 200px;
    }

    .site-ad--inline,
    .site-ad--placement-photos_grid,
    .site-ad--placement-videos_grid,
    .site-ad--placement-stories_grid,
    .site-ad--placement-post_message,
    .site-ad--placement-forum_reply {
        --site-ad-img-max-h: 260px;
    }
}

.site-ad-popunder-hint {
    display: none;
}
