.outdoor-page {
    display: block;
    margin: 0 auto;
    padding: 0 24px 80px;
    max-width: 1200px;
    color: #1f2933;
}

.odp-hero {
    position: relative;
    margin: 40px 0 48px;
    padding: 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, #A65A3D 0%, #C67353 60%, #E9B199 100%);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.odp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #ffffff;
}

.odp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.odp-hero-title {
    margin: 0 0 12px;
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.1;
    font-weight: 700;
}

.odp-hero-subtitle {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.odp-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.odp-results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.odp-results-count {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.odp-results-count strong {
    font-size: 32px;
    color: #2c7a7b;
}

.odp-results-count span {
    font-size: 16px;
    color: #52606d;
}

.odp-filters {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
}

.odp-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e6fffb;
    color: #2c7a7b;
    font-size: 13px;
    font-weight: 600;
}

.odp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.odp-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 500px;
}

.odp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.odp-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.odp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.odp-card:hover .odp-card-media img {
    transform: scale(1.05);
}

.odp-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(44, 122, 123, 0.92);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.odp-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.odp-card-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.4;
}

.odp-card-title a {
    color: inherit;
    text-decoration: none;
}

.odp-card-title a:hover {
    color: #2c7a7b;
}

.odp-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #52606d;
}

.odp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.odp-meta-divider {
    color: #cbd2d9;
}

.odp-meta-reviews {
    font-size: 13px;
    color: #8292a0;
}

.odp-card-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1f2933;
}

.odp-card-location svg {
    color: #2c7a7b;
}

.odp-card-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #3e4c59;
}

.odp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.odp-card-times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.odp-time-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    background: #f0fff4;
    color: #2f855a;
    font-size: 13px;
    font-weight: 600;
}

.odp-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #A65A3D 0%, #C67353 60%, #E9B199 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.odp-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(76, 184, 196, 0.25);
}

.odp-no-results {
    margin: 64px auto;
    padding: 48px;
    max-width: 640px;
    text-align: center;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e4ebf3;
}

.odp-no-results h2 {
    margin-bottom: 12px;
    font-size: 26px;
    color: #1f2933;
}

.odp-no-results p {
    margin: 0;
    font-size: 16px;
    color: #52606d;
}

@media (max-width: 992px) {
    .outdoor-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .odp-hero {
        padding: 40px;
        border-radius: 28px;
    }

    .odp-results-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .odp-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .odp-hero {
        padding: 28px 24px;
    }

    .odp-hero-meta {
        flex-wrap: wrap;
    }

    .odp-results-summary {
        align-items: stretch;
    }

    .odp-filters {
        gap: 8px;
    }

    .odp-grid {
        grid-template-columns: 1fr;
    }

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

    .odp-card-footer {
        align-items: flex-start;
    }
}

