:root {
    --ph-green: #2f5637;
    --ph-green-dark: #23422b;
    --ph-green-soft: #eef4ee;
    --ph-orange: #c96d4b;
    --ph-text: #26312a;
    --ph-muted: #667066;
    --ph-border: #e7e2dc;
    --ph-bg: #ffffff;
    --ph-cream: #fbfaf7;
    --ph-shadow: 0 12px 34px rgba(34, 44, 35, 0.10);
    --ph-radius: 12px;
    --ph-serif: Georgia, "Times New Roman", serif;
    --ph-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ph-text); background: var(--ph-bg); font-family: var(--ph-sans); line-height: 1.5; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.ph-container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.ph-site-header { background: #fff; border-bottom: 1px solid rgba(0,0,0,.08); position: sticky; top: 0; z-index: 50; }
.ph-header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.ph-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.ph-logo { width: 235px; max-height: 72px; object-fit: contain; }
.ph-menu, .ph-footer-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 28px; }
.ph-menu a { display: inline-flex; padding: 8px 0 6px; text-decoration: none; font-size: 15px; color: #1f281f; border-bottom: 2px solid transparent; }
.ph-menu a:hover, .ph-menu .current-menu-item > a { color: var(--ph-green); border-color: var(--ph-green); }

.ph-page-content > *:first-child { margin-top: 0; }
.ph-page-content > *:last-child { margin-bottom: 0; }
.ph-standard-page-header { padding: 54px 0 18px; }
.ph-standard-page-header h1 { font-family: var(--ph-serif); color: var(--ph-green); font-size: clamp(34px, 5vw, 54px); line-height: 1.08; margin: 0; }

.ph-hero { position: relative; min-height: 470px; background: var(--ph-cream); overflow: hidden; }
.ph-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 36%, rgba(255,255,255,.08) 66%, rgba(255,255,255,.00) 100%); z-index: 1; }
.ph-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-hero-inner { position: relative; z-index: 2; min-height: 470px; display: flex; align-items: center; }
.ph-hero-content { max-width: 505px; padding: 56px 0 88px; }
.ph-hero h1 { font-family: var(--ph-serif); color: var(--ph-green); font-size: clamp(40px, 6vw, 66px); line-height: 1.04; font-weight: 500; margin: 0 0 22px; }
.ph-title-rule { width: 78px; height: 4px; background: var(--ph-orange); border-radius: 99px; margin: 0 0 20px; }
.ph-hero p { font-size: 19px; line-height: 1.45; margin: 0 0 26px; color: #1f2a22; }
.ph-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.ph-btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 28px; border-radius: 5px; font-weight: 700; text-decoration: none; border: 1px solid var(--ph-green); background: var(--ph-green); color: #fff; transition: .18s ease; }
.ph-btn:hover { background: var(--ph-green-dark); transform: translateY(-1px); }
.ph-btn--outline { background: rgba(255,255,255,.78); color: var(--ph-orange); border-color: var(--ph-orange); }
.ph-btn--outline:hover { background: var(--ph-orange); color: #fff; }

.ph-feature-strip { position: relative; z-index: 4; margin-top: -36px; margin-bottom: 32px; }
.ph-feature-grid { background: #fff; border-radius: 10px; box-shadow: var(--ph-shadow); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.ph-feature { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 22px 28px; min-height: 80px; border-right: 1px solid var(--ph-border); }
.ph-feature:last-child { border-right: 0; }
.ph-feature img { width: 42px; height: 42px; object-fit: contain; }
.ph-feature strong { display: block; font-size: 15px; color: #202820; }
.ph-feature span { display: block; font-size: 12px; color: var(--ph-muted); margin-top: 2px; }

.ph-section { padding: 22px 0; }
.ph-section-title { font-family: var(--ph-serif); color: var(--ph-green); text-align: center; font-weight: 500; font-size: clamp(28px, 4vw, 36px); line-height: 1.15; margin: 0 0 24px; }
.ph-section-title::after { content: ""; display: block; width: 58px; height: 2px; background: var(--ph-orange); margin: 9px auto 0; border-radius: 99px; }

.ph-rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ph-room-card { background: #fff; border: 1px solid var(--ph-border); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 22px rgba(30, 40, 31, .07); }
.ph-room-card img.ph-room-image { width: 100%; aspect-ratio: 4 / 2.25; object-fit: cover; }
.ph-room-body { padding: 16px 18px 18px; }
.ph-room-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.ph-room-head h3 { font-family: var(--ph-serif); font-size: 25px; font-weight: 500; color: var(--ph-green); margin: 0; }
.ph-room-size { font-family: var(--ph-serif); color: var(--ph-orange); font-size: 22px; font-weight: 700; white-space: nowrap; }
.ph-room-facts { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 7px; color: #303a32; font-size: 14px; }
.ph-room-facts li { display: flex; align-items: center; gap: 8px; }
.ph-room-facts img { width: 18px; height: 18px; object-fit: contain; flex: 0 0 18px; }
.ph-small-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 20px; background: var(--ph-green); color: #fff; border-radius: 4px; text-decoration: none; font-size: 13px; font-weight: 700; }
.ph-small-btn:hover { background: var(--ph-green-dark); }

.ph-gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ph-gallery-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 7px; box-shadow: 0 8px 20px rgba(30, 40, 31, .06); }
.ph-center { text-align: center; margin-top: 18px; }
.ph-mini-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 26px; border: 1px solid var(--ph-orange); color: var(--ph-orange); border-radius: 4px; text-decoration: none; font-size: 14px; background: #fff; }
.ph-mini-btn:hover { background: var(--ph-orange); color: #fff; }

.ph-region-card { display: grid; grid-template-columns: 1.25fr .75fr; background: var(--ph-green-soft); border-radius: 10px; overflow: hidden; align-items: stretch; }
.ph-region-text { padding: 28px 32px; }
.ph-region-text h2 { font-family: var(--ph-serif); color: var(--ph-green); font-weight: 500; font-size: 29px; margin: 0 0 22px; }
.ph-region-items { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ph-region-item { display: grid; grid-template-columns: 54px 1fr; gap: 16px; }
.ph-region-item img { width: 44px; height: 44px; object-fit: contain; margin-top: 2px; }
.ph-region-item strong { display: block; color: #26312a; font-size: 15px; margin-bottom: 4px; }
.ph-region-item p { margin: 0; color: #4f5b52; font-size: 14px; line-height: 1.42; }
.ph-region-image img { width: 100%; height: 100%; object-fit: cover; min-height: 190px; }

.ph-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.ph-testimonial { position: relative; padding-left: 26px; }
.ph-quote { position: absolute; left: 0; top: -8px; color: var(--ph-orange); font-size: 42px; font-family: var(--ph-serif); line-height: 1; }
.ph-testimonial p { margin: 0 0 8px; font-size: 14px; color: #344035; }
.ph-testimonial cite { display: block; font-style: normal; font-size: 13px; color: var(--ph-muted); margin-bottom: 6px; }
.ph-stars { color: #f0bd24; letter-spacing: 2px; font-size: 15px; }

.ph-contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: stretch; }
.ph-contact-card, .ph-form-card { background: var(--ph-green-soft); border-radius: 10px; padding: 26px 32px; }
.ph-contact-card { display: grid; grid-template-columns: 1fr 190px; gap: 24px; align-items: center; }
.ph-contact-card h2, .ph-form-card h2 { font-family: var(--ph-serif); color: var(--ph-green); font-weight: 500; font-size: 29px; margin: 0 0 18px; }
.ph-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ph-contact-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 15px; color: #26312a; }
.ph-contact-list img { width: 22px; height: 22px; object-fit: contain; margin-top: 1px; }
.ph-house-illustration { width: 180px; opacity: .72; justify-self: end; }
.ph-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ph-form-grid .ph-full { grid-column: 1 / -1; }
.ph-form-card input, .ph-form-card textarea, .ph-form-card select, .wpcf7 input, .wpcf7 textarea, .wpcf7 select { width: 100%; border: 1px solid #c9cec8; border-radius: 2px; background: #fff; min-height: 38px; padding: 9px 12px; font: inherit; color: #243027; }
.ph-form-card textarea, .wpcf7 textarea { min-height: 84px; resize: vertical; }
.ph-form-submit { text-align: right; margin-top: 12px; }
.ph-form-card button, .wpcf7-submit { border: 0; background: var(--ph-orange); color: #fff; min-height: 40px; padding: 0 34px; border-radius: 4px; font-weight: 700; cursor: pointer; }
.ph-form-card button:hover, .wpcf7-submit:hover { filter: brightness(.94); }
.ph-form-note { margin: 10px 0 0; color: var(--ph-muted); font-size: 12px; }

.ph-site-footer { margin-top: 18px; background: var(--ph-green); color: #fff; }
.ph-footer-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.ph-footer-brand strong { display: block; font-family: var(--ph-serif); font-size: 18px; font-weight: 500; }
.ph-footer-brand span { display: block; font-size: 12px; opacity: .92; margin-top: 2px; }
.ph-footer-menu { gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.ph-footer-menu a { color: #fff; text-decoration: none; font-size: 13px; opacity: .9; }
.ph-footer-menu a:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 980px) {
    .ph-header-inner { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 0; }
    .ph-menu { flex-wrap: wrap; gap: 18px; }
    .ph-menu a { padding: 8px 0; }
    .ph-rooms { grid-template-columns: repeat(2, 1fr); }
    .ph-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ph-feature:nth-child(2) { border-right: 0; }
    .ph-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .ph-region-card, .ph-contact-grid { grid-template-columns: 1fr; }
    .ph-testimonials { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 680px) {
    .ph-container { width: min(100% - 28px, 1120px); }
    .ph-logo { width: 210px; }
    .ph-hero { min-height: auto; }
    .ph-hero::before { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78)); }
    .ph-hero-inner { min-height: 430px; }
    .ph-hero-content { padding: 44px 0 78px; }
    .ph-actions { align-items: stretch; }
    .ph-actions .ph-btn { width: 100%; }
    .ph-feature-strip { margin-top: -24px; }
    .ph-feature-grid, .ph-rooms, .ph-gallery-grid, .ph-region-items, .ph-contact-card { grid-template-columns: 1fr; }
    .ph-feature { border-right: 0; border-bottom: 1px solid var(--ph-border); }
    .ph-feature:last-child { border-bottom: 0; }
    .ph-gallery-grid { gap: 12px; }
    .ph-contact-card { text-align: left; }
    .ph-house-illustration { justify-self: start; width: 150px; }
    .ph-form-grid { grid-template-columns: 1fr; }
    .ph-footer-inner { flex-direction: column; align-items: flex-start; padding: 20px 0; }
    .ph-footer-menu { justify-content: flex-start; gap: 14px 20px; }
}


.ph-hero-content {
    max-width: 640px;
}

.ph-hero h1 {
    font-size: clamp(3rem, 5.2vw, 5.4rem);
    line-height: 1.03;
    max-width: 640px;
}
.ph-hero-content,
.ph-hero h1 {
    max-width: 1200px;
}


@media (max-width: 768px) {
    .ph-hero h1 {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
        line-height: 1.05;
    }
}


.ph-clean-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 86, 55, 0.28);
    transition: color 0.18s ease, border-color 0.18s ease, background-size 0.18s ease;
}

.ph-clean-link:hover,
.ph-clean-link:focus {
    color: var(--ph-orange);
    border-bottom-color: var(--ph-orange);
}

.ph-footer-credit {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
}

.ph-footer-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: color 0.18s ease, border-color 0.18s ease;
}

.ph-footer-credit a:hover,
.ph-footer-credit a:focus {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

@media (max-width: 680px) {
    .ph-footer-credit {
        text-align: left;
    }
}

/* Footer V3 – Brand links, Menü rechts, Viennaweb-Credit mittig unten */
.ph-site-footer {
    margin-top: 18px;
    background: var(--ph-green);
    color: #fff;
}

.ph-footer-inner {
    min-height: auto;
    display: block;
    padding: 22px 0 14px;
}

.ph-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.ph-footer-brand {
    flex: 0 0 250px;
}

.ph-footer-brand strong {
    display: block;
    font-family: var(--ph-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.22;
}

.ph-footer-brand span {
    display: block;
    max-width: 210px;
    font-size: 12px;
    line-height: 1.35;
    opacity: .92;
    margin-top: 7px;
}

.ph-footer-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.ph-footer-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ph-footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: .9;
    transition: opacity .18s ease, color .18s ease;
}

.ph-footer-menu a:hover,
.ph-footer-menu a:focus {
    opacity: 1;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ph-footer-bottom {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.ph-footer-credit {
    width: auto;
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.ph-footer-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: color 0.18s ease, border-color 0.18s ease;
}

.ph-footer-credit a:hover,
.ph-footer-credit a:focus {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

@media (max-width: 760px) {
    .ph-footer-inner {
        padding: 22px 0 16px;
    }

    .ph-footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .ph-footer-brand {
        flex: 0 0 auto;
    }

    .ph-footer-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .ph-footer-menu {
        justify-content: flex-start;
        gap: 12px 20px;
    }

    .ph-footer-bottom,
    .ph-footer-credit {
        text-align: left;
    }
}


/* ------------------------------------------------------------
   Mobile Hauptmenü / Hamburger
   ------------------------------------------------------------ */
.ph-menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ph-menu-button {
    display: none;
}

@media (max-width: 820px) {
    .ph-header-inner {
        position: relative;
        min-height: 76px;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        padding: 12px 0 !important;
    }

    .ph-logo {
        width: 210px;
        max-height: 62px;
    }

    .ph-menu-button {
        display: inline-flex;
        width: 46px;
        height: 42px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        border: 1px solid rgba(47, 86, 55, 0.28);
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
        flex: 0 0 auto;
    }

    .ph-menu-button span {
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 999px;
        background: var(--ph-green);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .ph-main-nav {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 18px 32px rgba(30, 40, 31, 0.12);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.24s ease, opacity 0.2s ease;
        z-index: 60;
    }

    .ph-menu-toggle:checked ~ .ph-main-nav {
        max-height: 520px;
        opacity: 1;
    }

    .ph-menu-toggle:checked + .ph-menu-button span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ph-menu-toggle:checked + .ph-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .ph-menu-toggle:checked + .ph-menu-button span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ph-main-nav .ph-menu {
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
        padding: 10px 0 14px;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 0 !important;
        align-items: stretch;
    }

    .ph-main-nav .ph-menu a {
        display: flex;
        width: 100%;
        padding: 13px 2px !important;
        border-bottom: 1px solid rgba(47, 86, 55, 0.14);
        font-size: 16px;
        color: #1f281f;
    }

    .ph-main-nav .ph-menu li:last-child a {
        border-bottom: 0;
    }

    .ph-main-nav .ph-menu a:hover,
    .ph-main-nav .ph-menu .current-menu-item > a {
        color: var(--ph-green);
        border-bottom-color: rgba(47, 86, 55, 0.34);
    }
}

@media (max-width: 420px) {
    .ph-logo {
        width: 185px;
    }
}


/* CF7 Anfrageformular – sehr kompakt */
.ph-form-card {
    padding: 24px 30px 22px;
}

.ph-form-card h2 {
    margin: 0 0 14px;
}

.ph-form-card .wpcf7 form,
.ph-cf7-form {
    display: grid;
    gap: 0;
    margin: 0;
}

.ph-cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 7px;
}

.ph-cf7-row-full {
    grid-template-columns: 1fr;
    margin-bottom: 7px;
}

.ph-cf7-form p,
.ph-form-card .wpcf7 p {
    margin: 0 !important;
    padding: 0 !important;
}

.ph-cf7-form br,
.ph-form-card .wpcf7 br {
    display: none;
}

.ph-cf7-form label {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.25;
}

.ph-cf7-form .wpcf7-form-control-wrap {
    display: block;
    margin: 2px 0 0;
}

.ph-cf7-form input,
.ph-cf7-form textarea,
.ph-cf7-form select {
    min-height: 32px;
    height: 32px;
    padding: 6px 9px;
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
}

.ph-cf7-form textarea {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 64px;
    resize: vertical;
}

.ph-cf7-acceptance {
    margin: 4px 0 8px;
    font-size: 12px;
    line-height: 1.3;
}

.ph-cf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.ph-cf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ph-cf7-acceptance input[type="checkbox"] {
    width: 15px;
    height: 15px;
    min-height: 15px;
    margin: 1px 0 0;
    padding: 0;
    flex: 0 0 15px;
}

.ph-cf7-submit {
    margin-top: 4px;
    text-align: right;
}

.ph-cf7-submit input[type="submit"],
.ph-form-card .wpcf7-submit {
    min-height: 34px;
    height: 34px;
    min-width: 170px;
    padding: 0 24px;
    background: var(--ph-orange);
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}






























/* ------------------------------------------------------------
   Unterkünfte Seite – Zusatzklassen
   ------------------------------------------------------------ */

.ph-subpage-intro {
    padding: 34px 0 26px;
}

.ph-subpage-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 34px;
    align-items: center;
    background: var(--ph-green-soft);
    border-radius: 12px;
    overflow: hidden;
}

.ph-subpage-intro-text {
    padding: 34px 38px;
}

.ph-kicker {
    margin: 0 0 8px;
    color: var(--ph-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ph-subpage-intro-text h2,
.ph-info-card h2,
.ph-cta-band h2 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 14px;
}

.ph-subpage-intro-text h2 {
    font-size: clamp(32px, 4.2vw, 52px);
}

.ph-subpage-intro-text p {
    margin: 0 0 22px;
    color: #344035;
    font-size: 17px;
    line-height: 1.55;
}

.ph-subpage-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.ph-section--tight {
    padding-top: 18px;
}

.ph-room-detail-list {
    display: grid;
    gap: 24px;
}

.ph-room-detail-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .07);
}

.ph-room-detail-card:nth-child(even) .ph-room-detail-image {
    order: 2;
}

.ph-room-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.ph-room-detail-content {
    padding: 28px 32px;
}

.ph-room-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 12px;
}

.ph-room-detail-head h3 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

.ph-room-detail-content p {
    margin: 0 0 16px;
    color: #344035;
    line-height: 1.55;
}

.ph-room-facts--detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.ph-info-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 30px 34px;
}

.ph-info-card h2 {
    font-size: clamp(28px, 3.5vw, 38px);
}

.ph-info-card p {
    margin: 0;
    color: #4f5b52;
    line-height: 1.55;
}

.ph-info-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ph-info-icons div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 6px 16px rgba(30, 40, 31, .05);
}

.ph-info-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ph-info-icons span {
    font-size: 14px;
    font-weight: 700;
    color: #26312a;
}

.ph-cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    background: var(--ph-green);
    color: #fff;
    border-radius: 10px;
    padding: 28px 34px;
}

.ph-cta-band h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 34px);
}

.ph-cta-band p {
    margin: 0;
    opacity: .92;
}

.ph-cta-band .ph-btn {
    background: #fff;
    color: var(--ph-green);
    border-color: #fff;
    flex: 0 0 auto;
}

.ph-cta-band .ph-btn:hover {
    background: var(--ph-orange);
    color: #fff;
    border-color: var(--ph-orange);
}

@media (max-width: 860px) {
    .ph-subpage-intro-grid,
    .ph-room-detail-card,
    .ph-info-card {
        grid-template-columns: 1fr;
    }

    .ph-room-detail-card:nth-child(even) .ph-room-detail-image {
        order: 0;
    }

    .ph-room-facts--detail,
    .ph-info-icons {
        grid-template-columns: 1fr;
    }

    .ph-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .ph-subpage-intro {
        padding-top: 22px;
    }

    .ph-subpage-intro-text,
    .ph-room-detail-content,
    .ph-info-card,
    .ph-cta-band {
        padding: 24px 22px;
    }

    .ph-subpage-intro-image img,
    .ph-room-detail-image img {
        min-height: 220px;
    }
}




/* ------------------------------------------------------------
   Kontakt Seite – Zusatzklassen
   ------------------------------------------------------------ */

.ph-contact-page-grid {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 32px;
    align-items: start;
}

.ph-contact-page-card {
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 26px;
    align-items: center;
}

.ph-contact-page-card h2,
.ph-form-card--contact h2 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.12;
    margin: 0 0 18px;
}

.ph-contact-list--large {
    gap: 14px;
}

.ph-contact-list--large li {
    grid-template-columns: 26px 1fr;
    gap: 13px;
    font-size: 15px;
    line-height: 1.42;
}

.ph-contact-list--large strong {
    color: var(--ph-green);
    font-size: 14px;
}

.ph-house-illustration--contact {
    width: 165px;
    max-width: 100%;
    opacity: .72;
    justify-self: end;
}

.ph-form-card--contact {
    padding: 28px 32px 24px;
}

.ph-form-intro {
    margin: -4px 0 16px;
    color: #4f5b52;
    font-size: 14px;
    line-height: 1.48;
}

.ph-contact-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ph-contact-gallery img {
    width: 100%;
    aspect-ratio: 4 / 2.65;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(30, 40, 31, .06);
}

.ph-info-card--contact {
    grid-template-columns: 0.95fr 1.05fr;
}

@media (max-width: 900px) {
    .ph-contact-page-grid,
    .ph-contact-page-card,
    .ph-info-card--contact {
        grid-template-columns: 1fr;
    }

    .ph-house-illustration--contact {
        justify-self: start;
        width: 145px;
    }

    .ph-contact-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ph-contact-gallery img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 560px) {
    .ph-contact-page-card,
    .ph-form-card--contact {
        padding: 24px 22px;
    }
}






/* Kontaktseite – Titel links über volle Badge-Breite */
.ph-contact-page-card {
    display: block;
}

.ph-contact-page-heading {
    margin-bottom: 20px;
}

.ph-contact-page-heading h2 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    font-size: clamp(30px, 2.6vw, 38px);
    line-height: 1.08;
    margin: 0;
    white-space: nowrap;
}

.ph-contact-page-body {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 24px;
    align-items: center;
}

.ph-contact-page-body .ph-contact-list {
    margin: 0;
}

.ph-contact-page-body .ph-house-illustration--contact {
    justify-self: end;
    width: 180px;
    opacity: .72;
}

/* Tablet / Mobile: wieder sauber umbrechen */
@media (max-width: 980px) {
    .ph-contact-page-heading h2 {
        white-space: normal;
    }

    .ph-contact-page-body {
        grid-template-columns: 1fr;
    }

    .ph-contact-page-body .ph-house-illustration--contact {
        justify-self: start;
        width: 150px;
    }
}





/* ------------------------------------------------------------
   Preise Seite – Zusatzklassen
   ------------------------------------------------------------ */

.ph-section-lead {
    max-width: 820px;
    margin: -8px auto 28px;
    text-align: center;
    color: #4f5b52;
    font-size: 16px;
    line-height: 1.55;
}

.ph-price-grid {
    display: grid;
    gap: 24px;
}

.ph-price-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .07);
}

.ph-price-card:nth-child(even) .ph-price-card-image {
    order: 2;
}

.ph-price-card-image img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.ph-price-card-body {
    padding: 28px 32px;
}

.ph-price-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 10px;
}

.ph-price-head h3 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

.ph-price-desc {
    margin: 0 0 16px;
    color: #344035;
    line-height: 1.55;
}

.ph-price-list {
    display: grid;
    gap: 0;
    margin: 0 0 18px;
    border: 1px solid var(--ph-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--ph-cream);
}

.ph-price-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--ph-border);
    color: #26312a;
}

