.hero-section {
    padding: 32px 0 24px 0;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

@media (min-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .hero-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
}

.hero-content h1 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 24px;
    }
}

.hero-content p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 18px;
        margin-bottom: 32px;
        max-width: 500px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        gap: 16px;
    }
}

.hero-image {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-image {
        height: 400px;
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    }
}
