/**
 * 광고 배너 공통 스타일
 * 경로: /www/ad_store/css/common.css
 */

.ad-banner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 15px 0;
}

.ad-banner-link {
    display: block;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ad-banner-link:hover {
    transform: scale(1.02);
}

.ad-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 🆕 업체명 오버레이 */
.ad-company-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    color: white;
    padding: 20px 15px 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.5px;
}

.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.ad-banner-desc {
    margin-top: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

/* 로딩 애니메이션 */
.ad-banner-wrapper.loading {
    opacity: 0.6;
}

.ad-banner-wrapper.loading .ad-banner-image {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}