.lo-blog-list,
.lo-blog-list *,
.lo-blog-list *::before,
.lo-blog-list *::after {
  box-sizing: border-box;
}

.lo-blog-list {
  background: #fff7f4;
  color: #1a1a1a;
  overflow-x: hidden;
}

.lo-blog-list a {
  color: inherit;
  text-decoration: none;
}

.lo-blog-list img {
  display: block;
  max-width: 100%;
  height: auto;
}

.lo-blog-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8a7a 0%, #f5675a 45%, #e84c3d 100%);
  color: #fff;
}

.lo-blog-hero::before,
.lo-blog-hero::after {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  content: "";
}

.lo-blog-hero::before {
  top: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,.2);
}

.lo-blog-hero::after {
  right: 40px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  background: rgba(255,177,153,.4);
}

.lo-blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .07;
  pointer-events: none;
}

.lo-blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}

.lo-blog-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.4;
}

.lo-blog-crumb a:hover {
  color: #fff;
}

.lo-blog-crumb .sep {
  opacity: .6;
}

.lo-blog-eyebrow-wrap {
  position: relative;
  display: inline-block;
  margin-top: 28px;
}

.lo-blog-eyebrow-wrap::before {
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: rgba(255,255,255,.3);
  filter: blur(8px);
  content: "";
}

.lo-blog-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 9999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 20px -5px rgba(0,0,0,.2), inset 0 0 0 2px rgba(255,255,255,.7);
  color: #e84c3d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.lo-blog-eyebrow svg {
  width: 14px;
  height: 14px;
  fill: #e84c3d;
}

.lo-blog-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}

.lo-blog-title {
  max-width: 780px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .95;
}

.lo-blog-title .accent {
  position: relative;
  display: inline-block;
  font-style: italic;
}

.lo-blog-title .accent::after {
  position: absolute;
  right: 0;
  bottom: .1em;
  left: 0;
  z-index: -1;
  height: .35em;
  border-radius: 9999px;
  background: rgba(255,255,255,.3);
  content: "";
}

.lo-blog-lede {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.55;
}

.lo-blog-stats {
  display: flex;
  gap: 16px;
}

.lo-blog-stat {
  min-width: 108px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  text-align: center;
}

.lo-blog-stat .num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.lo-blog-stat .lbl {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .2em;
  opacity: .85;
  text-transform: uppercase;
}

.lo-blog-filter-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #f3e2dc;
  background: #fff;
}

.lo-blog-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  scrollbar-width: none;
}

.lo-blog-filter::-webkit-scrollbar {
  display: none;
}

.lo-blog-chip {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid transparent;
  border-radius: 9999px;
  background: #fbeae4;
  color: #5a3a32;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: background .2s ease, color .2s ease;
}

.lo-blog-chip:hover {
  background: #f7d8cf;
  color: #5a3a32;
}

.lo-blog-chip.active {
  background: #1a1a1a;
  color: #fff;
}

.lo-blog-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.lo-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid #f3e2dc;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px -20px rgba(232,76,61,.18);
}

.lo-featured-media {
  position: relative;
  min-height: 360px;
  background: linear-gradient(135deg, #ffd9c9, #ffb8a3 60%, #f5675a);
}

.lo-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lo-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: #ffd84a;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.25);
  color: #5a3700;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.lo-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.lo-blog-tag {
  color: #e84c3d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lo-featured-body h2 {
  margin: 10px 0 13px;
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.lo-featured-body p {
  margin: 0 0 20px;
  color: #6b5550;
  font-size: 15px;
  line-height: 1.55;
}

.lo-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: #8a7068;
  font-size: 13px;
  line-height: 1.3;
}

.lo-blog-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e84c3d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.lo-blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  color: #e84c3d;
  font-size: 14px;
  font-weight: 700;
  transition: gap .2s ease;
}

.lo-blog-read-link:hover {
  gap: 10px;
  color: #e84c3d;
}

.lo-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lo-post-card {
  overflow: hidden;
  border: 1px solid #f3e2dc;
  border-radius: 20px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.lo-post-card:hover {
  box-shadow: 0 18px 40px -18px rgba(232,76,61,.25);
  transform: translateY(-4px);
}

.lo-post-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #fbeae4, #f7d8cf);
  color: #c89687;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lo-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.lo-post-card:hover .lo-post-thumb img {
  transform: scale(1.04);
}

.lo-post-body {
  padding: 18px 20px 22px;
}

.lo-post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 10px;
  color: #1a1a1a;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lo-post-card:hover h3 {
  color: #e84c3d;
}

.lo-post-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: #6b5550;
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lo-blog-list .navigation.pagination {
  margin-top: 40px;
  text-align: center;
}

