/* ================================================================
   ORTE PAGE — Places/Experiences listing and cards
   ================================================================ */

.page-header-orte {
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../images/headers/orte-header.jpg') center 30%/cover no-repeat;
    color: white;
}

.page-header-orte h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header-orte p {
    font-size: 1.1rem;
    opacity: 1;
    color: white;
}

/* Reuse restaurant grid and card styles */
.orte-grid-section {
    padding: 48px 0 80px;
    background: var(--off-white);
}

.orte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

@media (max-width: 768px) {
    .orte-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .page-header-orte h1 {
        font-size: 2rem;
    }

    .page-header-orte {
        padding: 90px 16px 32px;
    }
}