.ph-price-list div:last-child {
    border-bottom: 0;
}

.ph-price-list strong {
    color: var(--ph-green);
    white-space: nowrap;
    font-size: 17px;
}

.ph-price-extras {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
    color: #303a32;
    font-size: 14px;
}

.ph-price-extras li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ph-price-extras img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
}

.ph-price-included-mini {
    margin: 0 0 18px;
    padding: 13px 15px;
    border-radius: 8px;
    background: var(--ph-green-soft);
    color: #4f5b52;
    font-size: 13px;
    line-height: 1.45;
}

.ph-price-included-mini strong {
    color: #26312a;
}

.ph-price-note-card,
.ph-price-service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 30px 34px;
}

.ph-price-note-card h2,
.ph-price-info-card h2,
.ph-price-service-card h2 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.12;
    margin: 0 0 14px;
}

.ph-price-note-card p,
.ph-price-info-card p,
.ph-price-service-card p {
    margin: 0;
    color: #4f5b52;
    line-height: 1.55;
}

.ph-price-note-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ph-price-note-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 6px 16px rgba(30, 40, 31, .05);
}

.ph-price-note-list img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ph-price-note-list span {
    font-size: 14px;
    font-weight: 700;
    color: #26312a;
}

.ph-price-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ph-price-info-card {
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 28px 32px;
}