.lo-blog-list .navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.lo-blog-list .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #f3e2dc;
  border-radius: 9999px;
  background: #fff;
  color: #5a3a32;
  font-size: 14px;
  font-weight: 700;
}

.lo-blog-list .navigation.pagination .current,
.lo-blog-list .navigation.pagination .page-numbers:hover {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

.lo-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lo-blog-sidebar .lo-sb-block {
  margin: 0;
  padding: 20px;
  border: 1px solid #f3e2dc;
  border-radius: 20px;
  background: #fff;
}

.lo-blog-sidebar .lo-sb-title,
.lo-blog-sidebar .lo-cta-card h4 {
  margin: 0 0 16px;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lo-sidebar-search {
  position: relative;
}

.lo-sidebar-search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  display: flex;
  color: #c89687;
  pointer-events: none;
  transform: translateY(-50%);
}

.lo-sidebar-search-icon svg {
  width: 16px;
  height: 16px;
}

.lo-sidebar-search input[type="search"] {
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin: 0 !important;
  padding: 0 16px 0 40px !important;
  border: 1px solid #f3e2dc !important;
  border-radius: 9999px !important;
  background: #fff7f4 !important;
  box-shadow: none !important;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 44px;
  outline: none;
}

.lo-sidebar-search input[type="search"]:focus {
  border-color: #e84c3d !important;
  background: #fff !important;
}

.lo-sidebar-search-submit {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.lo-blog-sidebar .lo-cats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lo-blog-sidebar .lo-cats li {
  margin: 0;
  border-bottom: 1px dashed #f3e2dc;
}

.lo-blog-sidebar .lo-cats li:last-child {
  border-bottom: 0;
}

.lo-blog-sidebar .lo-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  color: #3a2722;
  font-size: 14px;
}

.lo-blog-sidebar .lo-cats a:hover {
  color: #e84c3d;
}

.lo-blog-sidebar .lo-cats .ct {
  color: #a87f74;
  font-size: 12px;
  font-weight: 600;
}

.lo-recent {
  display: flex;
  gap: 12px;
  padding: 0 0 13px;
  border-bottom: 0;
}

.lo-recent + .lo-recent {
  padding-top: 13px;
}

.lo-recent .t {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd9c9, #f5675a);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.lo-recent .t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lo-recent .info b {
  display: -webkit-box;
  overflow: hidden;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lo-recent:hover .info b {
  color: #e84c3d;
}

.lo-recent .info small {
  display: block;
  margin-top: 4px;
  color: #a87f74;
  font-size: 12px;
}

.lo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lo-tags a {
  padding: 6px 13px;
  border: 0;
  border-radius: 9999px;
  background: #fbeae4;
  color: #5a3a32;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.lo-tags a:hover {
  background: #e84c3d;
  color: #fff;
}

.lo-blog-sidebar .lo-sb-block:has(.lo-cta-card) {
  padding: 0;
  border: 0;
  background: transparent;
}

.lo-cta-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #fff;
}

.lo-blog-sidebar .lo-cta-card h4 {
  color: #fff !important;
}

.lo-cta-card p {
  margin: 0 0 16px;
  color: #bdb4b1;
  font-size: 13px;
  line-height: 1.5;
}

.lo-cta-card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 9999px;
  background: #e84c3d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease;
}

.lo-cta-card .btn:hover {
  background: #f5675a;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .lo-blog-list *,
  .lo-blog-list *::before,
  .lo-blog-list *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 960px) {
  .lo-blog-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lo-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lo-blog-hero-inner {
    padding: 36px 18px 42px;
  }

  .lo-blog-title {
    font-size: 42px;
  }

  .lo-blog-stats {
    width: 100%;
  }

  .lo-blog-stat {
    flex: 1 1 0;
  }

  .lo-blog-filter {
    padding: 14px 18px;
  }

  .lo-blog-container {
    padding: 32px 18px 48px;
  }

  .lo-post-grid {
    grid-template-columns: 1fr;
  }

  .lo-featured-body {
    padding: 24px;
  }

  .lo-featured-body h2 {
    font-size: 25px;
  }
}

@media (max-width: 640px) {
  .lo-blog-hero-inner,
  .lo-blog-container {
    width: 100%;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .lo-blog-filter {
    width: 100%;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .lo-blog-title,
  .lo-blog-lede,
  .lo-featured,
  .lo-post-card,
  .lo-blog-sidebar {
    max-width: 100%;
  }

  .lo-blog-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lo-blog-stat {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .lo-featured-media {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .lo-blog-hero-inner,
  .lo-blog-container,
  .lo-blog-filter {
    margin-right: 0;
    margin-left: 0;
  }
}
