:root {
  --lp-primary: #c91f11;
  --lp-bg: #ffffff;
  --lp-text: #151515;
  --lp-headline: #171717;
  --lp-muted: #686868;
  --lp-soft: #f5f5f5;
  --lp-border: #e6e6e6;
  --lp-card: #ffffff;
  --lp-breaking: #b61b10;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--lp-bg);
}

body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.lp-container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.lp-error,
.lp-empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 2px dashed var(--lp-border);
  color: var(--lp-muted);
  text-align: center;
}

.lp-loading {
  display: grid;
  min-height: 55vh;
  place-items: center;
  background: #fff;
}

.lp-loader {
  position: relative;
  width: 34px;
  height: 34px;
  border: 3px solid color-mix(in srgb, var(--lp-primary) 13%, #ededed);
  border-top-color: var(--lp-primary);
  border-radius: 999px;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--lp-primary) 8%, transparent);
  animation: lp-spin .72s linear infinite;
}

.lp-loader::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: var(--lp-primary);
  opacity: .12;
}

@keyframes lp-spin {
  to {
    transform: rotate(360deg);
  }
}

.lp-page-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  background: var(--lp-bg);
  opacity: 1;
  transition: opacity .18s ease, visibility .18s ease;
}

.lp-page-loader.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.lp-error {
  min-height: 100vh;
  padding: 32px;
}

.lp-site-header {
  border-bottom: 1px solid var(--lp-border);
  background: #fff;
}

.lp-topbar {
  background: var(--lp-primary);
  color: #fff;
}

.lp-topbar-inner {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.lp-menu-btn,
.lp-drawer-close,
.lp-search button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lp-menu-btn {
  display: flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lp-menu-btn span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.lp-topbar-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.lp-compact-brand,
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lp-compact-brand {
  flex: 0 0 auto;
}

.lp-compact-brand strong {
  max-width: 210px;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-logo {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  color: var(--lp-primary);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.lp-logo.mini {
  width: 42px;
  height: 42px;
  font-size: 16px;
}

.lp-footer-brand .lp-logo {
  background: var(--lp-primary);
  color: #fff;
}

.lp-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.lp-topbar-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lp-search {
  display: flex;
  width: min(230px, 22vw);
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
}

.lp-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 0 0 13px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 13px;
}

.lp-search input::placeholder {
  color: rgba(255, 255, 255, .74);
}

.lp-search button {
  display: grid;
  width: 38px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
}

.lp-search svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lp-socials {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.lp-social-btn {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transition: transform .16s ease, background .16s ease;
}

.lp-social-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.lp-social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .2);
}

.lp-social-btn.facebook {
  background: rgba(255, 255, 255, .12);
}

.lp-social-btn.instagram {
  background: rgba(255, 255, 255, .12);
}

.lp-social-btn.youtube {
  background: rgba(255, 255, 255, .12);
}

.lp-social-btn.tiktok {
  background: rgba(255, 255, 255, .12);
}

.lp-social-btn.whatsapp {
  background: rgba(255, 255, 255, .12);
}

.lp-social-btn.x {
  background: rgba(255, 255, 255, .12);
}

.lp-nav {
  border-top: 0;
  border-bottom: 1px solid var(--lp-border);
  background: #fff;
}

.lp-nav .lp-container {
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow-x: auto;
  padding: 13px 0;
}

.lp-nav a {
  color: #595959;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .18s ease;
}

.lp-nav a:hover {
  color: var(--lp-primary);
}

.lp-drawer[hidden] {
  display: none;
}

.lp-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.lp-drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .48);
}

.lp-drawer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(380px, 88vw);
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: #fff;
  box-shadow: 18px 0 45px rgba(0, 0, 0, .18);
}

.lp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--lp-primary);
  color: #fff;
}

.lp-drawer-close {
  width: 36px;
  height: 36px;
  font-size: 30px;
  line-height: 1;
}

.lp-drawer-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.lp-search-drawer {
  width: auto;
  margin: 18px;
  border-color: var(--lp-border);
  background: var(--lp-soft);
  color: var(--lp-text);
}

.lp-search-drawer input,
.lp-search-drawer button {
  color: var(--lp-text);
}

.lp-search-drawer input::placeholder {
  color: var(--lp-muted);
}

.lp-drawer-nav {
  display: grid;
  flex: 0 0 auto;
  padding: 0 18px 18px;
}

.lp-drawer-nav a {
  border-bottom: 1px solid var(--lp-border);
  padding: 14px 0;
  color: var(--lp-headline);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lp-drawer-footer {
  flex: 0 0 auto;
  background: #fff;
}

.lp-drawer-footer:empty {
  display: none;
}

.lp-socials-drawer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  padding: 18px 18px 24px;
  border-top: 1px solid var(--lp-border);
}