.ph-price-info-card ul {
    padding-left: 18px;
    margin: 14px 0 0;
    color: #344035;
    line-height: 1.7;
}

.ph-price-service-image img {
    width: 100%;
    min-height: 310px;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.ph-service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 14px;
}

.ph-service-columns ul {
    margin: 0;
    padding-left: 18px;
    color: #344035;
    line-height: 1.65;
}

.ph-price-small-note {
    margin-top: 14px !important;
    font-size: 13px;
    color: var(--ph-muted) !important;
}

.ph-info-card--prices {
    margin-top: 2px;
}

.ph-price-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.ph-price-cta-actions .ph-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .8);
}

.ph-price-cta-actions .ph-btn--outline:hover {
    background: var(--ph-orange);
    border-color: var(--ph-orange);
    color: #fff;
}

@media (max-width: 860px) {
    .ph-price-card,
    .ph-price-note-card,
    .ph-price-service-card,
    .ph-price-info-grid {
        grid-template-columns: 1fr;
    }

    .ph-price-card:nth-child(even) .ph-price-card-image {
        order: 0;
    }

    .ph-price-note-list,
    .ph-service-columns {
        grid-template-columns: 1fr;
    }

    .ph-price-card-image img,
    .ph-price-service-image img {
        min-height: 230px;
    }
}

