/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333; background: #f5f7fa; line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --primary: #1aad8c;
  --primary-light: #e8f8f3;
  --primary-dark: #15896e;
  --accent: #ff8c42;
  --accent-light: #fff3eb;
  --text: #2c3e50;
  --text-light: #5a6d7e;
  --text-muted: #97a5b2;
  --bg: #f5f7fa;
  --white: #fff;
  --border: #e4e9ef;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 30px rgba(26,173,140,.15);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
}

/* ========== SVG Icon ========== */
.icon {
  display: inline-block; width: 16px; height: 16px; vertical-align: -2px;
  flex-shrink: 0;
}
.icon-sm { width: 14px; height: 14px; vertical-align: -1px; }
.icon-md { width: 20px; height: 20px; vertical-align: -3px; }
.icon-lg { width: 28px; height: 28px; vertical-align: -6px; }
.icon-xl { width: 36px; height: 36px; vertical-align: -8px; }

/* ========== Header ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.94); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 700; color: var(--primary); }
.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), #2dd4a8);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon .icon { color: #fff; width: 18px; height: 18px; vertical-align: 0; }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px; color: var(--text-light); padding: 6px 14px;
  border-radius: 20px; transition: all .25s; font-weight: 500; position: relative;
}
.nav a:hover { color: var(--primary); background: var(--primary-light); }
.nav a.active {
  color: var(--white); background: linear-gradient(135deg, var(--primary), #2dd4a8);
  font-weight: 600; box-shadow: 0 2px 8px rgba(26,173,140,.3);
}
.nav a.active:hover { color: var(--white); }

.header-right { display: flex; align-items: center; gap: 8px; }

/* Auth dropdown */
.auth-wrap { position: relative; }
.auth-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 14px; background: var(--bg); border-radius: 20px;
  font-size: 13px; color: var(--text-light); cursor: pointer; transition: all .25s;
  border: 1px solid transparent;
}
.auth-btn:hover { background: var(--white); border-color: var(--border); color: var(--primary); }
.auth-btn .icon { opacity: .6; }
.auth-btn:hover .icon { opacity: 1; }
.auth-btn .arrow { font-size: 10px; transition: transform .25s; margin-left: 2px; }
.auth-wrap:hover .auth-btn { background: var(--white); border-color: var(--border); color: var(--primary); }
.auth-wrap:hover .auth-btn .arrow { transform: rotate(180deg); }
.auth-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 6px 0; min-width: 150px;
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.96); transition: all .2s;
  border: 1px solid rgba(0,0,0,.04);
}
.auth-wrap:hover .auth-dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.auth-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; font-size: 13px; color: var(--text-light); transition: all .15s;
}
.auth-dropdown a .icon { opacity: .45; }
.auth-dropdown a:hover { background: var(--primary-light); color: var(--primary); padding-left: 20px; }
.auth-dropdown a:hover .icon { opacity: 1; color: var(--primary); }
.auth-dropdown #iflogin li{list-style-type: none;}
/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  transition: all .25s; cursor: pointer; border: none; white-space: nowrap;
}
.btn .icon { width: 14px; height: 14px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #2dd4a8); color: var(--white); }
.btn-primary:hover { box-shadow: 0 4px 14px rgba(26,173,140,.3); transform: translateY(-1px); }
.btn-mall { background: var(--primary-light); color: var(--primary); }
.btn-mall:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #ffa366); color: var(--white); }
.btn-accent:hover { box-shadow: 0 4px 14px rgba(255,140,66,.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== Banner ========== */
.banner {
  margin-top: 58px; position: relative; height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0b6e55 0%, #1aad8c 35%, #3de8c0 70%, #a8f5e0 100%);
}
.banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.banner-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
.banner-content h1 { font-size: 38px; font-weight: 700; margin-bottom: 14px; text-shadow: 0 2px 10px rgba(0,0,0,.1); }
.banner-content p { font-size: 16px; opacity: .9; margin-bottom: 28px; }
.banner-actions { display: flex; gap: 14px; justify-content: center; }
.banner-actions .btn { padding: 10px 28px; font-size: 14px; border-radius: 22px; }
.banner-deco { position: absolute; border-radius: 50%; z-index: 0; background: rgba(255,255,255,.06); }
.banner-deco-1 { width: 340px; height: 340px; top: -100px; right: -80px; }
.banner-deco-2 { width: 220px; height: 220px; bottom: -60px; left: -50px; }
.banner-deco-3 { width: 100px; height: 100px; top: 25%; left: 8%; }

/* ========== Section ========== */
.section { padding: 72px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.section-header p { font-size: 15px; color: var(--text-muted); }
.section-header .line { width: 40px; height: 3px; border-radius: 2px; margin: 14px auto 0; background: linear-gradient(90deg, var(--primary), #2dd4a8); }

/* ========== Route Cards ========== */
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; height: auto; overflow: hidden; position: relative;
}
.route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.route-card-img {
  width: 100%; height: 250px; overflow: hidden; position: relative; flex-shrink: 0;
}
.route-card-img img { width: 100%; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.route-card:hover .route-card-img img { transform: scale(1.08); }
.route-card-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  color: var(--primary); padding: 3px 10px; border-radius: 10px;
  font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 3px;
}
.route-card-tag .icon { width: 12px; height: 12px; }
.route-card-body { padding: 12px 16px 14px; flex: 1; display: flex; flex-direction: column; }
.route-card-title {
  font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.55;
  height: 46px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px;
}
.route-card-desc {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
  height: 38px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px;
}
.route-card-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
}
.route-card-meta span { display: flex; align-items: center; gap: 4px; }
.route-card-meta .icon { width: 13px; height: 13px; opacity: .5; }
.route-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; margin-top: auto; border-top: 1px dashed var(--border);
}
.route-card-price { color: var(--accent); font-weight: 700; font-size: 18px; }
.route-card-price small { font-size: 11px; font-weight: 400; color: var(--text-muted); margin-left: 2px; }
.route-card-bottom .btn-outline { padding: 4px 14px; font-size: 12px; border-radius: 14px; }

/* ========== About ========== */
.about-section { background: var(--white); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; height: 360px; }
.about-visual-card {
  position: absolute; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
.about-visual-card:nth-child(1) { width: 300px; height: 230px; top: 10px; left: 0; z-index: 1; }
.about-visual-card:nth-child(1) img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-card:nth-child(2) { width: 210px; height: 160px; bottom: 0; right: 0; z-index: 2; }
.about-visual-card:nth-child(2) img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-card:nth-child(3) {
  width: 90px; height: 90px; top: 0; right: 50px; z-index: 3; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2dd4a8);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-card:nth-child(3) .icon { width: 36px; height: 36px; color: #fff; }
.about-text h3 { font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.about-text p { font-size: 14px; color: var(--text-light); line-height: 1.85; margin-bottom: 12px; }
.about-text .btn { margin-top: 12px; }

/* ========== Advantages ========== */
.adv-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.adv-item {
  display: flex; gap: 18px; padding: 24px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: all .3s; position: relative; overflow: hidden;
}
.adv-item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  border-radius: 0 2px 2px 0; transform: scaleY(0); transition: transform .3s; transform-origin: top;
}
.adv-item:hover::before { transform: scaleY(1); }
.adv-item:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); }
/*
.adv-item:nth-child(2)::before { background: linear-gradient(180deg, var(--accent), #ffb57a); }
.adv-item:nth-child(3)::before { background: linear-gradient(180deg, #667eea, #764ba2); }
.adv-item:nth-child(4)::before { background: linear-gradient(180deg, #f093fb, #f5576c); }
*/
.adv-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
}
.adv-icon-wrap .icon { width: 26px; height: 26px; color: var(--primary); }
.adv-item:nth-child(2) .adv-icon-wrap { background: var(--accent-light); }
.adv-item:nth-child(2) .adv-icon-wrap .icon { color: var(--accent); }
.adv-item:nth-child(3) .adv-icon-wrap { background: #eef0ff; }
.adv-item:nth-child(3) .adv-icon-wrap .icon { color: #667eea; }
.adv-item:nth-child(4) .adv-icon-wrap { background: #fce8f4; }
.adv-item:nth-child(4) .adv-icon-wrap .icon { color: #e84393; }
.adv-item h4 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.adv-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ========== Guide ========== */
.guide-section { background: var(--white); }
.guide-wrap { display: flex; align-items: flex-start; position: relative; justify-content: center; }
.guide-step { flex: 1; text-align: center; padding: 28px 20px; position: relative; }
.guide-step-num {
  width: 52px; height: 52px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), #2dd4a8);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.guide-step-num .icon { width: 24px; height: 24px; color: #fff; }
.guide-step h4 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.guide-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.guide-line {
  position: absolute; top: 54px; left: calc(16.67% + 26px); right: calc(16.67% + 26px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 6px, transparent 6px, transparent 12px);
}

/* ========== CTA ========== */
.cta-section { background: linear-gradient(135deg, #0b6e55, #1aad8c 50%, #3de8c0); text-align: center; color: #fff; }
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-section p { font-size: 15px; opacity: .9; margin-bottom: 24px; }
.cta-section .btn { padding: 10px 30px; font-size: 15px; background: var(--white); color: var(--primary); border-radius: 22px; }
.cta-section .btn:hover { box-shadow: 0 4px 16px rgba(255,255,255,.3); }

/* ========== Footer ========== */
.footer { background: #1a2332; color: rgba(255,255,255,.6); padding: 48px 24px 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 28px; }
.footer-brand h3 { color: #fff; font-size: 18px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-brand h3 .icon { width: 20px; height: 20px; color: #3de8c0; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
.footer-contact { font-size: 13px; line-height: 2; }
.footer-contact span { display: flex; align-items: center; gap: 6px; }
.footer-contact .icon { width: 14px; height: 14px; opacity: .5; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.5); padding: 3px 0; transition: color .2s; }
.footer-col a:hover { color: #3de8c0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; margin-top: 8px;
  text-align: center; font-size: 12px; color: rgba(255,255,255,.3); line-height: 2;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: #3de8c0; }

/* ========== Back to Top ========== */
.back-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,173,140,.3); }
.back-top .icon { width: 20px; height: 20px; color: var(--text-light); transition: color .2s; }
.back-top:hover .icon { color: #fff; }

/* ========== List Page ========== */
.list-banner {
  margin-top: 58px; height: 180px;
  background: linear-gradient(135deg, #0b6e55, #1aad8c, #3de8c0);
  display: flex; align-items: center; justify-content: center; color: #fff; text-align: center;
}
.list-banner h1 { font-size: 30px; font-weight: 700; }
.list-banner p { font-size: 15px; opacity: .9; margin-top: 6px; }

.list-layout {
  max-width: var(--max-width); margin: 0 auto; padding: 24px;
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
}
.list-sidebar {
  position: sticky; top: 74px; align-self: start;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px;
}
.list-sidebar h3 {
  font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.list-sidebar h3 .icon { width: 16px; height: 16px; color: var(--primary); }
.filter-group { margin-bottom: 16px; }
.filter-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.filter-group select {
  width: 100%; padding: 7px 10px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px; color: var(--text);
  background: var(--white); outline: none; cursor: pointer; transition: border-color .2s;
}
.filter-group select:focus { border-color: var(--primary); }
.filter-search input {
  width: 100%; padding: 8px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px; outline: none; margin-bottom: 8px; transition: border-color .2s;
}
.filter-search input:focus { border-color: var(--primary); }
.filter-search .btn { width: 100%; justify-content: center; }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.pagination a {
  display: flex; align-items: center; justify-content: center;
  width: auto; height: 34px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); font-size: 13px; color: var(--text); transition: all .2s;padding: 0 14px;
}
.pagination a:hover, .pagination a.current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== Detail Page ========== */
.detail-banner {
  margin-top: 58px; height: 200px;
  background: linear-gradient(135deg, #0b6e55, #1aad8c, #3de8c0);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.detail-banner h1 { font-size: 26px; font-weight: 700; }

.detail-content {
  max-width: var(--max-width); margin: -30px auto 48px; padding: 0 24px; position: relative; z-index: 2;
}
.detail-main { display: grid; grid-template-columns: 1fr 310px; gap: 20px; }
.detail-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px;
}
.detail-card + .detail-card { margin-top: 16px; }

/* Gallery */
.detail-gallery { margin-bottom: 20px; }
.gallery-main {
  width: 100%; height: auto;max-height: 570px;min-height: 480px; border-radius: var(--radius); overflow: hidden; margin-bottom: 10px;
  background: #f0f2f5;
}
.gallery-main img { width: 100%; height: 100%;  transition: opacity .3s; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 68px; height: 50px; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: all .2s; flex-shrink: 0;
  background: #f0f2f5;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { border-color: var(--primary-light); }
.gallery-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(26,173,140,.2); }

.detail-title { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.detail-meta {
  display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; color: var(--text-light);
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.detail-meta span { display: flex; align-items: center; gap: 5px; }
.detail-meta .icon { width: 14px; height: 14px; opacity: .5; }
.detail-body h3 { font-size: 17px; font-weight: 600; margin: 20px 0 10px; color: var(--text); }
.detail-body p { font-size: 14px; color: var(--text-light); line-height: 1.85; margin-bottom: 10px; }
.detail-body ul { padding-left: 18px; margin-bottom: 10px; }
.detail-body ul li { font-size: 13px; color: var(--text-light); line-height: 1.85; list-style: disc; }

/* Sidebar */
.detail-sidebar .detail-card { position: sticky; top: 76px; }
.sidebar-price { font-size: 26px; font-weight: 700; color: var(--accent); margin-bottom: 18px; }
.sidebar-price small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.sidebar-info { margin-bottom: 18px; }
.sidebar-info .sidebar-info-row .yxq font {color: #1aad8c;font-weight: 700;}
.sidebar-info-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; font-size: 13px; border-bottom: 1px solid var(--border);
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-label { color: var(--text-muted); }
.sidebar-info-value { color: var(--text); font-weight: 500; }
.sidebar-actions { display: flex; flex-direction: column; gap: 8px; }
.sidebar-actions .btn {
  padding: 10px 16px; font-size: 14px; justify-content: center; border-radius: var(--radius-sm);
}
.btn-phone { background: linear-gradient(135deg, var(--accent), #ffa366); color: #fff; }
.btn-phone:hover { box-shadow: 0 4px 14px rgba(255,140,66,.35); }
.btn-collect { background: var(--primary-light); color: var(--primary); }
.btn-collect:hover { background: var(--primary); color: #fff; }

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-main { grid-template-columns: 1fr; }
  .list-layout { grid-template-columns: 1fr; }
  .list-sidebar { position: static; }
}
