* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.main-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    background-color: rgba(0, 0, 0, 0.55);
 
    border-bottom: 1px solid rgba(255, 255, 255);
}


.logo-section {
    width: 490px; 
    padding: 15px 40px; 
    border-right: 1px solid rgba(255, 255, 255);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 60px;
}


.nav-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.top-row {
    display: flex;
    justify-content: flex-end;
 
    border-bottom: 1px solid rgba(255, 255, 255);
}

.top-row a, .top-row .dropdown {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
 
    padding: 13px 25px; 
    display: block;
    border-left: 1px solid rgba(255, 255, 255);
}


.main-row {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.main-row ul {
    display: flex;
    list-style: none;
    width: 100%;
    height: 100%;
}

.main-row ul li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}


.main-row ul li:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;    
    height: 40%;
    width: 1px;
    background-color: rgba(255, 255, 255);
}

.main-row ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
   
    padding: 0px 20px; 
    white-space: nowrap;
    text-align: center;
    display: block;
}


.main-row ul li.active::after {
    content: "";
    position: absolute;
  
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #F7941E;
    z-index: 10;
}


.hero-section {
    width: 100%;
    height: 110vh; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    
    background-image: 
    
        linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 90%, rgba(0,0,0,1) 100%),
  
        linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
 
        url('img/investors.jpg');
    
    background-size: cover;
    background-position: center;
}

.hero-content {
    color: #fff;
    padding: 0 50px 25px; 
    z-index: 2;
}


.hero-content h1 {
    font-size: 47px; 
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: -1px;
    line-height: 1;
}

.breadcrumb a {
    text-decoration: underline;
    color: #fff;
    font-size: 15px;
}


.share-bar {
    width: 100%;
    background-color: #000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-top: 1px solid rgba(178, 178, 178, 1.5);
    z-index: 5;
}

.share-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-left span {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}


.social-icons {
    display: flex;
    gap: 10px; 
    align-items: center;
}


.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}


.social-link img {
    width: 32px;  
    height: auto;
    display: block;
    
}


.social-link:hover {
    transform: scale(1.1);
}


.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3); 
    border-radius: 25px;
    padding: 2px 5px 2px 20px;
    width: 320px;
}

.search-container input {
    background: transparent;
    border: none;
    color: #fff;
    flex: 1;
    padding: 8px 0;
    outline: none;
    font-size: 15px;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.search-btn {
    width: 30px;
    height: 30px;
    background-color: #fff; 
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}



.content-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF; 
    color: #333;
}


.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}


.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.column-header h2 {
    color: #F6931E; 
    font-size: 30px;
    font-weight: bold;
}


.learn-more {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    
  
    display: flex;
    align-items: center;
    gap: 8px; 
}




.arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.6;

    transition: transform 0.3s ease;
}


.btn-orange .arrow-icon-white {
    width: 20px; 
    height: auto;
    margin-left: 10px; 
    filter: brightness(0) invert(1);

    transition: transform 0.3s ease;
    display: block;
}


.learn-more:hover .arrow-icon,
.btn-orange:hover .arrow-icon-white {
    transform: translateX(4px); 
}


.btn-orange {
    display: inline-flex;
    align-items: center;
    background-color: #F6931E;
    color: white;
    text-decoration: none;

    padding: 6px 25px; 
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-orange:hover {
    background-color: #d68100;
}


.glance-list {
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
}

.glance-list > li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.glance-list > li::before {
    content: "•";
    color: #F6931E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.glance-list ul {
    list-style: none;
    margin: 10px 0 10px 20px;
}

.glance-list ul li::before {
    content: "◇"; 
    color: #F6931E;
    margin-right: 10px;
}

.footnote a {
    color: #000;             
    text-decoration: underline;  
    font-size: 12px;  
    font-style: italic;
    margin-top: 20px;    
}

.footnote p {
    color: #000;             
    text-decoration: underline;  
    font-size: 12px;  
    font-style: italic;
   
}


.footnote a:hover {
    text-decoration: none; 
}


.values-graphic {
    text-align: center;
    margin-bottom: 20px;
}

.values-graphic img {
    max-width: 250px;
}

.values-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}


