/* /es/about/css/style.css */

#about-content {
    scroll-behavior: smooth;
}

/* Sidebar nav */
.about-link {
    display: block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    color: #64748b; /* slate-500 */
    text-decoration: none;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    margin-bottom: 0.18rem;
    font-size: 0.8rem;
}

.about-link:hover {
    color: #0f172a;             /* slate-900 */
    background-color: #e5e7eb;  /* slate-200 */
}

.about-link.active {
    background: #ea580c;        /* orange-500 */
    color: #ffffff;
    border-color: #c2410c;      /* orange-600 */
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.25);
}

/* Scrollbar dentro del contenido */
#about-content::-webkit-scrollbar {
    width: 6px;
}

#about-content::-webkit-scrollbar-track {
    background: #f1f5f9; /* slate-100 */
}

#about-content::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* slate-300 */
    border-radius: 999px;
}

#about-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* slate-400 */
}

/* Tipografía interna */
#about-content h2 {
    letter-spacing: 0.06em;
}

#about-content p,
#about-content li {
    font-size: 0.9rem;
}

/* Ajustes responsive */
@media (max-width: 1024px) {
    #about-content {
        height: 620px;
    }
}

@media (max-width: 768px) {
    #about-content {
        height: 520px;
    }

    .about-link {
        font-size: 0.78rem;
    }
}

@media (max-width: 640px) {
    #about-content {
        height: auto;
        max-height: 75vh;
    }
}