@media (max-width: 560px) {
    .ph-price-card-body,
    .ph-price-note-card,
    .ph-price-info-card,
    .ph-price-service-card {
        padding: 24px 22px;
    }

    .ph-price-head {
        flex-direction: column;
        gap: 6px;
    }

    .ph-price-extras {
        grid-template-columns: 1fr;
    }

    .ph-price-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .ph-price-cta-actions,
    .ph-price-cta-actions .ph-btn {
        width: 100%;
    }
}




/* ------------------------------------------------------------
   Region Seite – Zusatzklassen
   ------------------------------------------------------------ */

.ph-subpage-intro--region .ph-subpage-intro-image img {
    min-height: 340px;
}

.ph-region-feature-grid {
    display: grid;
    gap: 24px;
}

.ph-region-feature-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .07);
}

.ph-region-feature-card:nth-child(even) img {
    order: 2;
}

.ph-region-feature-card > img {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
}

.ph-region-feature-card > div {
    padding: 30px 34px;
}

.ph-region-feature-card h3,
.ph-region-teaser h3,
.ph-map-text h2,
.ph-region-note-card h2 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 12px;
}

.ph-region-feature-card h3 {
    font-size: clamp(28px, 3vw, 38px);
}

.ph-region-feature-card p,
.ph-region-teaser p,
.ph-map-text p,
.ph-region-note-card p {
    margin: 0;
    color: #4f5b52;
    line-height: 1.55;
}