.explore-section {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.explore-section h3 {
    font-size: 27px;
    letter-spacing: 0px;
    margin-bottom: 40px;

}



.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; 
    padding: 0 20px;
}

.explore-card {
    height: 450px; 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end; 
    text-align: left;
    transition: transform 0.3s ease;
}


.card-overlay {
    padding: 40px 30px;
    width: 100%;
 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: white;
}

.card-overlay h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-overlay p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 300;
}


.btn-orange {
    display: inline-flex;    
    align-items: center;     
    background-color: #F6931E;
    color: white;
    text-decoration: none;
    padding: 13px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
             
}

.btn-orange:hover {
    background-color: #d68100;
}





.intro-full-width {
    width: 100%;
    background-color: #f1f1f1; 
    padding: 33px 0;
}

.intro-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: #333;
}



.explore-card img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    display: block;
}


.esg-full-width {
    width: 100%;
    background-color: #F4F3F2; 
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #F4F3F2;
}

.esg-container h5 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.esg-container p{
    font-size: 16px;

}

.esg-container a{
    color: black;
    font-weight: bold;
    font-style: italic;

    
}

.esg-logos-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}


.esg-logos-row img {
    width: auto; 
    display: block;
}


.logo-ftse {
    height: 110px; 
}

.logo-sp {
    height: 70px;
}

.logo-un {
    height: 110px; 
}

.logo-msci {
    height: 45px; 
}



.site-footer {
    background-color: #000;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 0PX;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 25px;
}


.footer-column h6 {
    color: #F6931E; 
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}


.footer-logo { height: 55px; margin-bottom: 15px; }
.vault-logo { height: 40px; margin-bottom: 15px; }

.footer-social { display: flex; gap: 15px; }

.footer-social img { 
    height: 30px; 

}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}


.footer-links { list-style: none; }
.footer-links li { margin-bottom: 20px; margin-top: 18px; }
.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.footer-links li a::before {
    content: ">";
    color: #F6931E;
    margin-right: 10px;
    font-weight: bold;
}


.inline-link { color: #fff; text-decoration: underline; }
.more-link {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
    font-weight: bold;
}


.member-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}
.member-logos img { height: 45px; }


.member-logos img[src*="wwc"] {
    height: 68px;
}


.member-logos img[src*="icmm"] {
    height: 35px; 
}


.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    background-color: #fff; 
    color: #666;
}

.bottom-container {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.bottom-links a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
}

.bottom-links a:hover { text-decoration: underline; }


.footer-group { margin-bottom: 20px; }

.footer-group p{
    font-size: 14px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.top-row {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255);
    max-height: 100px; 
    opacity: 1;
    overflow: hidden; 
    transition: max-height 0.4s ease, opacity 0.3s ease, border 0.4s ease;
}


.logo {
    height: 60px;
    transition: height 0.4s ease;
}

.logo-section {
    transition: padding 0.4s ease, height 0.4s ease;
}


.header-container {
    transition: background-color 0.4s ease, height 0.4s ease;
}


.header-shrink .top-row {
    max-height: 0;
    opacity: 0;
    border-bottom: 1px solid transparent;
}


.header-shrink .logo-section {
    padding: 5px 50px; 
}

.header-shrink .logo {
    height: 35px; 
}


.header-shrink .header-container {
    background-color: rgba(0, 0, 0, 0.75); 
}


.header-shrink .main-row ul li a {
    padding: 15px 10px; 
    transition: padding 0.4s ease;
}


/* Layout General */
.investor-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
    margin-top: -60px;
}

