/* Hamong Ads Consumer — 소비자 사이트 전용 스타일 */
/* Provider의 .hamong-ad-* 클래스와 충돌 방지를 위해 .hamong-consumer-ad-* 사용 */

.hamong-consumer-ads {
    margin: 0;
    padding: 0;
}

.hamong-consumer-ad {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
}

.hamong-consumer-ad-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    margin-bottom: 6px;
}

/* 카드형 (side-right) */
.hamong-consumer-ad-card {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.hamong-consumer-ad-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hamong-consumer-ad-card-inner {
    display: flex;
    gap: 12px;
}

.hamong-consumer-ad-card-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.hamong-consumer-ad-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hamong-consumer-ad-card-text {
    flex: 1;
}

.hamong-consumer-ad-card-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.hamong-consumer-ad-card-content {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* 가로형 카드 (inside-content) */
.hamong-consumer-ad-horizontal {
    position: relative;
    display: flex;
    gap: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    margin: 20px 0;
}

.hamong-consumer-ad-horizontal-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
}

.hamong-consumer-ad-horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hamong-consumer-ad-horizontal-text {
    flex: 1;
}

.hamong-consumer-ad-horizontal-text h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.hamong-consumer-ad-horizontal-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* 이미지형 (side-left, main) */
.hamong-consumer-ad-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
