/* ===========================================
   CACAO DE ORIGEN — Main Stylesheet
   Aesthetic: Luxury Editorial Chocolate
   =========================================== */

/* ---- Google Fonts: Playfair Display + Lato ---- */
:root {
  --dark:       #1C0D05;
  --brown:      #3D1C02;
  --chocolate:  #6B3A1F;
  --caramel:    #A0612B;
  --gold:       #C9963A;
  --gold-light: #E8C27A;
  --cream:      #FDF8F0;
  --cream-2:    #F5EBD8;
  --cream-3:    #E8D5B7;
  --text:       #2C1810;
  --text-light: #7A5C48;
  --white:      #FFFFFF;
  --font-d:     'Playfair Display', Georgia, serif;
  --font-b:     'Lato', sans-serif;
  --shadow-s:   0 2px 12px rgba(61,28,2,.08);
  --shadow-m:   0 6px 24px rgba(61,28,2,.13);
  --shadow-l:   0 12px 48px rgba(61,28,2,.18);
  --r:          10px;
  --tr:         all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--chocolate); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--gold); }
ul { list-style: none; }

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

/* ---- Typography ---- */
h1,h2,h3,h4 {
  font-family: var(--font-d);
  color: var(--brown);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

/* ---- Topbar ---- */
.topbar {
  background: var(--brown);
  color: var(--cream-3);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-social a {
  color: var(--cream-3);
  margin-left: 1rem;
  font-size: .8rem;
}
.topbar-social a:hover { color: var(--gold-light); }

/* ---- Header ---- */
.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--cream-3);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-s);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .8rem;
  padding-bottom: .8rem;
}
.logo, .footer-logo {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -.5px;
}
.logo:hover { color: var(--chocolate); }
.logo em, .footer-logo em {
  font-style: italic;
  color: var(--gold);
}

/* ---- Navigation ---- */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: 4px;
  transition: var(--tr);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: var(--cream-2);
}
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-m);
  min-width: 200px;
  padding: .5rem;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: .6rem 1rem;
  font-size: .88rem;
  text-transform: none;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--tr);
}

/* ---- Affiliate notice ---- */
.affiliate-notice {
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  padding: .35rem 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--tr);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--dark);
  color: var(--gold-light);
  border-color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
}
.btn-amazon {
  background: #FF9900;
  color: #111;
  font-size: .88rem;
  padding: .65rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
}
.btn-amazon:hover {
  background: #e68a00;
  color: #111;
}
.btn-amazon::before { content: '🛒'; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 50%, var(--chocolate) 100%);
  color: var(--cream);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(201,150,58,.12)"/></svg>') repeat;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,150,58,.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.hero p {
  color: var(--cream-3);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--chocolate), var(--caramel));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-2); }
.section-dark {
  background: var(--brown);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--gold-light); }
.section-dark p { color: var(--cream-3); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Post card */
.post-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}
.post-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.post-card h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  line-height: 1.35;
}
.post-card h3 a { color: var(--brown); }
.post-card h3 a:hover { color: var(--gold); }
.post-card p {
  color: var(--text-light);
  font-size: .9rem;
  flex: 1;
  margin-bottom: 1rem;
}
.post-meta {
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  gap: 1rem;
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 1rem;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-card-img img { max-height: 180px; object-fit: contain; }
.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-card-inner { position: relative; }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1rem; margin-bottom: .5rem; line-height: 1.35; }
.product-card h3 a { color: var(--brown); }
.product-card h3 a:hover { color: var(--gold); }
.product-card p {
  color: var(--text-light);
  font-size: .85rem;
  flex: 1;
  margin-bottom: .75rem;
}
.product-footer { margin-top: auto; }
.product-price {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: .75rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.stars { color: var(--gold); letter-spacing: 1px; }
.star.empty { opacity: .3; }
.rating-count { font-size: .8rem; color: var(--text-light); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--cream-2);
  padding: .75rem 0;
  font-size: .85rem;
  border-bottom: 1px solid var(--cream-3);
}
.breadcrumb ul {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li::after { content: '/'; margin-left: .5rem; color: var(--text-light); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:last-child a,
.breadcrumb li:last-child span { color: var(--brown); font-weight: 700; }

/* ===== BLOG PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--brown), var(--chocolate));
  color: var(--cream);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--cream); margin-bottom: .5rem; }
.page-hero p { color: var(--cream-3); max-width: 600px; margin: 0 auto; }
.page-hero .label { color: var(--gold-light); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}
.sidebar { position: sticky; top: 100px; }
.sidebar-block {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-s);
}
.sidebar-block h4 {
  font-family: var(--font-d);
  color: var(--brown);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--cream-2);
}
.sidebar-block ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  color: var(--text-light);
  font-size: .9rem;
  border-bottom: 1px solid var(--cream-2);
}
.sidebar-block ul li:last-child a { border-bottom: none; }
.sidebar-block ul li a:hover { color: var(--gold); }
.cat-count {
  background: var(--cream-2);
  border-radius: 50px;
  padding: .1rem .5rem;
  font-size: .75rem;
}

/* ===== SINGLE POST ===== */
.post-header {
  background: linear-gradient(135deg, var(--brown), var(--chocolate));
  color: var(--cream);
  padding: 4rem 0 3rem;
}
.post-header h1 { color: var(--cream); margin-bottom: 1rem; }
.post-header .post-meta { color: var(--cream-3); }
.post-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-m);
  margin: -2rem 0 2.5rem;
}
.post-content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}
.post-body { font-size: 1.05rem; line-height: 1.85; }
.post-body h2 { margin: 2.5rem 0 1rem; }
.post-body h3 { margin: 2rem 0 .75rem; }
.post-body p  { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-body li { margin-bottom: .5rem; }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream-2);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--text-light);
}
.post-body img { border-radius: var(--r); margin: 1.5rem 0; }
.post-body a { color: var(--gold); text-decoration: underline; }

