/* ═══════════════════════════════════════════════
   Erbe Propstack Immobilien — Styles
   Angepasst an erbe-immo.de Branding
   ═══════════════════════════════════════════════ */

:root {
    --ep-primary: #3F8EFC;
    --ep-primary-dark: #2a6fd4;
    --ep-dark: #555b66;
    --ep-text: #626a78;
    --ep-text-light: #7a8290;
    --ep-bg: #f8f9fa;
    --ep-white: #ffffff;
    --ep-border: #e2e8f0;
    --ep-radius: 12px;
    --ep-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --ep-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --ep-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --ep-max-width: 1200px;
}

/* ─── Overview Header ─── */

/* ─── Reset: Verhindert geerbte line-height vom Elementor Kit (20em auf Mobile) ─── */
.ep-overview,
.ep-detail-page,
.ep-contact-section,
.ep-similar-section,
.ep-sidebar {
    line-height: 1.5;
}

.ep-overview {
    max-width: var(--ep-max-width);
    margin: 0 auto;
}

.ep-overview-header {
    padding: 40px 20px 10px;
}

.ep-overview-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ep-text-light);
    font-family: var(--ep-font);
    margin-bottom: 8px;
}

.ep-overview-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--ep-dark);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.3;
    margin: 0 0 16px;
}

.ep-overview-subtitle {
    font-size: 15px;
    color: var(--ep-text-light);
    line-height: 1.6;
    font-family: var(--ep-font);
    margin: 0 0 24px;
    max-width: 700px;
}

.ep-overview-count {
    font-size: 26px;
    font-weight: 400;
    color: var(--ep-dark);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.3;
    margin: 0 0 8px;
}

/* ─── Grid Overview ─── */

.ep-grid {
    display: grid;
    gap: 28px;
    max-width: var(--ep-max-width);
    margin: 0 auto;
    padding: 20px;
}

.ep-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ep-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ep-cols-4 { grid-template-columns: repeat(4, 1fr); }

.ep-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--ep-text-light);
    font-family: var(--ep-font);
}

/* ─── Badges (Banderolen) ─── */

.ep-badge {
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 2;
    padding: 6px 16px 6px 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--ep-font);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ep-white);
    background: var(--ep-primary);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    white-space: nowrap;
}

/* Multiple badges: stack vertically */
.ep-badge:nth-child(2) {
    top: 44px;
}

/* ─── Card ─── */

.ep-card {
    background: var(--ep-white);
    border-radius: var(--ep-radius);
    box-shadow: var(--ep-shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ep-card:hover {
    box-shadow: var(--ep-shadow-hover);
    transform: translateY(-4px);
}

.ep-card a.ep-card-link,
.ep-card a.ep-card-link:hover,
.ep-card a.ep-card-link:focus,
.ep-card a.ep-card-link:visited,
.ep-card a.ep-card-link:active,
a.ep-card-link,
a.ep-card-link:hover,
a.ep-card-link:focus,
a.ep-card-link:visited {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ep-card-link h3,
.ep-card-link .ep-card-title,
.ep-card-link .ep-card-location,
.ep-card-link .ep-card-type,
.ep-card-link .ep-detail-label,
.ep-card-link .ep-detail-value,
.ep-card-link .ep-btn,
.ep-card-link span,
.ep-card-link div {
    text-decoration: none !important;
    border-bottom: none !important;
}

.ep-card-image {
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
    background: var(--ep-bg);
}

.ep-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ep-card:hover .ep-card-image img {
    transform: scale(1.05);
}

.ep-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    gap: 8px;
}

.ep-card-placeholder svg {
    width: 48px;
    height: 48px;
}

.ep-card-body {
    padding: 20px;
}

.ep-card-location {
    font-size: 13px;
    color: var(--ep-text-light);
    margin-bottom: 6px;
    font-family: var(--ep-font);
}

.ep-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--ep-dark);
    margin: 0 0 6px 0;
    line-height: 1.35;
    font-family: var(--ep-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ep-card-type {
    font-size: 13px;
    color: var(--ep-primary);
    margin-bottom: 16px;
    font-family: var(--ep-font);
}

.ep-card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--ep-border);
}

.ep-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--ep-font);
}

.ep-detail-label {
    font-size: 13px;
    color: var(--ep-text-light);
}

.ep-detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--ep-dark);
}

.ep-detail-price .ep-detail-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ep-primary);
}

.ep-card-cta {
    margin-top: 16px;
    text-align: center;
}

.ep-btn {
    display: inline-block;
    background: var(--ep-dark);
    color: var(--ep-white);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: var(--ep-font);
    border: none;
    cursor: pointer;
}

.ep-btn:hover {
    background: var(--ep-primary);
    color: var(--ep-white);
}

/* ─── Detail Page ─── */

.ep-detail-page {
    font-family: var(--ep-font);
    color: var(--ep-text);
    line-height: 1.6;
}

/* Kill ALL underlines in detail page */
.ep-detail-page a,
.ep-detail-page a:hover,
.ep-detail-page a:focus,
.ep-detail-page a:visited,
.ep-detail-page a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ep-detail-container {
    max-width: var(--ep-max-width);
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Back link */
.ep-detail-back {
    padding: 20px 0 0;
}

.ep-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--ep-text-light) !important;
    transition: color 0.2s;
}

