body {
    min-height: 100vh;
}

.tour-body {
    background: #0b1120;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.tour-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(10px);
}

.tour-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.tour-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #e5e7eb;
    text-decoration: none;
}

.tour-logo__mark {
    font-size: 1.4rem;
}

.tour-nav a {
    margin: 0 0.5rem;
    color: #cbd5f5;
    text-decoration: none;
    font-size: 0.95rem;
}

.tour-nav a:hover {
    color: #38bdf8;
}

.tour-header__auth .btn {
    margin-left: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #0f172a;
    font-weight: 600;
}

.btn-outline {
    border-color: #64748b;
    color: #e5e7eb;
}

.tour-main {
    max-width: 1200px;
    margin: 1.5rem auto 2rem;
    padding: 0 1.5rem;
}

.tour-main>h1 {
    text-align: center;
}

/* простая сетка карточек */

.tour-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

/* футер */

.tour-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: #020617;
    padding: 1.5rem 1.5rem 2rem;
    margin-top: 2rem;
}

.tour-footer__top,
.tour-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-footer__menu a {
    margin-right: 0.75rem;
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
}

.tour-footer__menu a:hover {
    color: #e5e7eb;
}