/* ===== Public Website Layout ===== */

/* ── Navbar ── */
.pub-nav {
  background: var(--sidebar-bg);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.pub-nav-inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 62px;
  gap: 0;
}
.pub-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 12px;
}
.pub-nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 6px;
}
.pub-nav-logo span {
  font-size: 15px;
  font-weight: 700;
  color: #F4E7CF;
  letter-spacing: -.2px;
  white-space: nowrap;
}
.pub-nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pub-nav-item {
  position: relative;
}
.pub-nav-item > a,
.pub-nav-item > span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 62px;
  color: var(--sidebar-text);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  user-select: none;
}
.pub-nav-item > a:hover,
.pub-nav-item > span:hover,
.pub-nav-item.active > a,
.pub-nav-item.active > span {
  color: #F4E7CF;
  background: var(--sidebar-hover);
  text-decoration: none;
}
.pub-nav-item > span svg { flex-shrink: 0; opacity: .7; }
.pub-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--sidebar-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  z-index: 300;
}
.pub-nav-item:hover .pub-nav-dropdown,
.pub-nav-item:focus-within .pub-nav-dropdown {
  display: block;
}
.pub-nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--sidebar-text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pub-nav-dropdown a:last-child { border-bottom: none; }
.pub-nav-dropdown a:hover { background: var(--sidebar-hover); color: #F4E7CF; }
.pub-nav-spacer { display: none; }
.pub-nav-login {
  position: absolute;
  right: 0;
  top: 0;
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
/* Highlighted nav items (Túranaptár, Belépés) */
.pub-nav-item .pub-nav-highlight {
  margin: auto 6px;
  height: auto !important;
  padding: 6px 14px !important;
  background: #DD9933;
  color: #000 !important;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.pub-nav-item .pub-nav-highlight:hover,
.pub-nav-item .pub-nav-highlight.pub-nav-highlight-active {
  background: #c8881e;
  color: #000 !important;
  text-decoration: none;
}
.pub-nav-login .btn { padding: 6px 14px !important; font-size: 13.5px; font-weight: 700; line-height: 1.4 !important; }

/* Hero background image */
.pub-hero { position: relative; overflow: hidden; }
.pub-hero-bg {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  will-change: transform;
}
.pub-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(255 217 167 / 51%);
  z-index: 1;
}
.pub-hero-content { position: relative; z-index: 2; }

.pub-nav-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  cursor: pointer;
  color: var(--sidebar-text);
  padding: 6px 12px;
  margin-left: auto;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.pub-nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--sidebar-bg);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 6px 0 14px;
}
.pub-nav-mobile-menu.open { display: flex; }

