.hero-section {
    padding: 4rem 0;
    background-color: #fff;
    
}

.hero-container {
    max-width: 1239px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-subtitle {
    
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.hero-title {
    
    font-weight: 600;
    font-size: 48px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 16px 0;
    max-width: 949px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #4F4F4F;
    margin: 0;
    max-width: 625px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Grid Layout */
.hero-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-row:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .hero-row {
        flex-direction: row;
        justify-content: stretch;
        align-items: stretch;
        align-self: stretch;
        gap: 40px;
    }
    
    .hero-row > .hero-card {
        flex: 1;
        min-width: 0; /* Prevents flex items from overflowing */
    }
}

.hero-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 1px 8px 0px rgba(86, 204, 242, 0.12);
    border: 2px solid rgba(86, 204, 242, 0.3);
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
    transition: all 0.2s ease;
    overflow: hidden;
    width: 100%;
}

.hero-card:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0px 4px 16px 0px rgba(86, 204, 242, 0.16);
}

/* Featured Card Specific Styles */
.hero-card--featured {
    border: none;
    border-radius: 12px;
    padding-bottom: 0;
}

.hero-card--featured .hero-card-content {
    padding: 20px;
    gap: 20px;
    min-height: 400px;
    justify-content: center;
}

/* Normal Card Image Section */
.hero-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-image img {
    transform: scale(1.05);
}

/* Card Content */
.hero-card-content {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    justify-content: flex-start;
}

.hero-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-card-subtitle {
    
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0;
}

.hero-card-title {
    
    font-weight: 600;
    font-size: 48px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #0F0F0F;
    margin: 0;
    max-width: 100%;
}

.hero-card-title-small {
    
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
}

.hero-card-description {
    
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #4F4F4F;
    margin: 0;
}

.hero-card--featured .hero-card-description {
    color: #4F4F4F;
}

.hero-card-description--light {
    color: #747475;
}

.hero-card-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    
    font-weight: 600;
    font-size: 14px;
    line-height: 1.714em;
    color: #0F0F0F;
    transition: all 0.2s ease;
    width: fit-content;
    margin-top: auto;
    border-radius: 100px;
}

.hero-card-button--outline {
    border: 1.5px solid #0F0F0F;
    background: transparent;
    padding: 8px 16px;
}

.hero-card-button--outline:hover {
    background: #0F0F0F;
    color: #ffffff;
}

.hero-card-button--ghost {
    border: none;
    background: transparent;
    padding: 4px 0;
    border-radius: 8px;
}

.hero-card-button--ghost:hover {
    background: rgba(15, 15, 15, 0.05);
}

.hero-card-button--solid {
    border: none;
    background: #0F0F0F;
    color: #ffffff;
    padding: 8px 16px;
}

.hero-card-button--solid:hover {
    background: #333333;
    color: #ffffff;
}

.button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-card-button--outline:hover .button-icon {
    filter: brightness(0) invert(1);
}

.hero-card-button--solid .button-icon {
    filter: brightness(0) invert(1);
}

/* Empty State */
.hero-section-empty {
    padding: 60px 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px;
}

.hero-section-empty h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-section-empty p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design - Mobile First */
@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-row {
        gap: 1.5rem;
    }
    
    .hero-card-title {
        font-size: 24px;
    }
    
    .hero-card-subtitle {
        font-size: 18px;
    }
    
    .hero-card-title-small {
        font-size: 18px;
    }
    
    .hero-card-image {
        height: 200px;
    }
    
    .hero-card--featured .hero-card-content {
        min-height: 250px;
        padding: 16px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-container {
        gap: 30px;
    }
    
    .hero-row {
        gap: 30px;
    }
    
    .hero-card-title {
        font-size: 36px;
    }
    
    .hero-card-subtitle {
        font-size: 20px;
    }
    
    .hero-card-title-small {
        font-size: 20px;
    }
    
    .hero-card-image {
        height: 240px;
    }
    
    .hero-card--featured .hero-card-content {
        min-height: 350px;
        padding: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-row {
        gap: 40px;
    }
    
    .hero-card-title {
        font-size: 48px;
    }
    
    .hero-card-subtitle {
        font-size: 24px;
    }
    
    .hero-card-title-small {
        font-size: 24px;
    }
    
    .hero-card-image {
        height: 280px;
    }
    
    .hero-card--featured .hero-card-content {
        min-height: 400px;
        padding: 20px;
    }
} 
