/* Custom Ads Manager — frontend styles */

/* ===== Ad container ===== */
.cam-ad { margin: 32px auto; padding: 12px; border: 1px dashed #e6e6e6; border-radius: 14px; background: #fafafa; text-align: center; max-width: 100%; overflow: hidden; }
.cam-ad__label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
.cam-ad__inner { display: block; min-height: 50px; }
.cam-ad__inner ins, .cam-ad__inner img { max-width: 100%; height: auto; }

@media(max-width: 1023px) { .cam-ad--desktop-only { display: none !important; } }
@media(min-width: 1024px) { .cam-ad--mobile-only { display: none !important; } }

.cam-ad--sidebar_top, .cam-ad--sidebar_middle, .cam-ad--sidebar_bottom { margin: 16px 0; padding: 8px; }

.cam-ad--sticky {
    position: fixed; bottom: 0; left: 0; right: 0;
    margin: 0; padding: 8px 36px 8px 12px;
    background: rgba(255,255,255,.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: none; border-top: 1px solid #ddd; border-radius: 0;
    z-index: 90; box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}
@media(min-width: 1024px) {
    .cam-ad--sticky { bottom: 16px; right: 16px; left: auto; max-width: 728px; border-radius: 12px; border: 1px solid #ddd; }
}
.cam-ad__close {
    position: absolute; top: 4px; right: 6px;
    background: rgba(0,0,0,.5); color: #fff; border: none;
    width: 24px; height: 24px; border-radius: 50%;
    font-size: 16px; cursor: pointer; line-height: 1; padding: 0;
}
.cam-ad__close:hover { background: rgba(0,0,0,.8); }

/* ===== Promo grid ===== */
.cam-promo-grid { margin: 32px 0; padding: 24px 16px; background: #fafafa; border-radius: 16px; }
.cam-promo-grid__header { font-size: 20px; font-weight: 700; text-align: center; margin: 0 0 24px; padding-bottom: 14px; border-bottom: 2px solid #1f2124; color: #1f2124; }
.cam-promo-grid__list { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 16px; }
@media (max-width: 1023px) { .cam-promo-grid__list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cam-promo-grid__list { grid-template-columns: repeat(2, 1fr); } }
.cam-promo-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.cam-promo-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.cam-promo-card__img { aspect-ratio: 1/1; background: #f5f5f5; overflow: hidden; }
.cam-promo-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cam-promo-card__title { font-size: 14px; font-weight: 700; color: #1f2124; padding: 10px 12px 4px; line-height: 1.4; text-align: center; }
.cam-promo-card__desc { font-size: 12px; color: #666; padding: 0 12px 12px; line-height: 1.5; text-align: center; }
