/* 제휴 배너 광고 스트립 (모든 페이지 공용) */
.ad-strip { padding: 16px 0; }
.ad-strip * { box-sizing: border-box; }
.ad-strip-inner { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.ad-strip-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.ad-strip-title { color: #8a8474; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.ad-strip-inquiry { color: #6f736c; font-size: 13px; text-decoration: none; }
.ad-strip-inquiry:hover { color: #426140; text-decoration: underline; }
.ad-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ad-slot { position: relative; display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 10 / 3; text-decoration: none; transition: box-shadow .2s ease, transform .2s ease; }
.ad-slot:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, .12); transform: translateY(-2px); }
.ad-slot .ad-badge { position: absolute; top: 8px; left: 8px; z-index: 2; padding: 2px 8px; border-radius: 6px; background: rgba(58, 74, 51, .92); color: #fff; font-size: 11px; font-weight: 700; }
.ad-slot.filled { border: 1px solid #e3ddce; background: #fff; }
.ad-slot.filled img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ad-slot.empty { display: flex; align-items: center; justify-content: center; text-align: center; border: 1.5px dashed #d6d0c0; background: #fbfaf6; }
.ad-empty-text { display: flex; flex-direction: column; gap: 3px; line-height: 1.3; }
.ad-empty-text strong { color: #3a4a33; font-size: 15px; }
.ad-empty-text small { color: #8a9376; font-size: 12px; }
@media (max-width: 760px) { .ad-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .ad-strip-grid { grid-template-columns: 1fr; } }

/* 인쇄 시 광고(제휴 배너·애드센스 자동광고)는 출력하지 않음 */
@media print {
    .ad-strip,
    ins.adsbygoogle,
    .adsbygoogle,
    .google-auto-placed,
    [data-ad-status],
    [aria-label="Advertisement"],
    iframe[id^="aswift_"],
    div[id^="aswift_"],
    div[id^="google_ads_iframe_"] {
        display: none !important;
    }
}
