.tab-container {
    border-bottom: 1px solid #f1f3f4;
    margin-bottom: 32px;
}

.tab-list {
    display: flex;
    gap: 40px;
}

.tab-item {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #8b95a1;
    text-decoration: none;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.tab-item.active {
    color: #191f28;
    border-bottom-color: #191f28;
}

.tab-item:hover {
    color: #191f28;
}

@media (max-width: 768px) and (min-width: 481px) {
    .tab-list {
        gap: 24px;
    }
}

/* 작은 모바일 화면에서 더욱 최적화 */
@media (max-width: 480px) {
    .tab-list {
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .tab-item {
        font-size: 14px;
        white-space: nowrap;
    }
}
