/* ==========================================
   HERO CONTENT SECTION
========================================== */
.hero-content-section {
    background: var(--hero-content-bg-color, #ffffff);
    color: var(--hero-content-text-color, #333333);
    padding: var(--hero-content-spacing-top, 80px) 0 var(--hero-content-spacing-bottom, 80px);
    position: relative;
    overflow: hidden;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 100%;
}

/* ==========================================
   LEFT COLUMN - Title and Button
========================================== */
.hero-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.hero-content-title {
    font-size: 2.375rem;
    font-weight: var(--heading-font-weight, 600);
    color: var(--hero-content-title-color, var(--primary-color, #1a365d));
    margin: 0!important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 518px;
}
    .page-id-75 .hero-content-title{ max-width:571px;}

.hero-content-sub-description {
    font-size: var(--font-size-base, 16px) !important;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-content-button-wrapper {
    display: flex;
    align-items: center;
}

/* ==========================================
   BUTTON INTEGRATION
========================================== */
/* 
.hero-content-button inherits ALL global button styles automatically:
- Uses classes: .btn .btn-primary .hero-content-button
- Inherits: colors, typography, spacing, hover states, icons, etc.
- CSS loads AFTER buttons.css to ensure proper inheritance
- No additional styles needed - global button system handles everything
*/

/* ==========================================
   RIGHT COLUMN - Description
========================================== */
.hero-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-description {
    font-family: var(--body-font-family, "dm-sans", sans-serif);
    font-size: var(--body-font-size, 16px);
    font-weight: var(--body-font-weight, 400);
    color: #000000!important;
    line-height: var(--body-line-height, 1.6);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   HERO CONTENT IMAGE
========================================== */
.hero-content-image {
    width: 100%;
    max-width: 100%;
}

.hero-content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content-description p {
    margin: 0;
    color: #000000!important;
    padding: 0 0 16px 0;
}

.hero-content-description p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-content-grid {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content-title {
        font-size: var(--h2-size, 32px);
    }
    
    .hero-content-sub-description {
        font-size: calc(var(--hero-content-sub-desc-size, 18px) * 0.95);
    }
}

/* Desktop */
@media (max-width: 992px) {
    .hero-content-section {
        padding: var(--hero-content-spacing-top, 60px) 0 var(--hero-content-spacing-bottom, 60px);
    }
    
    .hero-content-grid {
        gap: 40px;
        text-align: center;
    }
    
    .hero-content-left {
        gap: 25px;
        align-items: center;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content-section {
        padding: var(--hero-content-spacing-top, 50px) 0 var(--hero-content-spacing-bottom, 50px);
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content-left {
        align-items: center;
        gap: 20px;
        order: 1;
    }
    
    .hero-content-right {
        order: 2;
    }
    
    .hero-content-title {
        font-size: var(--h3-size, 28px);
        text-align: center;
    }
    
    .hero-content-sub-description {
        font-size: calc(var(--hero-content-sub-desc-size, 18px) * 0.9);
        text-align: center;
    }
    
    .hero-content-description {
        text-align: center;
    }
    
    .hero-content-button-wrapper {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-content-section {
        padding: var(--hero-content-spacing-top, 40px) 0 var(--hero-content-spacing-bottom, 40px);
    }
    
    .hero-content-grid {
        gap: 25px;
    }
    
    .hero-content-left {
        gap: 15px;
    }
    
    .hero-content-title {
        font-size: var(--h4-size, 24px);
    }
    
    .hero-content-sub-description {
        font-size: calc(var(--hero-content-sub-desc-size, 18px) * 0.85);
    }
    
    .hero-content-description {
        font-size: calc(var(--body-font-size, 16px) * 0.9);
    }
    
    .hero-content-image img {
        height: 430px;
    }
}

/* ==========================================
   PRINT STYLES
========================================== */
@media print {
    .hero-content-section {
        background: white !important;
        color: black !important;
        padding: 20px 0;
    }
    
    .hero-content-button {
        display: none;
    }
}
