/* RIUL Footer Styles - Replicating Landing.png mockup */

.riul-footer {
    background-color: #000000 !important;
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.25rem;
    letter-spacing: 0.025em;
    text-transform: none;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-item {
    color: #a1a1a1;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #ffffff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 188, 212, 0.3);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
}

.footer-social-icon {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #00BCD4;
}

.footer-copyright-container {
    text-align: right;
}

.footer-copyright-text {
    font-size: 0.8125rem;
    color: #a1a1a1;
    margin-bottom: 0.25rem;
}

.footer-accessibility-text {
    font-size: 0.6875rem;
    color: #707070;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-copyright-container {
        text-align: center;
    }
}

/* News Section Styles */
.news-section {
    background-color: #ffffff;
    padding: 2rem 0 6rem 0;
}

.news-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    transition: none;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.news-card:hover {
    transform: none;
    box-shadow: none;
}

.news-image-wrapper {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin-right: 3rem;
    background-color: #ffffff;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-image-wrapper:hover .news-image {
    transform: scale(1.1);
}

.news-body {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.news-category-date {
    background-color: transparent;
    color: #555555;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
    width: auto;
    margin-top: auto;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.news-card-title {
    font-size: 1.625rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.news-card-title a:hover {
    text-decoration: underline !important;
    text-decoration-color: #00BCD4 !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 4px;
}

.news-card-excerpt {
    font-size: 1rem;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    display: none;
}

.news-card-link:hover {
    gap: 1rem;
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }
    .news-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    .news-body {
        padding: 0;
        min-height: auto;
    }
}

/* Event Card Styles */
.event-card {
    background: #ffffff;
    border: 1px solid #00BCD4;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-image-container:hover .event-image {
    transform: scale(1.1);
}

.event-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    color: #00BCD4;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-title a {
    text-decoration: none;
    color: inherit;
}

.event-title a:hover {
    text-decoration: underline !important;
    text-decoration-color: #00BCD4 !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 4px;
}

.event-organizer {
    font-size: 0.875rem;
    color: #555555;
    margin-top: auto;
}

.event-link {
    display: none;
}

/* Publication Card Styles */
.publication-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    border-left: 3px solid #00BCD4;
    padding-left: 1.75rem;
    height: 100%;
}

.publication-image-container {
    width: 100%;
    height: 14rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden; /* For zoom effect */
}

.publication-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: left;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.publication-image-container:hover .publication-image {
    transform: scale(1.1);
}

.publication-category {
    color: #00BCD4;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.publication-title {
    font-size: 1.3125rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.75rem;
    flex: 1;
}

.publication-title a {
    text-decoration: none;
    color: inherit;
}

.publication-title a:hover {
    text-decoration: underline !important;
    text-decoration-color: #00BCD4 !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 4px;
}

.publication-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-publication-outline {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #00BCD4;
    color: #00BCD4;
    font-weight: 600;
    font-size: 0.875rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-publication-outline:hover {
    background-color: #f0f7f8;
}

.btn-publication-solid {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: #00BCD4;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-publication-solid:hover {
    background-color: #0097A7;
    transform: translateY(-2px);
}

/* ------------------------------------------------------------------ */
/* Home (Landing.png) - Layout helpers (moved from home.blade.php)      */
/* ------------------------------------------------------------------ */

.landing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
}

.landing-section-title.is-tight {
    margin: 0;
}

.landing-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.landing-view-all {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #00BCD4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.landing-view-all:hover { color: #0097A7; }

/* Hero */
.landing-hero {
    background: #ffffff;
    padding: 4.5rem 0 3.25rem 0;
}
.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}
.landing-hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
}
.landing-hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #606060;
    max-width: 40rem;
    margin: 0;
}
.landing-hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right center;
    display: block;
}
@media (max-width: 1024px) {
    .landing-hero-grid { grid-template-columns: 1fr; }
    .landing-hero-image { object-position: center; }
}