.ph-info-card--region {
    grid-template-columns: 0.95fr 1.05fr;
}

.ph-region-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ph-region-teaser {
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .07);
}

.ph-region-teaser img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ph-region-teaser div {
    padding: 20px 22px 24px;
}

.ph-region-teaser h3 {
    font-size: 24px;
}

.ph-map-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 0;
    background: var(--ph-green-soft);
    border-radius: 10px;
    overflow: hidden;
    align-items: stretch;
}

.ph-map-text {
    padding: 30px 34px;
}

.ph-map-text h2,
.ph-region-note-card h2 {
    font-size: clamp(28px, 3.5vw, 38px);
}

.ph-map-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 12px;
}

.ph-map-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    color: #26312a;
    font-size: 15px;
}

.ph-map-list img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-top: 1px;
}

.ph-map-embed {
    min-height: 360px;
    background: #dfe8df;
}

.ph-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.ph-region-note-card {
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 28px 34px;
}

@media (max-width: 900px) {
    .ph-region-feature-card,
    .ph-map-card,
    .ph-info-card--region {
        grid-template-columns: 1fr;
    }

    .ph-region-feature-card:nth-child(even) img {
        order: 0;
    }

    .ph-region-teaser-grid {
        grid-template-columns: 1fr;
    }

    .ph-region-feature-card > img {
        min-height: 240px;
    }
}

