/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Home Page Specific Styles - Using CSS Variables */
.home .btn-primary:not(.hero-buttons .btn-primary):not(.header-actions .btn-primary):not(.btn-mobile):not(.mobile-cta .btn-primary) {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.home .btn-primary:not(.hero-buttons .btn-primary):not(.header-actions .btn-primary):not(.btn-mobile):not(.mobile-cta .btn-primary):hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Force mobile CTA to always have white text, even on home page */
.home .mobile-cta .btn-primary,
.home .btn-mobile {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.home .mobile-cta .btn-primary:hover,
.home .btn-mobile:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
}

.home .btn-secondary:not(.hero-buttons .btn-secondary) {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.home .btn-secondary:not(.hero-buttons .btn-secondary):hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

.home .btn-cta {
    background: var(--primary-color) !important;
}

.home .btn-cta:hover {
    background: var(--secondary-color) !important;
}

.home .btn-product {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.home .btn-product:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

.home .btn-outline {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.home .btn-outline:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

.home .product-label {
    background: var(--secondary-color) !important;
}

.home .section-label {
    background: var(--secondary-color) !important;
}

.home .tab-btn.active,
.home .tab-btn:hover {
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

.home .slider-prev,
.home .slider-next {
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

.home .slider-prev:hover,
.home .slider-next:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

.home .meutudo-bar {
    background: var(--secondary-color) !important;
}

.home .testimonial-role {
    color: var(--secondary-color) !important;
}

.home .read-more {
    color: var(--secondary-color) !important;
}

.home .read-more:hover {
    color: var(--primary-color) !important;
}

.home .product-features li:before {
    color: var(--secondary-color) !important;
}

.home h1 span {
    color: var(--secondary-color) !important;
}

/* Product Cards Section */
.product-cards-section {
    padding: var(--space-16) 0;
    background-color: var(--gray-50);
}

/* Product Cards in Hero Section */
.hero-section .product-cards-section {
    padding: 0;
    background-color: transparent;
}

/* Hero Section */
.hero-section {
    background: var(--primary-color) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Hero Content */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.hero-buttons .btn-primary {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
    font-weight: 700;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
    font-weight: 700;
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.product-cards-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Cards in Hero - No header, just cards */
.hero-section .product-cards-content {
    max-width: none;
    margin: var(--space-8) 0 0 0;
}

.hero-section .product-cards-header {
    display: none; /* Hide header in hero section */
}

/* Section Header */
.product-cards-header {
    margin-bottom: var(--space-12);
}

.product-cards-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin: 0 0 var(--space-6) 0;
    line-height: var(--leading-tight);
}

.product-cards-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin: 0;
    line-height: var(--leading-relaxed);
}

/* Cards Grid */
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Grid in Hero - Dynamic layout */
.hero-section .product-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-3);
    max-width: 600px;
    margin: 0;
}

.hero-section .product-cards-grid[data-cards="1"] {
    grid-template-columns: 1fr;
    max-width: 200px;
}

.hero-section .product-cards-grid[data-cards="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
}

.hero-section .product-cards-grid[data-cards="3"] {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
}

.hero-section .product-cards-grid[data-cards="4"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
}

/* Hero Section Product Card - Modern Design */
.hero-section .product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    min-height: 80px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.hero-section .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.hero-section .product-card:hover::before {
    transform: scaleX(1);
}

.hero-section .product-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: var(--space-6) var(--space-8);
    transition: all var(--transition-base);
    position: relative;
}

.hero-section .product-card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
    margin: 0;
    line-height: var(--leading-tight);
    transition: color var(--transition-base);
}

.product-card-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0 0 var(--space-4) 0;
    line-height: var(--leading-relaxed);
    flex-grow: 1;
}

/* Product Card Icon */
.product-card-icon {
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    transition: all var(--transition-base);
}

.product-card:hover .product-card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
    margin: 0 0 var(--space-4) 0;
    line-height: var(--leading-tight);
}

.product-card-button {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    margin-top: auto;
}

.product-card-button:hover {
    background-color: var(--white);
    color: var(--white);
}

.product-card-button--primary {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.product-card-button--primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

.product-card-button--secondary {
    background-color: transparent !important;
    color: var(--gray-800) !important;
    border-color: var(--primary-color) !important;
}

.product-card-button--secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.home .product-card-button--primary {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.home .product-card-button--primary:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
}

.home .product-card-button--secondary {
    background-color: transparent !important;
    color: var(--gray-800) !important;
    border-color: var(--primary-color) !important;
}

.home .product-card-button--secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.home .product-cards-grid .product-card-button--primary {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.home .product-cards-grid .product-card-button--primary:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
}

.home .product-cards-grid .product-card-button--secondary {
    background-color: transparent !important;
    color: var(--gray-800) !important;
    border-color: var(--primary-color) !important;
}

.home .product-cards-grid .product-card-button--secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.home .news-grid .read-more,
.home .news-grid .news-item .read-more,
.home .news-grid a.read-more {
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    border: none !important;
    box-shadow: none !important;
}

.home .news-grid .read-more:hover,
.home .news-grid .news-item .read-more:hover,
.home .news-grid a.read-more:hover {
    color: var(--white) !important;
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.home .news-grid .news-item a {
    color: var(--gray-800) !important;
    text-decoration: none;
}

.home .news-grid .news-item a:hover {
    color: var(--secondary-color) !important;
}

/* Product Card Hover Effects */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--white);
}

