/* ==================== TAB SECTION ==================== */
.tab-section {
    padding: 0;
}

.tab-container {
    max-width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-gray-200);
}

.tab-btn {
    padding: 24px 48px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gray-400);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab-btn:hover {
    color: var(--color-navy);
}

.tab-btn.active {
    color: var(--color-navy);
    border-bottom-color: var(--color-gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ==================== CRITERIA ==================== */
.criteria-section {
    padding: 60px 48px;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-top: 0;
}

.criteria-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* When criteria-content is the only child, span full width */
.criteria-grid > .criteria-content:only-child {
    grid-column: 1 / -1;
    max-width: 800px;
}

.criteria-content h2 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.criteria-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.criteria-list li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.criteria-text strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 4px;
}

.criteria-text span {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* ==================== NOTES DETAILS ==================== */
.notes-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-card {
    background: var(--color-navy-light);
    border-radius: 4px;
    padding: 32px;
    border-left: 3px solid var(--color-gold);
}

.detail-card h4 {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.detail-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== PORTFOLIO (REUSED) ==================== */
.portfolio-section {
    padding: 120px 0;
    background: var(--color-gray-100);
}