@media (max-width: 560px) {
    .ph-region-feature-card > div,
    .ph-map-text,
    .ph-region-note-card {
        padding: 24px 22px;
    }

    .ph-subpage-intro--region .ph-subpage-intro-image img,
    .ph-region-feature-card > img {
        min-height: 220px;
    }

    .ph-map-embed,
    .ph-map-embed iframe {
        min-height: 300px;
    }
}
.ph-nowrap {
    white-space: nowrap;
}

.ph-map-list li {
    grid-template-columns: 24px minmax(0, 1fr);
}

.ph-map-list .ph-clean-link {
    white-space: nowrap;
}






/* ------------------------------------------------------------
   Galerie Seite – Zusatzklassen
   ------------------------------------------------------------ */

.ph-subpage-intro--gallery .ph-subpage-intro-image img {
    min-height: 340px;
}

.ph-gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ph-gallery-page-item {
    margin: 0;
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .07);
    transition: transform .18s ease, box-shadow .18s ease;
}

.ph-gallery-page-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 40, 31, .11);
}

.ph-gallery-page-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--ph-green-soft);
}

.ph-gallery-page-item figcaption {
    padding: 15px 17px 17px;
}

.ph-gallery-page-item figcaption strong {
    display: block;
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 6px;
}

.ph-gallery-page-item figcaption span {
    display: block;
    color: #4f5b52;
    font-size: 14px;
    line-height: 1.42;
}

