body {
    background: #f4f9fb;
    color: #16303d;
    font-family: "Segoe UI", "Noto Sans", sans-serif;
}

.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 12px 40px rgba(15, 95, 127, 0.2);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: white;
    text-decoration: none;
}

.brand img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: white;
    padding: 0.3rem;
}

.brand-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-subtitle {
    font-size: 0.85rem;
    opacity: 0.88;
}

.hero-strip {
    background: linear-gradient(180deg, rgba(47, 167, 199, 0.18), rgba(47, 167, 199, 0.02));
}

.hero-text {
    max-width: 720px;
    font-size: 1.05rem;
}

.panel-tabs {
    display: inline-flex;
    padding: 0.35rem;
    background: white;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(23, 138, 172, 0.12);
    gap: 0.4rem;
}

.toolbar-tabs {
    flex-shrink: 0;
}

.tab-button {
    border: 0;
    background: transparent;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    color: #487182;
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

.map-shell {
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
}

.toolbar .search-input {
    min-width: 260px;
}

.view-section {
    display: none;
}

.view-section.active {
    display: block;
}

.list-stack {
    display: grid;
    gap: 1rem;
}

.point-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 112px 1fr auto;
    box-shadow: 0 14px 34px rgba(22, 48, 61, 0.08);
}

.point-card img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    background: #dff2f8;
}

.point-card-body {
    padding: 1rem;
}

.point-card-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem;
}

.distance-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2f5fb;
    color: #0f5f7f;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
}

.detail-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    background: #dbf0f6;
}

.detail-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0.65rem 1rem;
}

.detail-grid dt {
    font-weight: 700;
}

.detail-grid dd {
    margin: 0;
}

.action-stack {
    display: grid;
    gap: 0.75rem;
}

.language-selector {
    width: auto;
    min-width: 120px;
    max-width: 180px;
    flex: 0 0 auto;
}

.admin-entry-link {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 95, 127, 0.92);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 95, 127, 0.22);
    backdrop-filter: blur(8px);
}

.admin-entry-link:hover {
    color: #fff;
    background: rgba(47, 167, 199, 0.96);
}

.news-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #dff2f8;
}

.site-footer {
    background: #123746;
    color: rgba(255, 255, 255, 0.9);
}

.footer-brand {
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.68);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 767px) {
    .point-card {
        grid-template-columns: 88px 1fr;
    }

    .point-card img {
        width: 88px;
        height: 100%;
    }

    .point-card-meta {
        grid-column: span 2;
        padding-top: 0;
    }

    .map-shell {
        height: 420px;
        border-radius: 22px;
    }

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

    .toolbar .search-input {
        min-width: 0;
    }
}
