/* University single page styles */

.uni-hero-wrap {
    padding: 60px 0 60px;
}

.uni-hero-wrap::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.uni-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.uni-hero-content {
    flex: 1;
}

.uni-hero-actions-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 240px;
}

.uni-hero-actions-wrap .btn-primary {
    width: 100%;
    height: 48px;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 0 24px;
}

.uni-hero-actions-wrap button.btn-primary {
    border: none;
    font-family: inherit;
}

.uni-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.uni-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.uni-hero-meta-item i {
    color: var(--sky-accent);
}

/* .info-panel-title now lives once in components/cards.css — see the
   note there about the two-different-looks bug this duplicate caused. */

.info-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    gap: 16px;
}

.info-list-key {
    color: var(--text-muted);
    flex-shrink: 0;
}

.info-list-value {
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table thead th {
    background: var(--bg-section);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.fee-table tbody td {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.fee-table tfoot td {
    background: var(--sky-blue);
    padding: 12px 16px;
    font-weight: 700;
    color: var(--medical-blue);
    border-top: 2px solid var(--border);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.salary-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-green);
    font-family: var(--font-heading);
}