.ph-gallery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.ph-gallery-cta-actions .ph-btn:first-child {
    background: #fff;
    color: var(--ph-green);
    border-color: #fff;
}

.ph-gallery-cta-actions .ph-btn:first-child:hover {
    background: var(--ph-orange);
    color: #fff;
    border-color: var(--ph-orange);
}

@media (max-width: 1100px) {
    .ph-gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 780px) {
    .ph-gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ph-gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ph-subpage-intro--gallery .ph-subpage-intro-image img {
        min-height: 220px;
    }

    .ph-gallery-page-item figcaption {
        padding: 14px 15px 16px;
    }

    .ph-gallery-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .ph-gallery-cta-actions .ph-btn {
        width: 100%;
    }
}



/* ------------------------------------------------------------
   Einzelunterkunft Typ A / Room Single – Zusatzklassen
   ------------------------------------------------------------ */

.ph-feature-strip--room {
    margin-bottom: 34px;
}

.ph-room-single-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: start;
}

.ph-room-single-text {
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 30px 34px;
}

.ph-room-single-text h2,
.ph-room-price-main h3,
.ph-room-single-box h3 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 14px;
}

.ph-room-single-text h2 {
    font-size: clamp(30px, 3.6vw, 42px);
}

.ph-room-single-text p {
    margin: 0 0 16px;
    color: #344035;
    line-height: 1.58;
}

