/* Hero Section - Simplified for DRY, KISS, YAGNI */

.hero-section {
    padding: 1.5rem 0 1rem 0;
    display: flex;
    align-items: center;
}

.hero-text-content {
    padding-right: 2rem;
    text-align: left;
}

.hero-text-content h1 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-text-content .lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.unraveling-text {
    margin-bottom: 0.75rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.prism-logo {
    max-width: 100%;
    height: auto;
    max-height: min(500px, 45vh);
    object-fit: contain;
}

/* Mobile - Simplified breakpoint */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-content {
        padding-right: 0;
        margin-bottom: 1rem;
    }
    .prism-logo {
        max-height: 300px;
    }
}