.product-card--primary {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-base);
}

.product-card--primary:hover {
    border-color: var(--white);
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 40, 84, 0.02) 100%);
}

.product-card--secondary {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-base);
}

.product-card--secondary:hover {
    border-color: var(--white);
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 40, 84, 0.02) 100%);
}

.hero-section .product-card--primary {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 173, 17, 0.15);
}

.hero-section .product-card--primary .product-card-title {
    color: var(--white);
}

.hero-section .product-card--primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 173, 17, 0.25);
}

.hero-section .product-card--secondary {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-section .product-card--secondary .product-card-title {
    color: var(--gray-900);
}

.hero-section .product-card--secondary:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-section .product-card--secondary:hover .product-card-title {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-cards-section {
        padding: var(--space-12) 0;
    }
    
    .product-cards-title {
        font-size: var(--text-3xl);
    }
    
    .product-cards-description {
        font-size: var(--text-base);
    }
    
    .product-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        max-width: 400px;
    }
    
    .product-card {
        min-height: 280px;
    }
    
    .product-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-card-link {
        padding: var(--space-6);
    }
    
    .product-card-title {
        font-size: var(--text-lg);
    }
    
    /* Hero Responsive */
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-cards-title {
        font-size: var(--text-2xl);
    }
    
    .product-card {
        min-height: 80px;
    }
    
    .product-card-link {
        padding: var(--space-4);
    }
    
    .product-card-title {
        font-size: var(--text-base);
    }
    
    /* Hero Mobile Small */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* Hero Buttons Container */
.hero-buttons-container {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--text-base);
    border: 2px solid transparent;
    min-width: 160px;
    text-align: center;
}