.ph-room-single-text p:last-child {
    margin-bottom: 0;
}

.ph-room-single-box {
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    padding: 28px 30px;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .07);
}

.ph-room-single-box h3 {
    font-size: 30px;
}

.ph-room-single-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.ph-room-single-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: center;
    color: #26312a;
    font-size: 15px;
}

.ph-room-single-list img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.ph-room-price-panel {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 28px;
    align-items: center;
    background: var(--ph-green-soft);
    border-radius: 10px;
    padding: 30px 34px;
}

.ph-room-price-main h3 {
    font-size: clamp(30px, 3.5vw, 42px);
}

.ph-room-price-main p {
    margin: 0;
    color: #4f5b52;
    line-height: 1.55;
}

.ph-price-list--single {
    margin: 0;
}

.ph-price-info-grid--room {
    margin-top: 24px;
}

.ph-room-contact-link {
    margin-top: 22px;
}

.ph-room-single-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ph-room-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.ph-room-cta-actions .ph-btn {
    background: #fff;
    color: var(--ph-green);
    border-color: #fff;
}

.ph-room-cta-actions .ph-btn:hover {
    background: var(--ph-orange);
    color: #fff;
    border-color: var(--ph-orange);
}

@media (max-width: 1100px) {
    .ph-room-single-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .ph-room-single-grid,
    .ph-room-price-panel {
        grid-template-columns: 1fr;
    }

    .ph-room-single-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .ph-room-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .ph-room-cta-actions .ph-btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .ph-room-single-text,
    .ph-room-single-box,
    .ph-room-price-panel {
        padding: 24px 22px;
    }

    .ph-room-single-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}




/* ------------------------------------------------------------
   Rechtliche Seiten / Impressum / Datenschutz
   ------------------------------------------------------------ */

.ph-legal-card {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--ph-border);
    border-radius: 10px;
    padding: 34px 40px;
    box-shadow: 0 8px 22px rgba(30, 40, 31, .06);
}

.ph-legal-card h2 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    margin: 0 0 26px;
}

.ph-legal-card h3 {
    font-family: var(--ph-serif);
    color: var(--ph-green);
    font-size: 24px;
    font-weight: 500;
    margin: 28px 0 8px;
}

.ph-legal-card p {
    margin: 0 0 14px;
    color: #344035;
    line-height: 1.6;
}

@media (max-width: 560px) {
    .ph-legal-card {
        padding: 26px 22px;
    }
}
