/* 프리미엄 슬라이더 컨테이너 */
.premium-slider-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 0;
}

/* 프리미엄 광고 항목 */
.premium-item {
    display: flex;
    align-items: stretch; /* 항목 높이에 맞춤 */
    justify-content: space-between;
    height: 36px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    text-decoration: none;
    width: 100%;
    transition: all 0.15s ease;
    overflow: hidden;
}

.premium-item:hover {
    border-color: #ff7200;
    box-shadow: 0 1px 3px rgba(255,114,0,0.15);
}

/* 좌측 영역 */
.premium-left {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 0 0 auto;
}

/* 프리미엄 라벨 (꽉 차게 수정) */
.premium-label {
    width: 36px; /* 높이와 같게 설정 */
    height: 36px; /* 항목 높이와 같게 설정 */
    background: #ff7200;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 10px; /* 여백 추가 */
}

/* 메인 정보 */
.premium-main {
    display: flex;
    align-items: center;
    min-width: 0;
}

/* 회사명 */
.premium-company {
    font-size: 13px;
    color: #222;
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

/* 대출 제목 */
.premium-title {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

/* 우측 영역 */
.premium-right {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
    margin-left: 10px;
}

/* 태그 */
.premium-tag {
    font-size: 11px;
    color: #ff7200;
    background: rgba(255,114,0,0.08);
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 10px;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: -0.3px;
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 특징 항목 (max-width 늘림) */
.premium-features {
    display: flex;
    margin-right: 10px;
    flex: 1;
    min-width: 0;
}

.feature-item {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
    position: relative;
    padding-left: 7px;
    max-width: 200px; /* 늘린 max-width */
}

.feature-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: #aaa;
    border-radius: 50%;
}

/* 버튼 (아이콘 추가) */
.premium-button {
    font-size: 11px;
    color: #ff7200;
    padding: 0 8px;
    height: 22px;
    line-height: 22px;
    border-radius: 2px;
    border: 1px solid #ff7200;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
    margin-right: 8px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-button i {
    font-size: 10px;
    margin-right: 3px;
}

.premium-item:hover .premium-button {
    background: #ff7200;
    color: #fff;
}

/* 페이지네이션 */
.premium-pagination {
    text-align: center;
    margin-top: 5px;
}

.premium-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #ddd;
    opacity: 0.7;
    margin: 0 2px;
}

.premium-pagination .swiper-pagination-bullet-active {
    background: #000 !important;
    opacity: 1;
}

/* 빈 광고 */
.empty-item {
    justify-content: center;
    color: #999;
    font-size: 12px;
}

/* 반응형 스타일 */
@media (max-width: 860px) {
    .feature-item {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .premium-features {
        max-width: 180px;
    }
    
    .feature-item:nth-child(n+2) {
        display: none;
    }
    
    .premium-tag {
        max-width: 80px;
    }
}

@media (max-width: 640px) {
    .premium-features {
        display: none;
    }
    
    .premium-company {
        max-width: 100px;
    }
    
    .premium-title {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .premium-title {
        display: none;
    }
    
    .premium-company {
        max-width: 130px;
    }
}