/**
 * Hero Block Styles
 */

/* Base Hero Styles */
.hero {
    position: relative;
    padding: 40px 0;
}

.hero .subtitle {
    margin-top: 0;
    padding-left: 0;
    font-size: 16px;
    line-height: 19px;
}

.hero-button {
    text-align: center;
    margin-top: 30px;
}

.hero .btn {
    color: var(--text-color);
    padding-left: 30px;
    padding-right: 30px;
}

.hero-description {
    margin-top: 30px;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.hero-background-dark {
    background-color: var(--text-color);
    color: #fff;
}

.hero-background-dark {
    background-color: var(--text-color);
}

.hero-background-dark .subtitle,
.hero-background-dark .h2,
.hero-background-dark .hero-description {
    color: #fff;
    text-align: left;
}

.hero-background-green {
    background-color: var(--accent-color);
}

.hero-background-green .subtitle,
.hero-background-green .h2,
.hero-background-green .hero-description {
    color: var(--text-color);
    text-align: left;
}

.hero-background-dark-green {
    background-color: #354200;
}

.hero-background-dark-green .subtitle,
.hero-background-dark-green .h2,
.hero-background-dark-green .hero-description {
    color: #fff;
    text-align: left;
}

/* Editor Specific Styles */
.editor-styles-wrapper .hero {
    min-height: 300px;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 960px) {
    .hero {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 1200px) {
    .hero {
        padding: 70px 0;
    }

    .hero .h2 {
        font-size: 64px;
        line-height: 1;
    }

    .hero-button {
        text-align: left;
    }
}