/* ========================================
   חדשות מלפני מאה — Modern Hebrew News
   ======================================== */

:root {
  --bg: #f5f0e8;
  --card-bg: #ffffff;
  --dark-bg: #1a1714;
  --dark-card: #2a2520;
  --text: #1a1a1a;
  --accent: #8b1a1a;
  --border: #d4c9b8;
  --meta: #6b5b4f;
  --link: #5c3d2e;
  --max-w: 1140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  direction: rtl;
  text-align: right;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; width: 100%; }
a { color: var(--link); }
img { max-width: 100%; height: auto; display: block; }

/* ---- Shared ---- */

.card-link { text-decoration: none; color: inherit; display: block; }
.label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(139,26,26,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

time {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--meta);
  font-weight: 400;
}

/* ---- Header removed — banner integrated into navbar ---- */

/* ============ HERO ============ */

.hero { margin: 2rem 0 1.5rem; }

.hero-link {
  display: grid; grid-template-columns: 1.2fr 1fr;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.25s, transform 0.2s;
}
.hero-link:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.12); transform: translateY(-3px); }

.hero-image { overflow: hidden; min-height: 340px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hero-link:hover .hero-image img { transform: scale(1.05); }

.hero-content {
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
}
.hero-content h2 {
  font-size: 2rem; font-weight: 900; line-height: 1.35; margin-bottom: 0.75rem;
}
.hero-content p { font-size: 1.05rem; color: #555; line-height: 1.75; margin-bottom: 0.5rem; }
.hero-content time { margin-top: auto; }

/* ============ 2-COL ROW ============ */

.row-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 1.5rem 0;
}

.card-md {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-md:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card-md-img { overflow: hidden; height: 200px; }
.card-md-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card-md:hover img { transform: scale(1.04); }

.card-md-body { padding: 1.25rem 1.5rem; }
.card-md-body time { display: block; margin-bottom: 0.35rem; color: var(--accent); font-weight: 500; }
.card-md-body h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.45; margin-bottom: 0.4rem; }
.card-md-body p { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* ============ DARK BANNER ============ */

.banner-dark {
  margin: 2rem -1.25rem;
  width: calc(100% + 2.5rem);
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 0;
}

.banner-dark-link {
  display: block; text-decoration: none; color: #fff;
  position: relative; min-height: 320px;
}

.banner-dark-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.banner-dark-link:hover .banner-dark-bg { transform: scale(1.03); }

.banner-dark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,12,10,0.92) 0%, rgba(15,12,10,0.6) 50%, rgba(15,12,10,0.3) 100%);
  z-index: 1;
}

.banner-dark-content {
  position: relative; z-index: 2;
  padding: 3rem 3.5rem;
  max-width: 60%;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 320px;
}

.banner-dark-content time { color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; display: block; }
.banner-dark-content h2 {
  font-size: 1.8rem; font-weight: 900; line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5); margin-bottom: 0.5rem;
}
.banner-dark-content p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ============ 3-COL ROW ============ */

.row-3col {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin: 1.5rem 0;
}

.card-sm {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-sm:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.07); transform: translateY(-1px); }

.card-sm-img { overflow: hidden; height: 150px; }
.card-sm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card-sm:hover img { transform: scale(1.04); }

.card-sm-body { padding: 1rem 1.25rem; }
.card-sm-body time { display: block; margin-bottom: 0.25rem; color: var(--accent); font-weight: 500; }
.card-sm-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.45; }

/* ============ FULL-WIDTH FEATURE ============ */

.feature-full {
  margin: 2rem 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.feature-full-link {
  display: grid; grid-template-columns: 1fr 1fr;
  text-decoration: none; color: inherit; min-height: 280px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature-full:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }

.feature-full-img { overflow: hidden; }
.feature-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feature-full:hover img { transform: scale(1.04); }

.feature-full-body {
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-full-body h2 { font-size: 1.6rem; font-weight: 900; line-height: 1.4; margin-bottom: 0.6rem; }
.feature-full-body p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 0.5rem; }
.feature-full-body time { margin-top: auto; }

/* ============ 1 BIG + 2 STACKED ============ */

.row-1plus2 {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem; margin: 1.5rem 0;
}

.card-big {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-big:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card-big-img { overflow: hidden; height: 250px; }
.card-big-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card-big:hover img { transform: scale(1.04); }

.card-big-body { padding: 1.5rem 1.75rem; }
.card-big-body time { display: block; margin-bottom: 0.35rem; color: var(--accent); font-weight: 500; }
.card-big-body h2 { font-size: 1.4rem; font-weight: 900; line-height: 1.4; margin-bottom: 0.5rem; }
.card-big-body p { font-size: 0.9rem; color: #555; line-height: 1.65; }

.stack-2 { display: flex; flex-direction: column; gap: 1.5rem; }

.card-horiz {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; flex: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-horiz:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.07); transform: translateY(-1px); }

.card-horiz .card-link { display: grid; grid-template-columns: 140px 1fr; height: 100%; }
.card-horiz-img { overflow: hidden; }
.card-horiz-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card-horiz:hover img { transform: scale(1.05); }

.card-horiz-body { padding: 1rem 1.25rem; display: flex; flex-direction: column; justify-content: center; }
.card-horiz-body time { display: block; margin-bottom: 0.2rem; color: var(--accent); font-weight: 500; }
.card-horiz-body h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.4; }

/* ============ DIVIDER ============ */

.section-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 1rem 0;
}

