:root {
  --color-primary: #b71c1c;
  --color-dark: #111111;
  --color-muted: #5f6368;
  --color-border: #e7e9ed;
  --color-bg: #f5f6f8;
}

body {
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.portal-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px;
}

.portal-home__topbar {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f3f3f3;
  font-size: 12px;
}

.portal-home__topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portal-home__top-left,
.portal-home__top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f3f3f3;
}

.portal-home__top-left span,
.portal-home__top-right span {
  opacity: 0.92;
  white-space: nowrap;
}

.portal-home__topbar-item,
.portal-home__topbar-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.portal-home__topbar-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff4b3a;
  flex: 0 0 14px;
}

.portal-home__topbar-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.portal-home__topbar-socials {
  gap: 10px;
}

.portal-home__topbar-social {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.portal-home__topbar-social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.portal-home__topbar-social:hover,
.portal-home__topbar-social:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.portal-home__top-right a {
  color: #f3f3f3;
  text-decoration: none;
}

.portal-header-main {
  margin-top: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.portal-header-main__brand h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.portal-header-main__brand p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.portal-live-btn {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
}

.portal-cats-nav {
  margin-top: 12px;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.portal-cats-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  min-width: max-content;
}

.portal-cats-nav a {
  display: block;
  padding: 13px 16px;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.portal-cats-nav a:hover,
.portal-cats-nav a:focus-visible {
  color: var(--color-primary);
  background: #fff4f4;
}

.portal-layout {
  margin-top: 16px;
  display: block;
}

.hero-news {
  display: grid;
  gap: 14px;
}

.hero-news__main,
.news-card,
.most-read,
.portal-sidebar-wrap,
.interest-grid,
.opinion-strip,
.news-section,
.portal-header-main,
.portal-cats-nav,
.sponsor-banner,
.top-showcase {
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.07);
}

.hero-news__image,
.news-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: #ececec;
}

.hero-news__image img,
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-news__content,
.news-card__content,
.interest-grid,
.opinion-strip,
.news-section,
.most-read {
  padding: 12px;
}

.news-card__category {
  display: inline-block;
  background: rgba(183, 28, 28, 0.1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}

.hero-news__title {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.news-card__title {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-news__title a,
.news-card__title a,
.most-read__item a,
.opinion-item h3 a {
  color: var(--color-dark);
  text-decoration: none;
}

.hero-news__title a:hover,
.news-card__title a:hover,
.most-read__item a:hover,
.opinion-item h3 a:hover {
  color: var(--color-primary);
}

.hero-news__excerpt,
.hero-news__meta,
.news-card__meta,
.news-empty,
.opinion-item p {
  color: var(--color-muted);
}

.hero-news__side,
.news-section__list,
.interest-grid__cards,
.opinion-strip__grid {
  display: grid;
  gap: 12px;
}

.news-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.news-section__head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.news-section__head a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.news-section__grid {
  display: grid;
  gap: 12px;
}

.news-card--compact {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.news-card--compact .news-card__thumb {
  aspect-ratio: auto;
  min-height: 100%;
}

.news-card--compact .news-card__title {
  font-size: 17px;
}

.opinion-item {
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
}

.opinion-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.opinion-item h3 {
  margin: 0;
  font-size: 18px;
}

.opinion-item p {
  margin: 8px 0 0;
  font-size: 14px;
}

.most-read__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.most-read__item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.most-read__item:last-child {
  border-bottom: 0;
}

.most-read__rank {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 800;
}

.portal-footer-links {
  margin-top: 26px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.portal-footer-links__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.portal-footer-links__inner a,
.portal-footer-links__copy {
  color: var(--color-muted);
  font-size: 13px;
  text-decoration: none;
}

.portal-footer-links__copy {
  margin: 10px auto 0;
  max-width: 1240px;
  padding: 0 14px;
}

.news-card__noimage {
  display: grid;
  place-items: center;
  min-height: 184px;
  color: var(--color-muted);
}

.sponsor-banner {
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.sponsor-banner__image-link {
  display: block;
  padding: 14px 16px;
  background: #ffffff;
}

.sponsor-banner__image {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  height: auto;
  border-radius: 4px;
}

.top-showcase {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px;
}

.top-showcase__banner {
  background: linear-gradient(90deg, #20242d 0%, #2a3140 48%, #891010 100%);
  border-radius: 4px;
  padding: 8px 14px;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.top-showcase__banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 15px;
  line-height: 1.2;
}

.top-showcase__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.top-lead-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.top-lead-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: #ececec;
}

.top-lead-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-lead-card__content {
  padding: 10px 12px 12px;
}

.top-lead-card__content h2 {
  margin: 8px 0 6px;
  font-size: clamp(34px, 2.9vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.top-lead-card__content h2 a {
  color: var(--color-dark);
  text-decoration: none;
}

.top-lead-card__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.top-side-list {
  display: grid;
  gap: 10px;
}

.top-side-list .news-card--compact {
  grid-template-columns: 1fr;
}

.top-side-list .news-card--compact .news-card__thumb {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.top-side-list .news-card--compact .news-card__content {
  padding: 8px 10px 10px;
}

.top-side-list .news-card__title {
  font-size: 19px;
  line-height: 1.2;
}

.top-side-list .news-card__category {
  font-size: 10px;
  padding: 2px 7px;
}

@media (min-width: 768px) {
  .hero-news {
    grid-template-columns: 1.45fr 1fr;
  }

  .interest-grid__cards,
  .opinion-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-section__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1024px) {
.interest-grid__cards,
  .opinion-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-showcase {
    padding: 14px;
  }

  .top-showcase__grid {
    grid-template-columns: 1.7fr 1fr;
    align-items: stretch;
  }

  .top-lead-card__thumb {
    min-height: 420px;
  }

  .top-side-list .news-card--compact .news-card__thumb {
    min-height: 185px;
  }
}

@media (max-width: 767px) {
  .portal-home__topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .portal-home__top-left,
  .portal-home__top-right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .portal-header-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card--compact {
    grid-template-columns: 1fr;
  }

  .news-section__head h2 {
    font-size: 23px;
  }

  .sponsor-banner__link {
    padding: 14px 16px;
  }

  .sponsor-banner__title {
    font-size: 20px;
  }

  .sponsor-banner__meta {
    font-size: 13px;
  }

  .top-showcase {
    padding: 10px;
  }

  .top-showcase__banner {
    min-height: 48px;
  }

  .top-showcase__banner a {
    font-size: 13px;
  }

  .top-lead-card__content h2 {
    font-size: 28px;
  }
}





.portal-layout,
.portal-layout__main,
.portal-layout__main > *,
.interest-grid,
.opinion-strip,
.news-section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}


.interest-grid__showcase {
  margin-top: 0;
}


.interest-grid__showcase {
  margin-top: 0;
}

.municipality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.municipality-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #111;
}

.municipality-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.municipality-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.78) 100%);
}

.municipality-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 16px;
}

.municipality-card__tag {
  display: inline-block;
  background: #ef3b2d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.municipality-card__title {
  margin: 12px 0 10px;
  font-size: 19px;
  line-height: 1.15;
  color: #fff;
}

.municipality-card--lead .municipality-card__title {
  font-size: clamp(28px, 3vw, 42px);
}

.municipality-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}

.municipality-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .municipality-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .municipality-card {
    min-height: 320px;
  }
}


.youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.youtube-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.youtube-card__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.youtube-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.youtube-card__placeholder {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(135deg, #16181d 0%, #cc181e 100%);
  color: #fff;
}

.youtube-card__placeholder span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youtube-card__placeholder strong {
  font-size: 30px;
  line-height: 1;
}

.youtube-card__placeholder p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.youtube-card__content {
  padding: 12px;
}

.youtube-card__content h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.youtube-card__content a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 900px) {
  .youtube-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.social-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.social-section__embed-wrap,
.social-section__info,
.social-section__fallback {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.social-section__embed-wrap {
  padding: 10px;
}

.social-section__embed {
  margin: 0 auto;
}

.social-section__info,
.social-section__fallback {
  padding: 18px;
}

.social-section__info h3,
.social-section__fallback h3 {
  margin: 10px 0;
  font-size: 24px;
  line-height: 1.15;
}

.social-section__info p,
.social-section__fallback p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.social-section__cta {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}

.social-section__cta:hover {
  background: var(--color-primary);
}

@media (min-width: 900px) {
  .social-section__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }
}

.social-section__facebook-frame {
  margin-top: 8px;
  flex: 1 1 auto;
  min-height: 560px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fb;
}

.social-section__facebook-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.social-section__info--facebook .social-section__cta {
  margin-top: 14px;
}


/* Facebook card height fix */
.social-section__grid {
  align-items: start;
}

.social-section__info--facebook {
  align-self: start;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}

.social-section__facebook-frame {
  margin-top: 8px;
  flex: 0 0 auto;
  height: 320px;
  min-height: 320px;
  max-height: 320px;
  overflow: hidden;
}

.social-section__facebook-frame iframe {
  width: 100%;
  height: 320px;
  min-height: 320px;
  max-height: 320px;
  display: block;
}

.social-section__info--facebook .social-section__cta {
  margin-top: 14px;
}

@media (max-width: 899px) {
  .social-section__facebook-frame {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }

  .social-section__facebook-frame iframe {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }
}


.social-section__facebook-preview {
  display: block;
  padding: 0;
  background: #fff;
}

.social-section__facebook-cover {
  height: 108px;
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 50%, #60a5fa 100%);
  position: relative;
}

.social-section__facebook-cover-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: #1877f2;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.social-section__facebook-profile {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.social-section__facebook-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
  border: 4px solid #fff;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.08);
  display: grid;
  place-items: center;
  color: #111827;
  font-size: 34px;
  font-weight: 800;
  margin-top: -44px;
  flex: 0 0 auto;
}

.social-section__facebook-copy {
  display: grid;
  gap: 6px;
}

.social-section__facebook-copy strong {
  font-size: 22px;
  line-height: 1.1;
}

.social-section__facebook-copy span,
.social-section__facebook-copy p,
.social-section__facebook-copy small {
  color: var(--color-muted);
}

.social-section__facebook-copy p {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.social-section__facebook-copy small {
  font-size: 12px;
  word-break: break-all;
}

.social-section__facebook-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.social-section__facebook-copy small {
  font-size: 12px;
  word-break: break-all;
}

@media (max-width: 899px) {
  .social-section__facebook-preview {
    flex-direction: column;
    align-items: flex-start;
  }
}


.archive-shell {
  margin-top: 18px;
}

.archive-shell__header {
  padding: 18px 0 16px;
}

.archive-shell__eyebrow {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-shell__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.archive-shell__description {
  max-width: 760px;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.archive-grid .news-card {
  overflow: hidden;
}

.archive-grid .news-card__thumb {
  aspect-ratio: 4 / 3;
}

.archive-grid .news-card__content {
  padding: 14px;
}

.archive-grid .news-card__title {
  font-size: 24px;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 26px 0 8px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 700;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

@media (min-width: 768px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.floating-ads {
  position: relative;
  z-index: 60;
}

.floating-ad {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.floating-ad--left {
  top: var(--plus-tlt-floating-left-offset-top, 170px);
  left: var(--plus-tlt-floating-left-offset-left, 16px);
  width: var(--plus-tlt-floating-left-width, 160px);
  height: var(--plus-tlt-floating-left-height, 520px);
}

.floating-ad--bottom {
  right: var(--plus-tlt-floating-bottom-offset-right, 20px);
  bottom: var(--plus-tlt-floating-bottom-offset-bottom, 20px);
  width: min(var(--plus-tlt-floating-bottom-width, 420px), calc(100vw - 32px));
  height: var(--plus-tlt-floating-bottom-height, 180px);
}
.floating-ad__media,
.floating-ad__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-ad__media img {
  object-fit: cover;
}

.floating-ad__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #ef4444;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.floating-ad__close:hover {
  background: #fff;
}

.floating-ad__placeholder {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.floating-ad__placeholder--vertical {
  min-height: 260px;
  background: linear-gradient(180deg, #111827 0%, #b91c1c 100%);
  color: #fff;
}

.floating-ad__placeholder--horizontal {
  min-height: 94px;
  background: linear-gradient(90deg, #111827 0%, #b91c1c 100%);
  color: #fff;
}

.floating-ad__placeholder-main {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.floating-ad__placeholder-sub {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.floating-ad__placeholder-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 1280px) {
  .floating-ad--left {
    left: min(8px, var(--plus-tlt-floating-left-offset-left, 16px));
    width: min(var(--plus-tlt-floating-left-width, 160px), 132px);
  }
}

@media (max-width: 1024px) {
  .floating-ad--left {
    display: block;
    top: auto;
    left: 12px;
    bottom: calc(var(--plus-tlt-floating-bottom-height, 180px) + 28px);
    width: min(140px, 32vw);
    height: 220px;
  }

  .floating-ad--bottom {
    right: max(12px, var(--plus-tlt-floating-bottom-offset-right, 20px));
    bottom: max(12px, var(--plus-tlt-floating-bottom-offset-bottom, 20px));
    width: min(var(--plus-tlt-floating-bottom-width, 420px), calc(100vw - 24px));
    height: var(--plus-tlt-floating-bottom-height, 180px);
  }

  .floating-ad--left .floating-ad__close {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .floating-ad--left {
    left: 10px;
    bottom: calc(var(--plus-tlt-floating-bottom-height, 180px) + 20px);
    width: 112px;
    height: 184px;
  }

  .floating-ad--bottom {
    width: calc(100vw - 20px);
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: auto;
  }
}







.floating-debug {
  margin: 14px 0;
  padding: 14px 16px;
  background: #fffbe8;
  border: 1px solid #f1d48a;
  border-radius: 8px;
}

.floating-debug__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.floating-debug__head h2 {
  margin: 0;
  font-size: 20px;
}

.floating-debug__head span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-debug__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.floating-debug__item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #eddca7;
  border-radius: 8px;
}

.floating-debug__item strong {
  font-size: 14px;
}

.floating-debug__item span {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.floating-debug__item small {
  color: var(--color-muted);
  font-size: 12px;
  word-break: break-word;
}

@media (max-width: 767px) {
  .floating-debug__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.elementor-location-header li.plus-submenu-open > ul a:hover,
.elementor-location-header li.plus-submenu-open > ul a:focus-visible,
.elementor-location-header li.menu-item-has-children ul a:hover,
.elementor-location-header li.menu-item-has-children ul a:focus-visible {
  color: var(--color-primary);
  background: #e46363;
}



.top-side-list .news-card--compact {
  overflow: hidden;
}

.top-side-list .news-card--compact .news-card__thumb,
.top-side-list .news-card--compact .news-card__content {
  position: static;
}

.top-side-list .news-card--compact .news-card__content {
  display: block;
  margin: 0;
  transform: none;
  background: #fff;
  color: var(--color-dark);
}

.top-side-list .news-card--compact .news-card__title,
.top-side-list .news-card--compact .news-card__title a {
  color: var(--color-dark);
  text-shadow: none;
}
.youtube-card__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}