/* ===============================================
   MINERÍA EXPRESS - ESTILOS PRINCIPALES
   =============================================== */

/* Variables CSS globales */
:root {
    --primary-dark: #2C3E50;
    --primary-accent: #FF8C00;
    --secondary-dark: #1A252F;
    --light-bg: #F5F7FA;
    --dark-text: #2C3E50;
    --light-text: #ECF0F1;
    --highlight: #FFA500;
    --toolbar-bg: rgba(44, 62, 80, 0.95);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --primary-orange: #FF9800;
    --secondary-yellow: #FFC107;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --gray-800: #495057;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dark-copper: #8C4A2F;
    --light-copper: #E3964E;
}

/* ===============================================
   RESET Y ESTILOS BASE
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===============================================
   HEADER Y NAVEGACIÓN
   =============================================== */

.main-header {
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    height: 200px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0.5rem;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0.8rem;
    width: 100%;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-text);
    text-align: center;
}

/* Barra de navegación profesional */
.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0;
    background-color: var(--toolbar-bg);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 0 1rem;
    margin: 0 auto;
    flex-wrap: wrap;
}

.toolbar li {
    margin: 0 0.3rem;
}

.toolbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background-color: transparent;
    text-align: center;
}

.toolbar a i {
    margin-right: 6px;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.toolbar a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.toolbar a:hover i {
    transform: translateY(-2px);
    color: var(--primary-accent);
}

.toolbar a.active {
    background-color: var(--primary-accent);
    color: white;
}

/* Menú móvil */
.mobile-menu-btn {
    display: none;
    background: var(--primary-accent);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

/* Barra lateral para móviles */
.mobile-nav-container {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background-color: var(--secondary-dark);
    z-index: 1002;
    transition: right 0.3s ease;
    padding-top: 3.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav-container.active {
    right: 0;
}

.mobile-toolbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    padding: 1rem;
}

.mobile-toolbar li {
    width: 100%;
    margin-bottom: 0.5rem;
}

.mobile-toolbar a {
    display: flex;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
}

.mobile-toolbar a i {
    margin-right: 10px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-toolbar a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-toolbar a.active {
    background-color: var(--primary-accent);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.overlay.active {
    display: block;
}

/* ===============================================
   CONTENIDO PRINCIPAL
   =============================================== */

.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    width: 100%;
    flex: 1;
    text-align: center;
}

/* ===============================================
   FOOTER
   =============================================== */

.main-footer {
    background-color: var(--secondary-dark);
    color: var(--light-text);
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: transform 0.3s;
    text-align: center;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-accent);
}

/* ===============================================
   COMPONENTES COMUNES PARA TODAS LAS PÁGINAS
   =============================================== */

/* Contenedor principal unificado */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
}

/* Secciones de bienvenida estándar */
.welcome-section {
    background: linear-gradient(145deg, #ffffff, #f8f4f0);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.welcome-section h1 {
    color: var(--dark-copper);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.welcome-section p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tarjetas estándar */
.content-card {
    background: linear-gradient(145deg, #ffffff, #f8f4f0);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 152, 0, 0.1);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-title {
    color: var(--dark-copper);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
}

/* Grids responsivos estándar */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

/* Botones estándar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-text);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
}

/* Enlaces de parámetros/elementos de navegación */
.param-item, .nav-item {
    background: linear-gradient(145deg, #ffffff, #f8f4f0);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-text);
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.param-item:hover, .nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
}

.param-item i, .nav-item i {
    font-size: 1.8rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.param-item:hover i, .nav-item:hover i {
    color: white;
    transform: scale(1.1);
}

/* Formularios estándar */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

/* Alertas y mensajes */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-info {
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
    color: #0D47A1;
}

.alert-success {
    background: #E8F5E8;
    border-left: 4px solid #4CAF50;
    color: #1B5E20;
}

.alert-warning {
    background: #FFF3E0;
    border-left: 4px solid var(--primary-orange);
    color: #E65100;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 1200px) {
    .page-container {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-section h1 {
        font-size: 1.8rem;
    }
    
    .content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 1rem 0.5rem;
    }
    
    .welcome-section {
        padding: 1rem;
        border-radius: var(--border-radius);
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .welcome-section p {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 1rem;
        border-radius: var(--border-radius);
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .param-item, .nav-item {
        padding: 1rem;
    }
    
    .param-item i, .nav-item i {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===============================================
   RESPONSIVE PARA HEADER Y NAVEGACIÓN
   =============================================== */

@media (max-width: 992px) {
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .toolbar a {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 180px;
    }
    
    .header-content {
        padding-top: 3rem;
    }
    
    .nav-container {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .main-header {
        height: 150px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .welcome-section {
        padding: 1.5rem;
    }
    
    .mobile-menu-btn {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.7rem;
    }
    
    .mobile-nav-container {
        width: 220px;
    }
}

/* ===============================================
   RESPONSIVE ESPECÍFICO PARA NOTICIAS
   =============================================== */

@media (max-width: 900px) {
    .news-cards-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .news-section {
        padding: 0 0.5rem;
    }
}

@media (max-width: 600px) {
    .news-card {
        width: 100%;
        max-width: 300px;
        padding: 1.8rem 1rem 1.3rem 1rem;
    }
    
    .news-section h2 {
        font-size: 1.3rem;
    }
}

/* ===============================================
   ESTILOS ESPECÍFICOS PARA INDEX
   =============================================== */

.hero-section {
    background: linear-gradient(135deg, #000, #ff8819);
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-gallery-slider {
    position: relative;
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 0;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    background: #fff;
    min-height: 300px;
    position: relative;
    margin: 0;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.slide .image-caption {
    background: rgba(0,0,0,0.7);
    padding: 0.4rem;
    text-align: center;
    font-size: 0.85rem;
    color: #fff;
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

#slide1:checked ~ .slider-wrapper .slide:nth-child(1),
#slide2:checked ~ .slider-wrapper .slide:nth-child(2),
#slide3:checked ~ .slider-wrapper .slide:nth-child(3) {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

#slide1:checked ~ .slider-wrapper .slide:nth-child(2) { transform: translateX(100%); }
#slide1:checked ~ .slider-wrapper .slide:nth-child(3) { transform: translateX(-100%); }
#slide2:checked ~ .slider-wrapper .slide:nth-child(1) { transform: translateX(-100%); }
#slide2:checked ~ .slider-wrapper .slide:nth-child(3) { transform: translateX(100%); }
#slide3:checked ~ .slider-wrapper .slide:nth-child(1) { transform: translateX(100%); }
#slide3:checked ~ .slider-wrapper .slide:nth-child(2) { transform: translateX(-100%); }

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.7rem;
}

.slider-nav label {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

#slide1:checked ~ .slider-nav label:nth-child(1),
#slide2:checked ~ .slider-nav label:nth-child(2),
#slide3:checked ~ .slider-nav label:nth-child(3) {
    background: var(--primary-orange);
}

.about-section {
    background: linear-gradient(145deg, #fff, var(--light-bg));
    padding: 3rem 2rem;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 1200px;
    border: 1px solid rgba(184,115,51,0.07);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--dark-copper);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.08rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vision, .mission {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.vision:hover, .mission:hover { 
    transform: translateY(-5px); 
}

.vision h3, .mission h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.3rem;
}

.vision p, .mission p { 
    text-align: center; 
    color: #555; 
}

.download-section {
    background: linear-gradient(145deg, #fff, var(--light-bg));
    padding: 3rem 2rem;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 1200px;
    border: 1px solid rgba(184,115,51,0.07);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.download-content {
    display: contents;
}

.download-text { 
    text-align: left; 
}

.download-text h2 {
    color: var(--dark-copper);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
}

.download-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.app-features i { 
    color: var(--secondary-yellow); 
    font-size: 1.1rem; 
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.download-image { 
    text-align: center; 
}

.app-preview {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.app-preview:hover { 
    transform: scale(1.02); 
}

.features-section {
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.features-section h2 {
    color: var(--dark-copper);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-copper);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* ===============================================
   ESTILOS ESPECÍFICOS PARA NOTICIAS
   =============================================== */

.news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.news-section h2 {
    font-family: inherit;
    font-size: 1.55rem;
    color: var(--dark-copper);
    background: linear-gradient(90deg, #ff9800 60%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 2rem;
}

.news-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.2rem;
}

.news-card {
    background: linear-gradient(120deg,#fff8f0 70%,#ffe0b2 100%);
    border-radius: 1.5rem;
    box-shadow: var(--card-shadow);
    width: 320px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.3rem 1.6rem 1.3rem;
    transition: box-shadow 0.22s, transform 0.22s, background 0.22s, border-color 0.22s;
    border: 1.5px solid #ffd699;
    text-decoration: none;
    color: #232946;
    position: relative;
    overflow: hidden;
}

.news-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe0b2 60%, #fff8f0 100%);
    margin-bottom: 1.3rem;
    box-shadow: 0 2px 14px rgba(255,152,0,0.10);
    border: 2px solid #ffc107;
}

.news-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-orange);
    font-size: 1.18rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.01em;
}

.news-card p {
    color: #555;
    text-align: center;
    font-size: 1.07rem;
    margin-bottom: 0;
    font-weight: 500;
}

.news-card:hover {
    box-shadow: 0 18px 48px rgba(255,152,0,0.18);
    transform: translateY(-8px) scale(1.055);
    background: linear-gradient(120deg,#ffe0b2 60%,#fff8f0 100%);
    border-color: var(--primary-orange);
}

.news-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #ffc107 0%, transparent 70%);
    opacity: 0.13;
    pointer-events: none;
}