/* ============ EMPTY STATE ============ */

.empty-state {
  text-align: center; padding: 4rem 1rem;
  color: var(--meta); font-size: 1.1rem; line-height: 2;
}
.empty-state p:first-child { font-size: 3rem; margin-bottom: 0.5rem; }

/* ============ SINGLE POST ============ */
/* ============ POST LAYOUT WITH SIDEBAR ============ */

.post-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.post-layout.has-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2.5rem;
  align-items: start;
}
.post-layout.has-sidebar .post { max-width: none; padding: 2rem 0 3rem; }

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 70px;
  padding-top: 2rem;
  border-right: 2px solid var(--accent);
  padding-right: 1rem;
}
.sidebar-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-posts { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}
.sidebar-item-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.sidebar-item time {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--meta);
}
.sidebar-item:hover .sidebar-item-title { color: var(--accent); }

/* ============ SINGLE POST ============ */

.post { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }

.post-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--accent); }
.post-header h1 { font-size: 2.2rem; font-weight: 900; line-height: 1.4; margin-bottom: 0.5rem; }

.post-meta { font-family: 'Open Sans', sans-serif; color: var(--meta); font-size: 0.9rem; }
.post-meta a { color: var(--accent); text-decoration: none; }
.post-meta a:hover { text-decoration: underline; }

.post-image { margin-bottom: 1.5rem; }
.post-image img { width: 100%; border: 1px solid var(--border); border-radius: 2px; }
.post-image figcaption { font-size: 0.85rem; color: var(--text-light); margin-top: 0.4rem; text-align: center; }

.post-content { font-size: 1.15rem; line-height: 2; }
.post-content p { margin-bottom: 1.25rem; }
.post-content img { margin: 1.5rem 0; border: 1px solid var(--border); border-radius: 2px; }

/* ============ NAVBAR ============ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  overflow: hidden;
}
.navbar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,15,10,0.92) 0%, rgba(20,15,10,0.78) 50%, rgba(20,15,10,0.65) 100%);
  z-index: 0;
}
.navbar-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}
.navbar-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: cover;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
}
.navbar-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.navbar-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.2;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.navbar-btn {
  position: relative;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.navbar-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.hidden-date-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  overflow: hidden;
}

/* Panels */
.navbar-panel {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 1.25rem;
  animation: slideDown 0.15s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-search-form {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.panel-search-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  direction: rtl;
  background: var(--bg);
}
.panel-search-input:focus { outline: none; border-color: var(--accent); }
.panel-search-submit {
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}
.panel-search-submit:hover { opacity: 0.9; }
.panel-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--meta);
  cursor: pointer;
  padding: 0.4rem;
}
.panel-close:hover { color: var(--text); }

.panel-date-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.panel-date-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--meta);
  white-space: nowrap;
}
.panel-date-display {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  min-width: 5rem;
  direction: ltr;
  text-align: center;
}
.panel-date-input {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--bg);
  direction: ltr;
}
.panel-date-input:focus { outline: none; border-color: var(--accent); }
.panel-date-go {
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.panel-date-go:hover { opacity: 0.9; }

/* ============ SEARCH RESULTS PAGE ============ */

.search-page { max-width: var(--max-w); margin: 0 auto; padding: 2rem 1.25rem; }
.search-page-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
.search-query-display { font-family: 'Open Sans', sans-serif; color: var(--meta); margin-bottom: 1.5rem; font-size: 0.9rem; }
.search-no-results { text-align: center; color: var(--meta); font-size: 1.1rem; padding: 3rem 0; }

.search-result-item { margin-bottom: 1.2rem; border-bottom: 1px solid var(--border); padding-bottom: 1.2rem; }
.search-result-link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
  align-items: start;
}
.search-result-img { width: 140px; height: 90px; object-fit: cover; border-radius: 3px; }
.search-result-body time { font-family: 'Open Sans', sans-serif; font-size: 0.75rem; color: var(--meta); }
.search-result-body h3 { font-size: 1.1rem; margin: 0.25rem 0 0.3rem; line-height: 1.4; }
.search-result-body p { font-size: 0.85rem; color: var(--meta); line-height: 1.6; }
.search-result-body mark {
  background: rgba(139,26,26,0.15);
  color: var(--accent);
  font-weight: 700;
  padding: 0 2px;
  border-radius: 2px;
}

