/* 하몽 광고 카드 스타일 - side-right 이미지+텍스트 광고 */

.hamong-ad-card {
    display: block !important;
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    margin-bottom: 15px !important;
    position: relative !important;
}

/* 링크가 있는 광고만 hover 효과 */
a.hamong-ad-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #ccc;
    cursor: pointer;
}

/* 링크 없는 광고는 기본 커서 */
div.hamong-ad-card {
    cursor: default;
}

.hamong-ad-card-inner {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
}

.hamong-ad-card-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
}

/* 링크 아이콘 표시 */
a.hamong-ad-card .hamong-ad-card-image::after {
    content: '🔗';
    position: absolute;
    bottom: 3px;
    right: 3px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
    line-height: 1;
}

.hamong-ad-card-text {
    flex: 1;
    min-width: 0;
}

.hamong-ad-card-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.hamong-ad-card-content {
    font-size: 13px !important;
    color: #666 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .hamong-ad-card-inner {
        padding: 10px;
        gap: 10px;
    }

    .hamong-ad-card-image {
        width: 70px;
        height: 70px;
    }

    .hamong-ad-card-text {
        flex: 1;
        min-width: 0;
        display: block;
    }

    .hamong-ad-card-title {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .hamong-ad-card-content {
        font-size: 11px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    /* 모바일에서 링크 아이콘 크기 조정 */
    a.hamong-ad-card .hamong-ad-card-image::after {
        font-size: 9px;
        padding: 2px 3px;
        bottom: 2px;
        right: 2px;
    }
}