/* ===== TIENDA ===== */
.tienda-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  align-items: start;
}
.tienda-filters {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-s);
}
.tienda-filters h4 {
  font-family: var(--font-d);
  color: var(--brown);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--cream-2);
}
.filter-list { display: flex; flex-direction: column; gap: .25rem; }
.filter-list a {
  padding: .5rem .75rem;
  border-radius: 6px;
  color: var(--text-light);
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-list a:hover, .filter-list a.active {
  background: var(--cream-2);
  color: var(--brown);
  font-weight: 700;
}

/* ===== SINGLE PRODUCT ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 0;
  align-items: start;
}
.product-detail-img {
  background: var(--cream-2);
  border-radius: var(--r);
  padding: 2rem;
  text-align: center;
  font-size: 8rem;
}
.product-detail-img img { margin: 0 auto; max-height: 340px; object-fit: contain; }
.product-detail-body h1 { font-size: 2rem; margin-bottom: .75rem; }
.product-rating-detail { font-size: 1rem; margin-bottom: 1rem; }
.product-price-detail {
  font-family: var(--font-d);
  font-size: 2.5rem;
  color: var(--chocolate);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.product-desc { color: var(--text-light); margin-bottom: 1.5rem; }
.amazon-box {
  background: var(--cream-2);
  border: 2px solid var(--cream-3);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
}
.amazon-box p { font-size: .85rem; color: var(--text-light); margin-top: .75rem; margin-bottom: 0; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; padding: 2.5rem 0 .5rem; }
.pagination ul { display: flex; gap: .35rem; }
.pagination li a, .pagination li.active a {
  display: block;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--cream-3);
}
.pagination li.active a {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.pagination li a:hover { background: var(--cream-2); }

/* ===== ABOUT STRIP ===== */
.about-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  background: var(--brown);
  color: var(--cream);
}
.about-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.about-item:last-child { border-right: none; }
.about-item .icon { font-size: 2.5rem; margin-bottom: .75rem; }
.about-item h4 { color: var(--gold-light); margin-bottom: .5rem; }
.about-item p { font-size: .88rem; color: var(--cream-3); margin: 0; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--chocolate), var(--caramel));
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-text h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: .5rem; }
.newsletter-text p  { color: var(--cream-3); margin: 0; }
.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter-form input {
  padding: .75rem 1.25rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: .95rem;
  min-width: 280px;
  outline: none;
}
.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--tr);
}
.newsletter-form button:hover { background: var(--dark); color: var(--gold-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--cream-3);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: .75rem; }
.footer-logo { font-size: 1.5rem; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-d);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; margin: .25rem 0; }
.affiliate-footer { max-width: 700px; margin: .5rem auto 0 !important; font-size: .75rem !important; line-height: 1.6 !important; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 500px;
  background: var(--dark);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  box-shadow: var(--shadow-l);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  font-size: .88rem;
}
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-size: .85rem;
}

/* ===== MISC COMPONENTS ===== */
.category-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pill {
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  background: var(--white);
  color: var(--text-light);
  border: 1px solid var(--cream-3);
  cursor: pointer;
  transition: var(--tr);
}
.pill:hover, .pill.active {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r);
  margin-bottom: 1rem;
  font-size: .92rem;
}
.alert-info  { background: #e8f4fd; border-left: 4px solid #3498db; color: #1a5276; }
.alert-warn  { background: #fef9e7; border-left: 4px solid var(--gold); color: #7D6608; }
.alert-gold  { background: var(--cream-2); border-left: 4px solid var(--gold); color: var(--brown); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 2px solid var(--cream-3);
    box-shadow: var(--shadow-m);
    padding: 1rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: .75rem 1rem; }
  .dropdown { position: static; box-shadow: none; padding-left: 1rem; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .blog-layout, .post-content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .tienda-layout { grid-template-columns: 1fr; }
  .tienda-filters { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
  .newsletter-form input { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}
