/**
 * Hero & Section Block Styles
 *
 * @package STApp_WP_Theme
 */

/* ==========================================================================
   Hero Section Block Style
   ========================================================================== */

.is-style-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    width: 100%;
}

/* ==========================================================================
   Erste Sektion Block Style (nur Header-Abstand)
   ========================================================================== */

.is-style-first-section {
    padding-top: 120px;
}

/* ==========================================================================
   Gradient Text Block Style
   ========================================================================== */

.is-style-gradient-text {
    background: linear-gradient(180deg, #66EFE2 0%, #0A95FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
}

/* ==========================================================================
   Page Title ausblenden auf Startseite
   ========================================================================== */

.page .entry-header .entry-title,
.home .entry-header .entry-title {
    display: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 768px) {
    .is-style-hero-section {
        min-height: 90vh;
        padding-top: 100px;
    }
}