.ep-detail-back a:hover {
    color: var(--ep-primary) !important;
}

/* Two-column layout */
.ep-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.ep-detail-main {
    min-width: 0;
}

.ep-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
}

/* Header */
.ep-detail-header {
    padding: 30px 0 10px;
}

.ep-detail-type {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ep-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ep-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ep-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.ep-detail-address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--ep-text-light);
    margin: 0;
}

.ep-icon-pin {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ep-detail-badges {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.ep-detail-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ep-white);
    background: var(--ep-primary);
    border-radius: 4px;
}

/* ─── Sidebar Cards ─── */

.ep-sidebar-card {
    background: var(--ep-white);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    padding: 24px;
}

.ep-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ep-dark);
    margin: 0 0 16px;
}

/* Price Card */
.ep-price-card {
    background: var(--ep-bg);
    border: none;
}

.ep-price-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ep-text-light);
    margin-bottom: 4px;
}

.ep-price-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--ep-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ep-price-extras {
    border-top: 1px solid var(--ep-border);
    padding-top: 12px;
    margin-bottom: 16px;
}

.ep-price-extra {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 8px;
    align-items: baseline;
    font-size: 13px;
    color: var(--ep-text);
    padding: 6px 0;
    border-bottom: 1px solid var(--ep-border);
}

.ep-price-extra:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ep-price-extra span:first-child {
    color: var(--ep-text-light);
    font-weight: 400;
}

.ep-price-extra span:last-child {
    font-weight: 500;
    line-height: 1.5;
}

.ep-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--ep-primary);
    color: var(--ep-white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.ep-btn-primary:hover {
    background: var(--ep-primary-dark) !important;
}

.ep-btn-submit,
button.ep-btn-submit,
.ep-contact-form button[type="submit"] {
    background: #3F8EFC !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.2s;
}

.ep-btn-submit:hover,
button.ep-btn-submit:hover,
.ep-contact-form button[type="submit"]:hover {
    background: #2a6fd4 !important;
}

/* Facts Card (sidebar) */
.ep-sidebar-facts {
    display: flex;
    flex-direction: column;
}

.ep-sidebar-fact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--ep-border);
}

.ep-sidebar-fact:last-child {
    border-bottom: none;
}

.ep-sidebar-fact-label {
    font-size: 13px;
    color: var(--ep-text-light);
}

.ep-sidebar-fact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ep-dark);
}

/* Broker Card */
.ep-broker-card .ep-broker-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.ep-broker-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.ep-broker-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ep-broker-details strong {
    font-size: 15px;
    color: var(--ep-dark);
}

.ep-broker-title {
    font-size: 12px;
    color: var(--ep-text-light);
}

.ep-broker-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--ep-border);
    padding-top: 14px;
}

.ep-broker-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ep-text) !important;
    padding: 4px 0;
    transition: color 0.2s;
}

.ep-broker-contact-item:hover {
    color: var(--ep-primary) !important;
}

.ep-broker-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--ep-primary);
}

/* ─── Gallery ─── */

.ep-gallery {
    max-width: var(--ep-max-width);
    margin: 0 auto;
    padding-top: 30px;
}

.ep-gallery-main {
    position: relative;
    width: 100%;
    max-height: 560px;
    overflow: hidden;
    border-radius: var(--ep-radius);
    background: #111;
}

.ep-gallery-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.ep-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: var(--ep-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ep-gallery-nav:hover {
    background: var(--ep-white);
}

.ep-gallery-prev { left: 16px; }
.ep-gallery-next { right: 16px; }

.ep-gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--ep-font);
}

.ep-gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.ep-thumb {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, outline-color 0.2s;
    outline: 2px solid transparent;
    flex-shrink: 0;
}

.ep-thumb:hover,
.ep-thumb.active {
    opacity: 1;
}

.ep-thumb.active {
    outline-color: var(--ep-primary);
}

/* ─── Sections ─── */

.ep-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--ep-border);
}

.ep-section:first-of-type {
    border-top: none;
}

.ep-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ep-dark);
    margin: 0 0 16px;
}

/* ─── Description Text ─── */

.ep-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ep-text);
}

/* ─── Features ─── */

.ep-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.ep-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ep-text);
    padding: 6px 0;
}

.ep-check-icon {
    width: 18px;
    height: 18px;
    color: var(--ep-primary);
    flex-shrink: 0;
}

/* ─── Energy Certificate ─── */

.ep-energy-scale {
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}

.ep-energy-class {
    flex: 1;
    padding: 8px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    position: relative;
    transition: transform 0.2s;
}

.ep-energy-class.active {
    transform: scaleY(1.15);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 1;
    border-radius: 4px;
}

.ep-energy-marker {
    display: block;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 2px;
}

.ep-energy-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ep-energy-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid var(--ep-border);
}

.ep-energy-row:nth-child(odd) {
    background: var(--ep-bg);
}

.ep-energy-label {
    font-size: 13px;
    color: var(--ep-text-light);
}