/* Headers de Secciones */
.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.widget-header h2 { color: #F6931E; font-size: 27px; } /* Color naranja de la imagen */
.see-all { font-size: 14px; color: #999; text-decoration: none; font-weight: bold; }

/* Estilo Calendario (Date Badges) */
.announcement-card, .presentation-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid #eee;
    margin-bottom: 10px; /* Hace que los bordes se unan como en la imagen */
    background: #fff;
}

.date-badge {
    text-align: center;
    background: #f9f9f9;
    padding: 5px;
    min-width: 55px;
    border: 1px solid #ddd;
}

.date-badge span { font-size: 10px; color: #888; display: block; }
.date-badge strong { font-size: 18px; color: #F6931E; display: block; }

/* Market Prices */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.price-item { background: #f4f4f4; padding: 15px; border: 1px solid #eee; }
.price-val { font-size: 20px; font-weight: bold; display: block; }
.pct.down { color: red; font-size: 12px; }
.pct.up { color: green; font-size: 12px; }

/* Quarterly Reports Grid */
.q-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #F4F3F2;
    border: 1px solid #F4F3F2;
}
.q-link { background: white; padding: 15px; }
.q-link span { display: block; font-size: 12px; margin-bottom: 5px; }
.q-link strong { font-size: 11px; color: #333; }


.quarterly-main-card .q-bg {
    width: 100%; /* Ocupa el 100% del contenedor de la tarjeta */
    height: 330px; /* Altura fija para el banner trimestral */
    object-fit: cover; /* Recorta la imagen para llenar el espacio sin deformarse */
    border-radius: 4px; /* Bordes suaves */
}



/* Lista de cajas de links (Annual Suite) */
.link-box-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Estilo de cada caja de link (PDF/WWW) */
.link-box, .q-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F4F3F2; /* Gris claro de fondo */
    padding: 15px 20px;
    text-decoration: none;
    transition: background 0.3s;
    cursor: pointer;
}

.link-box:hover, .q-link:hover {
    background-color: #e8e8e8;
}

.link-box span, .q-link span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.link-box strong, .q-link strong {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 15px;
    white-space: nowrap; /* Evita que el texto PDF rote */
}


/* Separación uniforme para todos los bloques de ambas columnas */
.widget-section {
    margin-bottom: 40px; /* Espacio generoso entre bloques */
}


/* --- ESTILOS COMPARTIDOS (Anuncios, Presentaciones y Reportes) --- */
/* Asegúrate de tener estas reglas para unificar el diseño */

.date-badge {
    text-align: center;
    background: #f9f9f9;
    padding: 10px 15px; /* Más aire para que se vea igual que en la imagen */
    min-width: 65px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-badge span { 
    font-size: 11px; 
    color: #444; /* Un gris más oscuro como en la imagen */
    display: block; 
    font-weight: bold;
}

.date-badge strong { 
    font-size: 26px; /* Más grande para que resalte */
    color: #F6931E; 
    display: block; 
    line-height: 1;
    margin: 4px 0; /* Separación sutil */
}

/* Texto del contenido (H3 y subtexto) */
.card-info p, .q-title-text h3 {
    font-size: 15px; /* Unificado */
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 500; /* Medium, no tan light */
    line-height: 1.3;
}

.file-link, .file-info {
    font-size: 12px;
    font-weight: bold;
    color: #666; /* Gris sutil */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* --- ESTILOS ESPECÍFICOS PARA EL OVERLAY DEL REPORTE QUARTERLY --- */

/* Contenedor relativo para que el overlay se pose sobre él */
.quarterly-main-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

/* Ajuste de la imagen de fondo */
.q-bg {
    width: 100%;
    height: 330px; /* Altura fija según tu CSS original */
    object-fit: cover;
    display: block;
}

/* EL OVERLAY: Posicionamiento Absoluto */
.q-overlay-content {
    position: absolute;
    top: 0; /* Pegado abajo */
    left: 0; /* Pegado a la izquierda */
    width: 100%;
    
    
    /* Layout para el badge y el texto (Flexbox horizontal) */
    display: flex;
    align-items: center;
    gap: 20px; /* Separación igual a la de los anuncios */
    
    /* Padding interno del overlay */
    padding: 20px 25px; 
    
    z-index: 2; /* Encima de la imagen */
}

/* Ajuste sutil para el texto dentro del overlay */
.q-title-text {
    flex: 1; /* Ocupa el espacio restante */
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.q-title-text h3 {
    color: #fff; /* Texto oscuro sobre el degradado claro */
    margin: 0;
    font-size: 25px;
    font-weight: bold;
}


.event-box {
    background-color: #f4f4f4;
    padding: 30px; /* Aumentamos el padding interno */
    display: flex;
    width: 100%;
    max-width: 450px;
    flex-direction: column;
    gap: 12px; /* Espacio automático entre la fecha, el título y el botón */
}

.event-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.event-box h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.calendar-btn {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: black; /* Color azul link */
    text-decoration: underline;
    font-size: 16px;
}


/* Limitar el ancho del cuadro de eventos */
.event-box {
    background-color: #f4f4f4;
    padding: 30px;
    display: inline-flex; /* Cambiado a inline-flex para que no use el 100% */
    flex-direction: column;
    gap: 15px;
    min-width: 300px; /* Ancho mínimo para que no se vea muy delgado */
    max-width: 450px; /* Evita que crezca demasiado */
    border: none; /* Quitamos el borde si prefieres el estilo de la imagen */
}

/* Separar el "As at..." de la sección de precios */
.timestamp {
    display: block;
    margin-top: 25px; /* Espacio extra arriba del texto */
    font-style: italic;
    color: #666;
    font-size: 15px;
}


/* Contenedor de las 3 columnas de precios */
.price-row {
    display: flex;
    gap: 15px; /* Espacio entre cuadros */
    margin-bottom: 20px; /* Separación con el texto de abajo (As at...) */
}

.price-item {
    background-color: #f4f4f4;
    padding: 20px 15px;
    flex: 1; /* Hace que todos midan lo mismo */
    display: flex;
    flex-direction: column;
    gap: 5px; /* Espacio interno entre nombre, precio y % */
}

/* Tamaño de los textos en precios */
.stock {
    font-size: 19px;
    color: #333;
    font-weight: 400;
}

.price-val {
    font-size: 26px; /* Más grande y negrita */
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.pct {
    font-size: 13px;
    font-weight: 600;
}

/* 1. COLOR DE FONDO UNIFORME PARA TODAS LAS TARJETAS */
.announcement-card, 
.presentation-card, 
.price-item, 
.event-box, 
.link-box, 
.q-link {
    background-color: #F4F3F2 !important;
}

/* 2. TARJETAS CON BORDE (Izquierda y Reportes) */
.announcement-card, 
.presentation-card, 
.link-box, 
.q-link {
    border: 1px solid #ddd; /* El bordado que solicitaste */
    
}

/* 3. TARJETAS SIN BORDE (Derecha: Calendario y Precios) */
.event-box, 
.price-item {
    border: none !important;
}

/* 4. AJUSTE DE HOVER PARA LAS QUE TIENEN LINK */
.announcement-card:hover, 
.presentation-card:hover, 
.link-box:hover, 
.q-link:hover {
    background-color: #EBEAE9 !important;
    border-color: #ccc;
}

/* 5. REFUERZO DE ESPACIOS EN LA COLUMNA DERECHA */
.price-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.event-box {
    display: inline-flex;
    padding: 30px;
    min-width: 0;
    width: 100%;
    max-width: 450px;
    gap: 15px;
}

/* Asegurar que el timestamp tenga su separación */
.timestamp {
    display: block;
    margin: 20px 0 40px 0;
    font-size: 15px;
    color: #666;
}

/* Para los anuncios y presentaciones (Columna Izquierda) */
.card-info .file-link {
    font-weight: 800; /* Negrita extra para resaltar el peso del archivo */
    color: #333;      /* Un gris más oscuro para mejor legibilidad */
    font-size: 13px;
    text-transform: uppercase;
}

/* Para las cajas de links y reportes anuales (Botones grises) */
.link-box strong, 
.q-link strong {
    font-weight: 800; /* Aplica negrita a la parte derecha de la caja (PDF, 3.9MB) */
    color: #1a1a1a;   /* Casi negro para que resalte sobre el fondo F4F3F2 */
    font-size: 11px;
    letter-spacing: 0.5px;
}

.card-info p{
    font-size: 17px;
}


/* --- ANNUAL REPORTING SUITE (Cajas de la izquierda) --- */

/* El nombre del reporte (ej: "Modern Slavery Statement") */
.link-box span {
    font-size: 15px;       /* Tamaño del título del reporte */
    font-weight: 500;      /* Grosor medio */
    color: #333;
}

/* El peso y formato (ej: "PDF, 111.4KB") */
.link-box strong {
    font-size: 12px;       /* Tamaño del dato técnico */
    font-weight: 800;      /* Negrita intensa (mismo estilo que arriba) */
    color: #1a1a1a;
    text-transform: uppercase;
}


/* --- QUARTERLY REPORTS (Cajas de la derecha bajo la imagen) --- */

/* El nombre del link (ej: "Earnings Release Report") */
.q-link span {
    font-size: 14px;       /* Un poco más pequeño porque van en dos columnas */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;    /* Espacio con el peso de abajo */
}

/* El peso y formato del reporte trimestral */
.q-link strong {
    font-size: 13px;
    font-weight: 800;      /* Negrita resaltada */
    color: #1a1a1a;
    display: block;        /* Para que siempre esté debajo del nombre */
}

/* Contenedor en cuadrícula para los dos links inferiores */
.q-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mantiene las dos columnas */
    gap: 15px; /* Espacio entre las tarjetas */
    margin-top: 15px;
}

/* La tarjeta individual del reporte trimestral */
.q-link {
    background-color: #F4F3F2 !important; /* Fondo uniforme solicitado */
    border: 1px solid #ddd; /* Bordado solicitado */
    padding: 20px 15px;
    display: flex;
    flex-direction: column; /* Alinea el texto del PDF debajo del título */
    justify-content: center;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* El título del link (ej: Q4 Earnings Release Report) */
.q-link span {
    font-size: 14px; /* Tamaño del texto del título */
    font-weight: 500;
    color: #333;
    margin-bottom: 8px; /* Espacio con el peso del archivo */
    line-height: 1.3;
}

/* El peso y formato del PDF (en negrita) */
.q-link strong {
    font-size: 13px; /* Tamaño del peso del archivo */
    font-weight: 800; /* Negrita intensa solicitada */
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



@media (max-width: 1024px) {
    /* Ajuste del Header */
    .logo-section {
        width: 300px;
        padding: 10px 20px;
    }
    
    .logo {
        height: 45px;
    }

    /* Grid de Información y Dashboard */
    .info-grid, 
    .investor-dashboard {
        grid-template-columns: 1fr; /* Pasa de 2 columnas a 1 */
        gap: 30px;
    }

    .explore-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en lugar de 3 */
        gap: 20px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columnas en lugar de 4 */
    }
}


@media (max-width: 768px) {
    /* Header: Apilar Logo y Nav */
    .header-container {
        flex-direction: column;
    }

    .logo-section {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        justify-content: center;
    }

    .nav-section {
        width: 100%;
    }

    .top-row {
        justify-content: center;
    }

    .main-row ul {
        flex-wrap: wrap; /* Los items del menú se envuelven si no caben */
    }

    .main-row ul li a {
        font-size: 13px;
        padding: 10px;
    }

    /* Hero Section */
    .hero-section {
        height: 80vh; /* Reducimos altura en móvil */
    }

    .hero-content h1 {
        font-size: 32px;
    }

    /* Share Bar y Social */
    .share-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .search-container {
        width: 100%; /* Buscador a ancho completo */
    }

    /* Secciones de Contenido */
    .explore-grid {
        grid-template-columns: 1fr; /* Todo a una columna */
    }

    .esg-logos-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Dashboard de Inversores */
    .price-row {
        flex-direction: column; /* Precios uno debajo de otro */
    }

    .q-links-grid {
        grid-template-columns: 1fr;
    }

    .event-box {
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr; /* Una sola columna en el footer */
        text-align: center;
    }

    .footer-social, .member-logos {
        justify-content: center;
    }

    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bottom-links a {
        margin: 0 10px;
    }
}

