/* About Page Styles */
/* .about-hero / .hero-icon-wrapper now live in style.css - that hero
   layout is also used on the home page's "Sobre Nosotros" teaser, so it
   needs to resolve there too without loading this whole stylesheet. */

/* About Cards - background/border/shadow/hover-lift now come from
   .custom-card-elegant (added in the template) so these match the same
   elevated card language used everywhere else on the site instead of a
   bespoke shadow recipe; only layout that .custom-card-elegant doesn't
   provide (padding, equal height) stays here. */
.about-card {
    padding: 32px;
    height: 100%;
}

/* !important: .custom-card-elegant sets its own !important 4-side border,
   which would otherwise silently win over this more specific border-left
   and hide the accent entirely. */
.mission-card {
    border-left: 4px solid var(--brand-blue) !important;
}

.vision-card {
    border-left: 4px solid var(--brand-red) !important;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    background: var(--brand-blue);
}

.vision-card .card-icon-wrapper {
    background: var(--brand-red);
}

/* Value Cards */
.value-card {
    padding: 24px;
    text-align: center;
    height: 100%;
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--brand-blue);
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Alternates two of the four value cards to red, same red/blue balance
   used for the icon-circle-red/-blue pairs elsewhere on the site. */
.value-icon-red .value-icon-wrapper {
    background: var(--brand-red);
}

.value-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-ink);
}

.value-text {
    color: var(--text-ink-soft);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}
