/* ========================
   广告区域样式
   ======================== */

/* 单个广告大图占位（可替换为实际图片） */
.ad-banner {
    width: 100%;
    aspect-ratio: 3 / 1.6;
    background-color: #e0e0e0;
    border-radius: 0;
}

/* 广告链接容器：让图片自适应宽度并可点击 */
.ad-banner-link {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

/* 广告图片：自动等比缩放到合适大小 */
.ad-banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* 没有广告数据时的占位样式，大小与真实图片保持一致 */
.ad-banner-placeholder {
    max-width: 260px;
    margin: 0 auto;
}