/* ============ POST — category label ============ */

.post-category {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ============ POPULAR / MOST READ PAGE ============ */

.popular-page { max-width: var(--max-w); margin: 0 auto; padding: 2rem 1.25rem; }
.popular-page-title { font-size: 1.6rem; margin-bottom: 0.3rem; }
.popular-page-desc { font-family: 'Open Sans', sans-serif; color: var(--meta); font-size: 0.9rem; margin-bottom: 1.5rem; }

.popular-list { display: flex; flex-direction: column; gap: 1rem; }

.popular-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.popular-rank {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  min-width: 2rem;
  text-align: center;
  flex-shrink: 0;
}
.popular-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  flex: 1;
  transition: opacity 0.2s;
}
.popular-link:hover { opacity: 0.8; }
.popular-img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.popular-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.popular-body time {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--meta);
}
.popular-views {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-right: 0.5rem;
}

/* ============ SAME DAY SECTION ============ */

.same-day-section {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding: 2rem 1.25rem;
  border-top: 2px solid var(--accent);
}
.same-day-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.same-day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.same-day-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.same-day-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.same-day-img img { width: 100%; height: 100px; object-fit: cover; }
.same-day-body { padding: 0.7rem; }
.same-day-body time { font-family: 'Open Sans', sans-serif; font-size: 0.7rem; color: var(--meta); }
.same-day-body h3 { font-size: 0.9rem; line-height: 1.4; margin-top: 0.2rem; }

/* ============ INFINITE SCROLL ============ */

.hidden-post { display: none !important; }

.scroll-loader {
  display: flex;
  justify-content: center;
  padding: 2rem;
}
.loader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ FOOTER ============ */

.site-footer {
  text-align: center; padding: 2rem 1rem; margin-top: 2rem;
  border-top: 2px solid var(--border); background: var(--card-bg);
}
.footer-inner { font-family: 'Open Sans', sans-serif; font-size: 0.85rem; color: var(--meta); }
.footer-inner a { color: var(--accent); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
.footer-tagline { margin-top: 0.25rem; font-size: 0.8rem; }

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .hero-link { grid-template-columns: 1fr; }
  .hero-image { min-height: 220px; }
  .hero-content { padding: 1.5rem; }
  .hero-content h2 { font-size: 1.6rem; }

  .row-3col { grid-template-columns: 1fr 1fr; }
  .feature-full-link { grid-template-columns: 1fr; }
  .feature-full-img { height: 220px; }

  .row-1plus2 { grid-template-columns: 1fr; }
  .stack-2 { flex-direction: row; }
  .card-horiz .card-link { grid-template-columns: 120px 1fr; }

  .banner-dark-content { max-width: 70%; padding: 2.5rem; }

  .same-day-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .row-2col { grid-template-columns: 1fr; }
  .row-3col { grid-template-columns: 1fr; }

  .banner-dark { min-height: 260px; }
  .banner-dark-link { min-height: 260px; }
  .banner-dark-content { max-width: 100%; padding: 1.75rem; min-height: 260px; }
  .banner-dark-content h2 { font-size: 1.4rem; }
  .banner-dark-overlay {
    background: linear-gradient(0deg, rgba(15,12,10,0.92) 0%, rgba(15,12,10,0.5) 100%);
  }

  .feature-full-body { padding: 1.5rem; }
  .feature-full-body h2 { font-size: 1.3rem; }

  .stack-2 { flex-direction: column; }

  .post-header h1 { font-size: 1.6rem; }
  .post { padding: 1.5rem 1rem 2rem; }

  .post-layout.has-sidebar {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
    border-right: none;
    border-top: 2px solid var(--accent);
    padding-right: 0;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }

  .navbar-title { font-size: 1rem; }
  .navbar-tagline { display: none; }
  .same-day-grid { grid-template-columns: 1fr; }
  .search-result-link { grid-template-columns: 80px 1fr; }
  .search-result-img { width: 80px; height: 60px; }
  .panel-search-form { flex-wrap: wrap; }
  .panel-date-inner { flex-wrap: wrap; }
}
