/* Notable Locations */
.locations-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    color: var(--starwars-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--saber-blue);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-item {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(77, 184, 255, 0.4);
    border-left: 3px solid var(--saber-blue);
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.location-item:hover {
    border-color: var(--saber-blue);
    background: rgba(77, 184, 255, 0.05);
}

.location-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    color: var(--starwars-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.location-description {
    font-size: 0.95em;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    text-align: left;
}

.location-episodes {
    font-size: 0.85em;
    color: var(--text-muted);
    margin: 0;
}

.location-episodes a {
    font-size: 0.85em;
    font-weight: 400;
}