/* Csoportos menüpont (van almenüje) */
.pub-mobile-group { border-bottom: 1px solid rgba(255,255,255,.06); }
.pub-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  background: none;
  border: none;
  color: var(--sidebar-text);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.pub-mobile-btn:hover { background: var(--sidebar-hover); color: #F4E7CF; }
.pub-mobile-btn svg { transition: transform .2s; flex-shrink: 0; opacity: .7; }
.pub-mobile-group.open .pub-mobile-btn svg { transform: rotate(180deg); }

/* Almenü */
.pub-mobile-sub {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,.18);
}
.pub-mobile-group.open .pub-mobile-sub { display: flex; }
.pub-mobile-sub a {
  display: block;
  padding: 10px 20px 10px 32px;
  color: rgba(244,231,207,.75);
  text-decoration: none;
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.pub-mobile-sub a:hover { background: var(--sidebar-hover); color: #F4E7CF; }

/* Közvetlen linkek (nincs almenü) */
.pub-mobile-direct {
  display: block;
  padding: 13px 20px;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pub-mobile-direct:hover { background: var(--sidebar-hover); color: #F4E7CF; }
.pub-mobile-highlight { color: #DD9933 !important; }

/* ── Page wrapper ── */
.pub-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.pub-wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
}
.pub-wrap-wide {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
}
.pub-wrap-narrow {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
}

/* ── Hero ── */
.pub-hero {
  background: linear-gradient(135deg, var(--sidebar-bg) 0%, #1d5750 100%);
  color: #fff;
  padding: 52px 20px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pub-hero h1 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.5px;
  color: #234f4a;
  margin-bottom: 16px;
}
.pub-hero p {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
    text-shadow: rgba(255, 255, 255, 1) 0px 0px 7px;
}
.pub-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  background: #f59e0b;
  color: var(--sidebar-bg);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .18s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: #fff; color: var(--sidebar-bg); text-decoration: none; }
.btn-hero-ghost {
  background: #f4e7cf;
  color: rgb(15, 45, 42);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border: 2px solid #f59e0b;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .18s, background .18s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-ghost:hover { 
  border-color: #f59e0b; 
  background: rgba(224, 190, 116, 0.548); 
  text-decoration: none; 
  color: white;
}

/* ── Section headings ── */
.pub-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.pub-section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -14px;
  margin-bottom: 24px;
}
.pub-page-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pub-page-header h1 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 800;
  color: var(--sidebar-bg);
  letter-spacing: -.3px;
}
.pub-page-header p {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.7;
}

/* ── Post grid ── */
.pub-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.pub-post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.pub-post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pub-post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.pub-post-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--sidebar-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.pub-post-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pub-post-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pub-post-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.pub-post-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.pub-post-card-body h3 a:hover { color: var(--primary); }
.pub-post-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.pub-post-category-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pub-post-category-badge.hirek    { background: #e0f0ee; color: var(--primary); }
.pub-post-category-badge.beszmolok { background: #fef3e2; color: var(--warning); }

/* ── Post detail ── */
.pub-post-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  max-width: 900px;
}
.pub-post-body h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.pub-post-body h3 { font-size: 17px; font-weight: 700; margin: 22px 0 10px; }
.pub-post-body p  { margin-bottom: 16px; }
.pub-post-body ul, .pub-post-body ol { margin: 0 0 16px 24px; }
.pub-post-body li { margin-bottom: 6px; }
.pub-post-body img { max-width: 100%; border-radius: var(--radius-sm); margin: 16px 0; }
.pub-post-body a { color: var(--primary); }

/* ── Document list ── */
.pub-doc-category { margin-bottom: 32px; }
.pub-doc-category h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sidebar-bg);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.pub-doc-list { display: flex; flex-direction: column; gap: 8px; }
.pub-doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: background .15s, border-color .15s;
}
.pub-doc-item:hover { background: #eee7da; border-color: var(--primary); text-decoration: none; }
.pub-doc-icon { color: var(--primary); flex-shrink: 0; }
.pub-doc-title { flex: 1; font-size: 13.5px; font-weight: 500; }
.pub-doc-dl { font-size: 12px; color: var(--primary); font-weight: 600; white-space: nowrap; }

/* ── Finance table ── */
.pub-finance-year { margin-bottom: 36px; }
.pub-finance-year summary {
  font-size: 17px;
  font-weight: 700;
  color: var(--sidebar-bg);
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 2px solid var(--primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pub-finance-year summary::-webkit-details-marker { display: none; }
.pub-finance-year[open] summary { border-color: var(--primary); }
.pub-finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.pub-finance-col h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pub-finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.pub-finance-row:last-child { border-bottom: none; }
.pub-finance-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
  border-top: 2px solid var(--border);
}

/* ── FAQ ── */
.pub-faq-list { display: flex; flex-direction: column; gap: 0; }
.pub-faq-item {
  border-bottom: 1px solid var(--border);
}
.pub-faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pub-faq-item summary::-webkit-details-marker { display: none; }
.pub-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
}
.pub-faq-item[open] summary::after { content: '−'; }
.pub-faq-answer {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 0 0 16px;
}

/* ── Level / rank table ── */
.pub-rank-table { width: 100%; border-collapse: collapse; }
.pub-rank-table th, .pub-rank-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.pub-rank-table th {
  background: var(--sidebar-bg);
  color: #F4E7CF;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pub-rank-table td:last-child { text-align: right; font-weight: 700; color: var(--primary); }
.pub-rank-img { height: 50px; width: auto; }

/* ── Contact block ── */
.pub-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.pub-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pub-contact-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pub-contact-item h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 4px; }
.pub-contact-item p, .pub-contact-item a { font-size: 14px; color: var(--text); line-height: 1.5; }

/* ── Social links ── */
.pub-social-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pub-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .18s;
}
.pub-social-btn:hover { opacity: .85; text-decoration: none; }
.pub-social-fb  { background: #1877F2; color: #fff; }
.pub-social-ig  { background: #E4405F; color: #fff; }
.pub-social-yt  { background: #FF0000; color: #fff; }
.pub-social-tw  { background: #1DA1F2; color: #fff; }

/* ── Footer ── */
.pub-footer {
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  padding: 40px 20px 24px;
  margin-top: auto;
}
.pub-footer-inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pub-footer h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #F4E7CF;
  margin-bottom: 14px;
}
.pub-footer a {
  display: block;
  color: var(--sidebar-text);
  font-size: 13px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .15s;
}
.pub-footer a:hover { color: #F4E7CF; text-decoration: none; }
.pub-footer p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; }
.pub-footer-bottom {
  width: 100%;
  max-width: 940px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(143,181,178,.55);
}

/* ── Promo strip ── */
.pub-strip {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
}
.pub-strip h2 { font-size: 24px; font-weight: 800; color: #F4E7CF; margin-bottom: 12px; }
.pub-strip p  { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 24px; }

/* ── Tour cards (horizontal) ── */
.pub-tour-cards { display: flex; flex-direction: column; gap: 16px; }
.pub-tour-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
  text-decoration: none;
  color: inherit;
  min-height: 160px;
}
.pub-tour-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; color: inherit; }
.pub-tour-card-img {
  width: 300px;
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.pub-tour-card-img-placeholder {
  width: 300px;
  min-width: 300px;
  height: 200px;
  flex-shrink: 0;
  background: var(--sidebar-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
}
.pub-tour-card-body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.pub-tour-card-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.pub-tour-card-title  { font-size: 20px; font-weight: 800; color: var(--text); line-height: 1.25; display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.pub-tour-card-title img {
    height: 18px;
    flex-shrink: 0;
    margin-top: 5px;
    border: 1px solid #AAAAAA;
}
.pub-tour-card-spots  { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; padding-top: 2px; }
.pub-tour-card-dates  { font-size: 16px; color: var(--text); font-weight: 600; }
.pub-tour-card-intro  { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-top: 2px; }
.pub-tour-card-side {
  width: 110px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-left: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
}
.pub-tour-card-lizzardier {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pub-tour-card-lizzardier img { width: 72px; height: auto; }
.pub-tour-card-lizzardier-pts {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 1px 3px rgba(255,255,255,.9);
  pointer-events: none;
}

/* ── Misc ── */
.pub-prose {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
.pub-prose h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--sidebar-bg); }
.pub-prose h3 { font-size: 17px; font-weight: 700; margin: 22px 0 10px; }
.pub-prose p  { margin-bottom: 16px; }
.pub-prose ul, .pub-prose ol { margin: 0 0 16px 22px; }
.pub-prose li { margin-bottom: 6px; }
.pub-prose strong { font-weight: 700; }
.pub-prose a { color: var(--primary); }

.pub-info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}

/* ── Tour detail grid ── */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas:
    "main    sidebar"
    "extra   sidebar";
  gap: 24px;
  align-items: start;
}
.tour-main-info      { grid-area: main; }
.tour-sidebar        { grid-area: sidebar; }
.tour-secondary-info { grid-area: extra; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pub-nav-menu    { display: none; }
  .pub-nav-login   { display: none; }
  .pub-nav-hamburger { display: flex; }
  .pub-hero { padding: 36px 16px; min-height: 280px; }
  .pub-wrap, .pub-wrap-wide, .pub-wrap-narrow { padding: 24px 16px; }
  .pub-finance-grid { grid-template-columns: 1fr; }
  .pub-post-grid { grid-template-columns: 1fr; }
  .pub-tour-card { flex-direction: column; }
  .pub-tour-card-img,
  .pub-tour-card-img-placeholder { width: 100%; min-width: 0; height: 180px; }
  .pub-tour-card-side { width: 100%; min-width: 0; border-left: none; border-top: 1px solid var(--border); padding: 12px 16px; justify-content: flex-start; gap: 12px; }
  .pub-contact-grid { grid-template-columns: 1fr; }
  .pub-footer-inner { grid-template-columns: 1fr 1fr; }
  /* Tour detail: egymás alá, Jelentkezés a 2. helyen */
  .tour-detail-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "sidebar"
      "extra";
  }
}
@media (max-width: 480px) {
  .pub-footer-inner { grid-template-columns: 1fr; }
}