.lp-socials-drawer .lp-social-btn {
  width: 42px;
  height: 42px;
  border-color: color-mix(in srgb, var(--lp-primary) 34%, #d6d6d6);
  background: color-mix(in srgb, var(--lp-primary) 9%, #ffffff);
  color: var(--lp-primary);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
}

.lp-socials-drawer .lp-social-btn svg {
  width: 20px;
  height: 20px;
}

.lp-socials-drawer .lp-social-btn:hover {
  border-color: var(--lp-primary);
  background: var(--lp-primary);
  color: #fff;
}

body.lp-menu-open {
  overflow: hidden;
}

.lp-breaking-bar {
  display: block;
  background: var(--lp-breaking);
  color: #fff;
}

.lp-breaking-bar .lp-container {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.lp-breaking-bar span {
  background: #fff;
  color: var(--lp-breaking);
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lp-breaking-bar strong {
  font-size: 14px;
  line-height: 1.3;
}

.lp-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 34px 0 20px;
}

.lp-lead-column {
  min-width: 0;
}

.lp-featured-story {
  display: block;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-featured-image {
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--lp-soft);
}

.lp-featured-image img,
.lp-card-image img,
.lp-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-featured-image img,
.lp-card-image img {
  transition: transform .28s ease, filter .28s ease;
}

.lp-featured-story h1 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--lp-headline);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
}

.lp-featured-story p {
  max-width: 740px;
  margin: 13px 0 0;
  color: var(--lp-muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-featured-story time,
.lp-card time {
  display: block;
  margin-top: 10px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 700;
}

.lp-kicker-outline {
  display: inline-flex;
  min-height: 14px;
  margin-bottom: 5px;
  color: var(--lp-primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lp-kicker-empty {
  visibility: hidden;
}

.lp-secondary-grid,
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.lp-secondary-grid {
  padding-top: 24px;
}

.lp-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  height: 100%;
  background: #fff;
  cursor: pointer;
}

.lp-card-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--lp-soft);
}

.lp-card-placeholder {
  border: 1px dashed var(--lp-border);
}

.lp-card h3 {
  margin: 0;
  color: var(--lp-headline);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  transition: color .18s ease;
}

.lp-card:hover h3,
.lp-featured-story:hover h1,
.lp-most-read a:hover {
  color: var(--lp-primary);
}

.lp-card:hover .lp-card-image img,
.lp-featured-story:hover .lp-featured-image img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.lp-card-body {
  display: grid;
  align-content: start;
}

.lp-card p {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lp-card-compact h3 {
  font-size: 18px;
}

.lp-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
}

.lp-most-read {
  border-top: 4px solid var(--lp-primary);
  padding-top: 12px;
}

.lp-most-read h2 {
  margin: 0 0 14px;
  color: var(--lp-headline);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lp-most-read ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-most-read li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--lp-border);
  padding-bottom: 14px;
}

.lp-most-read span {
  color: var(--lp-primary);
  font-size: 32px;
  font-weight: 950;
  line-height: .95;
}

.lp-most-read a {
  color: var(--lp-headline);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.lp-section {
  padding: 34px 0 46px;
}

.lp-section-title {
  margin: 0 0 22px;
  border-left: 5px solid var(--lp-primary);
  padding-left: 12px;
  color: var(--lp-headline);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
}

.lp-banner {
  position: relative;
  width: 100%;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  background: var(--lp-soft);
}

.lp-banner-header,
.lp-banner-home_top,
.lp-banner-home_middle,
.lp-banner-home_bottom,
.lp-banner-article_top,
.lp-banner-article_bottom,
.lp-banner-page-top {
  aspect-ratio: 970 / 150;
}

.lp-banner-sidebar,
.lp-sidebar-ad {
  aspect-ratio: 1 / 1;
}

.lp-banner span {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lp-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-banner-slider .lp-banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.lp-banner-slide {
  display: none;
}

.lp-banner-slide.active {
  display: block;
  width: 100%;
  height: 100%;
  animation: lp-banner-fade .35s ease;
}

.lp-banner-slide a,
.lp-banner > a {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes lp-banner-fade {
  from { opacity: .25; }
  to { opacity: 1; }
}

.lp-sidebar-ad {
  margin-top: 0;
}

.lp-sidebar-ad img {
  max-height: none;
}

.lp-category-header {
  margin-bottom: 24px;
  border-bottom: 4px solid var(--lp-primary);
  padding-bottom: 15px;
}

.lp-category-header h1 {
  margin: 0;
  color: var(--lp-primary);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-article {
  width: min(820px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 42px 0 50px;
}

.lp-article h1 {
  margin: 8px 0 0;
  color: var(--lp-headline);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.lp-subtitle {
  margin: 16px 0 0;
  color: var(--lp-muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.lp-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid var(--lp-border);
  padding-bottom: 18px;
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 700;
}

.lp-share {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0 28px;
}

.lp-share span {
  margin-right: 4px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lp-share-btn {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 26px -16px currentColor;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.lp-share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lp-share-btn.facebook {
  background: #1877f2;
  color: #fff;
}

.lp-share-btn.x {
  background: #000;
  color: #fff;
}

.lp-share-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.lp-share-btn.native {
  background: var(--lp-primary);
  color: #fff;
}

.lp-share-btn:hover {
  transform: translateY(-2px) scale(1.04);
  filter: saturate(1.12);
  box-shadow: 0 18px 34px -18px currentColor;
}

.lp-share-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, currentColor 35%, transparent);
  outline-offset: 3px;
}

.lp-article figure {
  margin: 26px 0;
  overflow: visible;
  background: transparent;
}

.lp-article figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--lp-soft);
}

.lp-article figcaption {
  margin-top: 7px;
  color: var(--lp-muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
}

.lp-content {
  color: #2f2f2f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.78;
}

.lp-content p {
  margin: 0 0 24px;
}

.lp-content h2,
.lp-content h3,
.lp-content h4 {
  margin: 34px 0 14px;
  color: var(--lp-headline);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 950;
  line-height: 1.15;
}

.lp-content h2 {
  font-size: 30px;
}

.lp-content h3 {
  font-size: 24px;
}

.lp-content ul,
.lp-content ol {
  margin: 0 0 24px;
  padding-left: 26px;
}

.lp-content li {
  margin-bottom: 8px;
}

.lp-content blockquote {
  margin: 28px 0;
  border-left: 5px solid var(--lp-primary);
  padding: 8px 0 8px 18px;
  color: var(--lp-muted);
  font-style: italic;
}

.lp-comments {
  margin-top: 38px;
  border-top: 1px solid var(--lp-border);
  padding-top: 28px;
}

.lp-comments h2 {
  margin: 0;
  color: var(--lp-headline);
  font-size: 26px;
  font-weight: 950;
}

.lp-comments p {
  margin: 8px 0 18px;
  color: var(--lp-muted);
  font-size: 15px;
}

.lp-comments form {
  display: grid;
  gap: 12px;
}

.lp-comments input,
.lp-comments textarea {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 4px;
  padding: 13px 14px;
  background: #fff;
  color: var(--lp-headline);
  font: inherit;
}

.lp-comments textarea {
  min-height: 130px;
  resize: vertical;
}

.lp-comments button {
  justify-self: start;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  background: var(--lp-primary);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.lp-footer {
  margin-top: 36px;
  border-top: 1px solid var(--lp-border);
  background: #f7f7f7;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .7fr;
  gap: 34px;
  padding: 38px 0;
}

.lp-footer p,
.lp-footer li,
.lp-copyright {
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.55;
}

.lp-footer h3 {
  margin: 0 0 10px;
  color: var(--lp-headline);
  font-size: 15px;
  font-weight: 900;
}

.lp-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-copyright {
  border-top: 1px solid var(--lp-border);
  padding: 15px 0;
}

@media (max-width: 920px) {
  .lp-search {
    margin-left: auto;
    width: min(240px, 34vw);
  }

  .lp-socials-top {
    display: none;
  }

  .lp-main-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-sidebar {
    order: 2;
  }

  .lp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-container {
    width: min(100% - 24px, 1180px);
  }

  .lp-topbar-inner {
    min-height: 52px;
    gap: 10px;
  }

  .lp-topbar-brand {
    left: calc(50% + 2px);
  }

  .lp-logo {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .lp-compact-brand strong {
    max-width: 170px;
    font-size: 16px;
  }

  .lp-topbar-tools {
    margin-left: auto;
  }

  .lp-topbar > .lp-container > .lp-search,
  .lp-topbar-tools > .lp-search {
    display: none;
  }

  .lp-nav {
    display: none;
  }

  .lp-main-grid {
    padding-top: 24px;
  }

  .lp-featured-story h1 {
    font-size: 34px;
  }

  .lp-secondary-grid,
  .lp-card-grid {
    grid-template-columns: 1fr;
  }

  .lp-article h1 {
    font-size: 34px;
  }
}
