/**
 * about-deaj.css — estilos específicos de /pages/about.php
 */
body.about-body { background: #fafafa; }
.about-hero {
    background: var(--deaj-grad, linear-gradient(135deg, #033e75, #144f9c, #2680eb));
    color: #fff;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/img/pattern-maloca.png') center/cover;
    opacity: .07;
    pointer-events: none;
}
.about-hero h1 { font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem); }
.value-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    background: #fff;
    transition: all .25s;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(3, 62, 117, .12);
    border-color: rgba(38, 128, 235, .25);
}
.value-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.ts-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex; gap: 1.5rem;
    align-items: flex-start;
}
.ts-block:last-child { border-bottom: 0; }
.ts-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: .85rem;
    color: var(--deaj-secondary-deep, #39a44c);
    font-weight: 700;
    letter-spacing: .05em;
    min-width: 110px;
}
