.hero-block {
    padding: var(--space-80) var(--space-36) var(--space-64);

    .inner-container {
        max-width: 854px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: var(--space-48);

        .title-description {
            display: flex;
            flex-direction: column;
            gap: var(--space-40);

            .title-container {
                h1 {
                    text-align: center;
                    font-family: BOG, sans-serif;
                    font-size: 40px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 64px;

                    &.title-orange {
                        color: var(--text-accent);
                    }

                    &.title-black {
                        color: var(--text-primary);
                    }
                }
            }

            .description {
                p {
                    color: var(--text-primary);
                    text-align: center;
                    font-family: BOG, sans-serif;
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 30px;
                }
            }
        }

        .image-container {
            border-radius: var(--border-radius-20);
            overflow: hidden;

            img {
                width: 100%;
                height: auto;
                object-fit: cover;
                object-position: center;
            }
        }
    }
}

@media (max-width: 1024px) {
    .hero-block {
        padding: var(--space-48) var(--space-36) var(--space-48);

        .inner-container {
            max-width: 708px;

            .title-description .title-container h1 {
                font-size: 32px;
                line-height: 48px;
            }
        }
    }
}

@media (max-width: 768px) {
    .hero-block {
        padding: var(--space-48) var(--space-28) var(--space-48);

        .inner-container {
            .title-description .description p {
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
            }

            .image-container {
                width: fit-content;
                margin: 0 auto;

                img {
                    width: 528px;
                    height: 396px;
                }
            }
        }
    }
}

@media (max-width: 600px) {
    .hero-block {
        padding: var(--space-32) var(--space-24) var(--space-32);

        .inner-container {
            gap: var(--space-32);

            .title-description {
                gap: var(--space-24);

                .title-container h1 {
                    font-size: 22px;
                    line-height: 34px;
                }
            }

            .image-container {
                width: fit-content;
                margin: 0 auto;

                img {
                    width: 100%;
                    height: 246px;
                }
            }
        }
    }
}