.ep-energy-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ep-dark);
}

/* ─── Facts Grid (legacy for typed features) ─── */

.ep-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.ep-fact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    background: var(--ep-bg);
    border-radius: 8px;
}

.ep-fact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ep-text-light);
    font-weight: 500;
}

.ep-fact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ep-dark);
}

/* ─── Floorplans ─── */

.ep-floorplans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ep-floorplan img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--ep-border);
}

.ep-floorplan-title {
    font-size: 13px;
    color: var(--ep-text-light);
    text-align: center;
    margin-top: 6px;
}

/* ─── Contact Section ─── */

.ep-contact-section {
    background: var(--ep-bg);
    margin-left: -20px;
    margin-right: -20px;
    padding: 48px 40px;
    border-top: none;
    border-radius: var(--ep-radius);
    margin-top: 48px;
}

.ep-contact-subtitle {
    font-size: 15px;
    color: var(--ep-text-light);
    margin: -8px 0 24px;
}

.ep-contact-wrapper {
    max-width: 680px;
}

/* ─── Contact Form ─── */

.ep-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ep-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ep-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ep-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ep-text);
}

.ep-form-group input,
.ep-form-group select,
.ep-form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--ep-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--ep-font);
    color: var(--ep-text);
    background: var(--ep-white);
    transition: border-color 0.2s;
}

.ep-form-group input:focus,
.ep-form-group select:focus,
.ep-form-group textarea:focus {
    outline: none;
    border-color: var(--ep-primary);
    box-shadow: 0 0 0 3px rgba(63, 142, 252, 0.15);
}

.ep-form-privacy {
    font-size: 13px;
    color: var(--ep-text-light);
}

.ep-form-privacy a {
    color: var(--ep-primary) !important;
}

.ep-form-privacy input[type="checkbox"] {
    margin-right: 6px;
}

.ep-btn-submit {
    align-self: flex-start;
    padding: 12px 36px;
    font-size: 15px;
    background: var(--ep-primary);
}

.ep-btn-submit:hover {
    background: var(--ep-primary-dark);
}

.ep-form-status {
    font-size: 14px;
    padding: 8px 0;
}

.ep-form-status.success {
    color: #2d8a4e;
}

.ep-form-status.error {
    color: #dc3545;
}

/* ─── Map ─── */

.ep-map-container {
    border-radius: var(--ep-radius);
    overflow: hidden;
    box-shadow: var(--ep-shadow);
}

.ep-map-container iframe {
    display: block;
    width: 100%;
}

/* ─── Similar Properties ─── */

.ep-similar-section {
    margin-top: 48px;
    padding-top: 0;
    border-top: none;
}

.ep-similar-section .ep-grid {
    padding: 0;
    max-width: none;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
    .ep-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .ep-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .ep-detail-layout {
        grid-template-columns: 1fr;
    }

    .ep-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ep-detail-sidebar .ep-broker-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .ep-cols-2,
    .ep-cols-3,
    .ep-cols-4 {
        grid-template-columns: 1fr;
    }

    .ep-form-row {
        grid-template-columns: 1fr;
    }

    .ep-gallery-main img {
        height: 300px;
    }

    .ep-detail-title {
        font-size: 22px;
    }

    .ep-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .ep-energy-details {
        grid-template-columns: 1fr;
    }

    .ep-btn-submit {
        width: 100%;
    }

    .ep-contact-section {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .ep-facts-grid {
        grid-template-columns: 1fr;
    }

    .ep-features-list {
        grid-template-columns: 1fr;
    }

    .ep-grid {
        padding: 12px;
        gap: 16px;
    }

    .ep-overview-header {
        padding: 24px 16px 8px;
    }

    .ep-overview-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin: 0 0 12px !important;
    }

    .ep-overview-subtitle {
        margin: 0 0 16px;
    }

    .ep-overview-count {
        font-size: 20px !important;
    }
}

/* ─── Theme Override: Überschriften-Farben (verhindert Überschreibung durch Theme) ─── */

.ep-overview-title,
.ep-overview-count,
.ep-overview-label {
    color: var(--ep-dark) !important;
}

.ep-card-title {
    color: var(--ep-dark) !important;
}

.ep-card-type {
    color: var(--ep-primary) !important;
}

.ep-detail-title {
    color: var(--ep-dark) !important;
}

.ep-section-title {
    color: var(--ep-dark) !important;
}

.ep-sidebar-title {
    color: var(--ep-dark) !important;
}

.ep-broker-title {
    color: var(--ep-dark) !important;
}

.ep-detail-label {
    color: var(--ep-text-light) !important;
}

.ep-detail-value {
    color: var(--ep-dark) !important;
}

.ep-card-location,
.ep-card-location span {
    color: var(--ep-text-light) !important;
}

.ep-btn,
a.ep-btn,
.ep-btn:link,
.ep-btn:visited {
    color: #ffffff !important;
    background-color: var(--ep-primary) !important;
}

.ep-btn:hover,
a.ep-btn:hover {
    background-color: var(--ep-primary-dark) !important;
    color: #ffffff !important;
}

.ep-contact-subtitle {
    color: var(--ep-text-light) !important;
}