/* About */
.landing-about {
    background: #ffffff;
    padding: 6rem 0;
}
.landing-about-top {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}
.landing-about-left {
    display: flex;
    justify-content: center;
}
.landing-about-logo {
    width: 380px;
    max-width: 100%;
    height: auto;
    display: block;
}
.landing-about-right {
    display: flex;
    justify-content: flex-start;
}
.landing-about-text {
    max-width: 600px;
    width: 100%;
}
.landing-about-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: left;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}
.landing-about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 1.5rem 0;
    text-align: left;
}
.landing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    margin-top: 2rem;
}
.landing-stat-card {
    border-radius: 45px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}
.landing-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.landing-stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 5.75rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 0.25rem 0;
}
.landing-stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.landing-stat-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 2.5rem 0;
    flex: 1;
}

.landing-stat-card.is-u .landing-stat-number,
.landing-stat-card.is-u .landing-stat-label { color: #ef6c57; }
.landing-stat-card.is-p .landing-stat-number,
.landing-stat-card.is-p .landing-stat-label { color: #9bb23c; }
.landing-stat-card.is-f .landing-stat-number,
.landing-stat-card.is-f .landing-stat-label { color: #00BCD4; }

.landing-btn-stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-stat-card.is-u .landing-btn-stat { background: #ef6c57; box-shadow: 0 8px 20px rgba(239, 108, 87, 0.25); }
.landing-stat-card.is-p .landing-btn-stat { background: #9bb23c; box-shadow: 0 8px 20px rgba(155, 178, 60, 0.25); }
.landing-stat-card.is-f .landing-btn-stat { background: #00BCD4; box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25); }

.landing-stat-card.is-u .landing-btn-stat:hover { background: #e85a42; }
.landing-stat-card.is-p .landing-btn-stat:hover { background: #8ba234; }
.landing-stat-card.is-f .landing-btn-stat:hover { background: #0097A7; }

.landing-btn-stat .landing-btn-icon {
    font-weight: 900;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 15px; /* Boxier in landing.png */
    background: #00BCD4;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,188,212,0.22);
    transition: all 0.3s ease;
}
.landing-btn:hover { background: #0097A7; transform: translateY(-2px); }

.landing-btn .landing-btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 1024px) {
    .landing-about-top { grid-template-columns: 1fr; gap: 3rem; }
    .landing-stats { grid-template-columns: 1fr; gap: 2rem; }
}

/* Events + Publications layout */
.landing-events, .landing-publications {
    background: #ffffff;
    
    padding: 2rem 0 6rem 0;
}
.landing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .landing-grid-3 { grid-template-columns: 1fr; }
}

/* Work areas */
.landing-work {
    background: #ffffff;
    padding: 4.75rem 0 5.5rem 0;
}
.work-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.work-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}
.work-row.is-triple {
    grid-template-columns: 1fr 1.5fr 1fr;
}
@media (max-width: 1024px) {
    .work-row, .work-row.is-triple {
        grid-template-columns: 1fr;
    }
    .work-bars-group.is-hidden-mobile {
        display: none;
    }
}
.work-card {
    border-radius: 0;
    height: 260px; /* Increased to avoid overflow/height mismatch */
    display: flex;
    align-items: center;
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.work-card.is-investigacion { background-color: #00BCD4; }
.work-card.is-docencia { background-color: #A4B02A; }
.work-card.is-difusion { background-color: #F0644A; }
.work-bars-container {
    height: 260px; /* Match updated card height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}
.work-bars-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.work-bars-group {
    display: flex;
    gap: 12px;
    height: 100%;
    align-items: stretch;
}
.work-bar {
    height: 100%;
}
.work-bar.is-cyan { background-color: #00BCD4; width: 38px; }
.work-bar.is-purple { background-color: #B04D8C; width: 22px; }
.work-bar.is-olive { background-color: #A4B02A; width: 45px; }
.work-bar.is-orange { background-color: #F2BF4E; width: 18px; }
.work-bar.is-blue { background-color: #5E7CBF; width: 32px; }
.work-bar.is-red { background-color: #F0644A; width: 15px; }
.work-bar.is-dark-blue { background-color: #4A69BD; width: 28px; }
.work-card-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}
.work-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    color: #ffffff;
}
.work-icon svg {
    width: 100%;
    height: 100%;
}
.work-content {
    flex: 1;
}
.work-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}
.work-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    max-width: 440px;
}
.btn-work-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-work-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}
.btn-work-outline span:first-child {
    font-size: 0.75rem;
}
.work-wide { grid-column: 1 / -1; }
@media (max-width: 1024px) {
    .work-grid { grid-template-columns: 1fr; }
    .work-wide { grid-column: auto; }
}



/* --- Quiénes Somos Styles --- */
.qs-section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    color: #313131;
    text-align: center;
    margin-bottom: 1rem;
}

.qs-section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #313131;
    text-align: center;
    margin-bottom: 3rem;
}

/* Hero Bars */
.hero-bars {
    display: flex;
    gap: 12px;
}
.hero-bar {
    width: 20px;
    height: 120px;
}

/* Stat Cards */
.qs-stat-card {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}
.qs-stat-header {
    height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.qs-stat-number {
    font-size: 3.4375rem;
    font-weight: 700;
    line-height: 1;
}
.qs-stat-label {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
}
.qs-stat-body {
    height: 100px;
    background: #fff;
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    font-size: 1.25rem;
    color: #313131;
}

/* Philosophy Section */
.qs-content-title {
    color: #00BCD4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.qs-philosophy-card {
    background: #fff;
    border: 1px solid;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qs-philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.qs-philosophy-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.qs-philosophy-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.qs-philosophy-text {
    font-size: 1rem;
    color: #313131;
    line-height: 1.5;
}

/* Multi-column Document Card */
.qs-documents-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 2px 4px 26px rgba(0,0,0,0.13);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.qs-doc-column-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.qs-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.qs-doc-link {
    font-size: 1.25rem;
    color: #313131;
    text-decoration: none;
    transition: color 0.3s ease;
}
.qs-doc-link:hover {
    color: #00BCD4;
}

/* Organigrama Cards */
.qs-org-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00BCD4;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.qs-org-card {
    background: #fff;
    border: 1px solid #00BCD4;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.qs-org-university {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.qs-org-role {
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.qs-org-name {
    font-size: 1.1875rem;
    font-weight: 600;
    color: #313131;
    margin-bottom: 1rem;
}
.qs-org-email {
    font-size: 0.875rem;
    color: #313131;
    margin-bottom: 1rem;
}

/* Directorio Main Card */
.qs-directorio-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 2px 4px 26px rgba(0,0,0,0.13);
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.qs-directorio-logo {
    width: 300px;
    flex-shrink: 0;
}
.qs-directorio-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* CTA Color Box */
.qs-cta-box {
    background: #00BCD4;
    border-radius: 0; /* Full width or specific shape? Mockup shows flat left */
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.qs-cta-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.qs-cta-text {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 3rem;
}
.qs-cta-button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.qs-cta-button:hover {
    background: #fff;
    color: #00BCD4;
}

@media (max-width: 768px) {
    .qs-documents-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .qs-directorio-card {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Sección ÁLABE --- */
.landing-alabe {
    background: #ffffff;
    padding: 6rem 0;
}
.alabe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.alabe-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.alabe-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
    max-width: 580px;
}
.alabe-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.btn-alabe-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    border: 1px solid #00BCD4;
    border-radius: 12px;
    color: #00BCD4;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-alabe-outline:hover {
    background: #f0f7f8;
}
.btn-alabe-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2.25rem;
    background: #00BCD4;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-alabe-solid:hover {
    background: #0097A7;
    transform: translateY(-2px);
}
.alabe-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .alabe-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .alabe-description {
        margin-left: auto;
        margin-right: auto;
    }
    .alabe-actions {
        justify-content: center;
    }
}

/* --- Comisión Permanente --- */
.comision-card-body p {
    margin-bottom: 1.25rem;
    font-size: 0.90625rem;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}
.comision-card-body p strong {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 500;
    margin-bottom: 0.25rem;
    letter-spacing: 0.025em;
}
