/**
 * Single Landing Page Styles
 */

/* -------------------------------------------------------------
   Shared: Eyebrow label
------------------------------------------------------------- */
.lp-eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--service-category);
    margin-bottom: 0.75rem;
}

/* -------------------------------------------------------------
   Hero CTA
   (same look as .footer-cta-box .cta-button-wrapper .btn.cta-submit,
   packaged as its own standalone class)
------------------------------------------------------------- */
.lp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 13px 14.5px 14px 14.5px;
    height: 54px;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    transition: all 0.25s;
}

.lp-hero-cta:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f054";
    font-weight: 400;
}

.lp-hero-cta:hover,
.lp-hero-cta:focus {
    background-color: #2b11a1;
    color: #fff;
    text-decoration: none;
}

/* -------------------------------------------------------------
   Hero Section
   (no background needed here - the page body already defaults
   to var(--body), which is the light section tint seen in the design)
------------------------------------------------------------- */
.lp-hero {
    padding: 4rem 0;
}

.lp-hero__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--base-darkblue);
    margin-bottom: 1rem;
}

.lp-hero__intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--base-mediumgrey);
    margin-bottom: 2rem;
}

.lp-hero__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.lp-hero__image-col {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .lp-hero {
        padding: 6rem 0;
    }

    .lp-hero__title {
        font-size: 2.75rem;
    }
}

@media (min-width: 992px) {
    .lp-hero__image-col {
        margin-top: 0;
    }
}

/* -------------------------------------------------------------
   Content Section
   (explicit white background to stand out against the body's
   default light-gray tint, matching the alternating-band design)
------------------------------------------------------------- */
.lp-content {
    background-color: var(--base-white);
    padding: 4rem 0;
}

.lp-content__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--base-darkblue);
    margin-bottom: 1rem;
}

.lp-content__intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--base-mediumgrey);
}

/* -------------------------------------------------------------
   Content Items Grid
   2 items  -> 2 columns (50/50)
   3 items  -> 3 columns (33.33/33.33/33.33)
   4 items  -> 2 columns (wraps into 2 rows of 2)
   5 items  -> 3 columns (wraps into 3, then 2)
   6+ items -> 3 columns (falls back to the 5-item behaviour)
------------------------------------------------------------- */
.lp-content-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .lp-content-items.items-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-content-items.items-3,
    .lp-content-items.items-5,
    .lp-content-items.items-6-plus {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-content-items.items-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -------------------------------------------------------------
   Content Item Card
------------------------------------------------------------- */
.lp-content-card {
    background-color: var(--base-white);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.lp-content-card__body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lp-item-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--service-industry-light);
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.lp-content-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--base-darkblue);
    margin-bottom: 0.5rem;
}

.lp-content-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--base-mediumgrey);
    flex-grow: 1;
}

.lp-content-card__image-wrapper {
    margin: 0;
    border-radius: 0 0px 12px 12px;
    overflow: hidden;
}

.lp-content-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* -------------------------------------------------------------
   Terminvereinbarung Section
   (no background needed - same body default tint as the hero)
------------------------------------------------------------- */
.lp-termin {
    padding: 4rem 0;
}

.lp-termin__headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--base-darkblue);
    margin: 1rem 0;
}

.lp-termin__intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--base-mediumgrey);
}

.lp-termin .meetings-iframe-container {
    margin-top: 2rem;
}