.hero-button--primary {
    background-color: var(--primary-color, #10b981);
    color: white;
    border-color: var(--primary-color, #10b981);
}

.hero-button--primary:hover {
    background-color: var(--primary-color-dark, #059669);
    border-color: var(--primary-color-dark, #059669);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-button--secondary {
    background-color: transparent;
    color: var(--primary-color, #10b981);
    border-color: var(--primary-color, #10b981);
}

.hero-button--secondary:hover {
    background-color: var(--primary-color, #10b981);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-card-simple:hover,
.article-card:hover {
    transform: translateY(-4px);
    transition: transform var(--transition-base);
}

@media (max-width: 768px) {
    .hero-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .hero-button {
        width: 100%;
        max-width: 200px;
    }
}

/* Section Below Hero */
.section-below-hero {
    padding: var(--space-16) 0;
    background-color: var(--white);
}

.section-below-hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-below-hero-header {
    margin-bottom: var(--space-12);
}

.section-below-hero-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin: 0 0 var(--space-6) 0;
    line-height: var(--leading-tight);
}

.section-below-hero-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin: 0;
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

.section-below-hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.section-below-hero-cards-grid[data-cards="1"] {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.section-below-hero-cards-grid[data-cards="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.section-below-hero-cards-grid[data-cards="3"] {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.section-below-hero-cards-grid[data-cards="4"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.section-below-hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 240px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-base);
}

.section-below-hero-card-icon {
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-below-hero-card-icon svg {
    width: 56px;
    height: 56px;
}

.section-below-hero-card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
    margin: 0 0 var(--space-3) 0;
    line-height: var(--leading-tight);
}

.section-below-hero-card-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0 0 var(--space-4) 0;
    line-height: var(--leading-relaxed);
    flex-grow: 1;
}

.section-below-hero-card-button {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    margin-top: auto;
}

.section-below-hero-card-button:hover {
    background-color: var(--white);
    color: var(--white);
}

.section-below-hero-card--primary {
    border-color: var(--white);
    box-shadow: var(--shadow-base);
}

.section-below-hero-card--primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--white);
}

.section-below-hero-card--secondary {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-base);
}

.section-below-hero-card--secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .section-below-hero {
        padding: var(--space-12) 0;
    }
    
    .section-below-hero-title {
        font-size: var(--text-3xl);
    }
    
    .section-below-hero-description {
        font-size: var(--text-base);
    }
    
    .section-below-hero-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .section-below-hero-cards-grid[data-cards="2"],
    .section-below-hero-cards-grid[data-cards="3"],
    .section-below-hero-cards-grid[data-cards="4"] {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .section-below-hero-card {
        min-height: 280px;
        padding: var(--space-6);
    }
    
    .section-below-hero-card-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .section-below-hero-card-title {
        font-size: var(--text-lg);
    }
    
    .section-below-hero-card-description {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .section-below-hero-title {
        font-size: var(--text-2xl);
    }
    
    .section-below-hero-card {
        min-height: 260px;
        padding: var(--space-4);
    }
    
    .section-below-hero-card-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .section-below-hero-card-title {
        font-size: var(--text-base);
    }
    
    .section-below-hero-card-description {
        font-size: var(--text-xs);
    }
    
    .section-below-hero-card-button {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
}

/* ========================================
   FINANCIAL NEWS SECTION STYLES
   ======================================== */

/* Financial News Section */
.financial-news-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.financial-news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

/* News Grid Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* News Item Styles */
.news-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* News Thumbnail */
.news-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail img {
    transform: scale(1.05);
}

/* News Content */
.news-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.entry-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.entry-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: var(--secondary-color);
}

/* Entry Meta */
.entry-meta {
    margin-bottom: 16px;
}

.posted-on {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Entry Summary */
.entry-summary {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Read More Button - Override existing styles */
.news-grid .read-more {
    display: inline-block;
    background-color: var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
    border: none;
    box-shadow: none;
}

.news-grid .read-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    color: var(--white);
}

/* Grid Layout Variations */
.news-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.news-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.news-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive Design for News Section */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .news-grid.grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .financial-news-section {
        padding: 60px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-thumbnail {
        height: 180px;
    }
    
    .news-grid.grid-2,
    .news-grid.grid-3,
    .news-grid.grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .financial-news-section .container {
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .news-content {
        padding: 16px;
    }
    
    .entry-title {
        font-size: 1.1rem;
    }
}

/* ========================================
   JOB LISTINGS & COURSES CARDS STYLES
   ======================================== */

/* Job Listings Section */
.job-listings-section {
    padding: 80px 0;
    background-color: var(--white);
}

.job-listings-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.job-listings-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.job-listings-section .section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Job Grid - Same as news-grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Job Item Card - Same as news-item */
.job-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Job Thumbnail - Same as news-thumbnail */
.job-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.job-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.job-item:hover .job-thumbnail img {
    transform: scale(1.05);
}

/* Job Content - Same as news-content */
.job-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-content .entry-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.job-content .entry-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-content .entry-title a:hover {
    color: var(--secondary-color);
}

/* Job Entry Meta - Same as news entry-meta */
.job-content .entry-meta {
    margin-bottom: 16px;
}

.job-content .posted-on {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Job Entry Summary - Same as news entry-summary */
.job-content .entry-summary {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Job Read More Button - Same as news read-more */
.job-content .read-more {
    display: inline-block;
    background-color: var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
    border: none;
    box-shadow: none;
}

.job-content .read-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    color: var(--white);
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.courses-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.courses-section .section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Courses Grid - Same as news-grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Course Item Card - Same as news-item */
.course-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Course Thumbnail - Same as news-thumbnail */
.course-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-item:hover .course-thumbnail img {
    transform: scale(1.05);
}

/* Course Content - Same as news-content */
.course-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content .entry-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.course-content .entry-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-content .entry-title a:hover {
    color: var(--secondary-color);
}

/* Course Entry Meta - Same as news entry-meta */
.course-content .entry-meta {
    margin-bottom: 16px;
}

.course-content .course-duration {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Course Entry Summary - Same as news entry-summary */
.course-content .entry-summary {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Course Read More Button - Same as news read-more */
.course-content .read-more {
    display: inline-block;
    background-color: var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
    border: none;
    box-shadow: none;
}

.course-content .read-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    color: var(--white);
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

.section-footer .btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.section-footer .btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Career News Section - Uses existing news-grid styles */
.career-news-section {
    padding: 80px 0;
    background-color: var(--white);
}

.career-news-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-news-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.career-news-section .section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for All Card Sections */
@media (max-width: 1024px) {
    .job-grid,
    .courses-grid,
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .job-listings-section .section-header h2,
    .courses-section .section-header h2,
    .career-news-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .job-listings-section,
    .courses-section,
    .career-news-section {
        padding: 60px 0;
    }
    
    .job-grid,
    .courses-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-listings-section .section-header h2,
    .courses-section .section-header h2,
    .career-news-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .job-content,
    .course-content,
    .news-content {
        padding: 20px;
    }
    
    .job-thumbnail,
    .course-thumbnail,
    .news-thumbnail {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .job-listings-section,
    .courses-section,
    .career-news-section {
        padding: 40px 0;
    }
    
    .job-listings-section .section-header h2,
    .courses-section .section-header h2,
    .career-news-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .job-content,
    .course-content,
    .news-content {
        padding: 16px;
    }
    
    .job-content .entry-title,
    .course-content .entry-title,
    .news-content .entry-title {
        font-size: 1.1rem;
    }
}


