:root {
  --primary-base-color: #00838f;
  --primary-darken-color: #006064;
  --secondary-base-color: #f9a825;
  --secondary-darken-color: #f57f17;
  --accent-base-color: #26a69a;
  --accent-darken-color: #00897b;
  --navy-header: #1a5276;
  --surface-color: #ffffff;
  --surface-muted: #f4f7fa;
  --text-main: #334155;
  --text-muted: #64748b;
  --border-soft: #e2e8f0;
  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 40px rgba(15, 23, 42, 0.1);
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body.site-modern {
  background:
    radial-gradient(circle at top right, rgba(0, 139, 169, 0.08), transparent 28%),
    radial-gradient(circle at top left, rgba(0, 186, 136, 0.06), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--text-main);
  min-height: 100vh;
}

body.site-modern .container {
  max-width: 1180px;
}

/* Header hero - modern navy design */
body.site-modern .site-header-block {
  position: relative;
  margin-bottom: 0.75rem;
}

body.site-modern .site-hero-header {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

body.site-modern .site-header-brand {
  padding: 1rem 1.25rem 4.75rem;
}

@media (min-width: 768px) {
  body.site-modern .site-header-brand {
    padding: 1.1rem 1.5rem 4.25rem;
  }
}

@media (min-width: 1024px) {
  body.site-modern .site-header-brand {
    padding: 1.2rem 1.5rem 3.85rem;
  }
}

body.site-modern .site-header-brand-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

@media (min-width: 768px) {
  body.site-modern .site-header-brand-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

body.site-modern .site-header-identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

body.site-modern .site-header-text {
  min-width: 0;
}

body.site-modern .site-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.site-modern .site-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.92) 0%, rgba(0, 131, 143, 0.88) 55%, rgba(0, 96, 100, 0.9) 100%);
}

body.site-modern .site-hero-title {
  display: block;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  word-break: break-word;
}

body.site-modern .site-hero-subtitle {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1024px) {
  body.site-modern .site-hero-subtitle {
    font-size: 0.85rem;
  }
}

body.site-modern header .site-header-logos {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.site-modern header .site-header-logo {
  height: 3.25rem;
  width: auto;
  max-width: 4.5rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  background: #fff;
  border-radius: 12px;
  padding: 4px;
}

@media (min-width: 1024px) {
  body.site-modern header .site-header-logo {
    height: 3.75rem;
    max-width: 5rem;
  }
}

body.site-modern .site-hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
  flex-shrink: 0;
  justify-content: center;
  align-self: flex-start;
}

@media (min-width: 768px) {
  body.site-modern .site-hero-actions {
    justify-content: flex-end;
    align-self: center;
  }
}

body.site-modern .site-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.38rem 0.78rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  min-height: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  body.site-modern .site-hero-btn {
    padding: 0.42rem 0.88rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  body.site-modern .site-hero-btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.78rem;
  }
}

body.site-modern .site-hero-btn i {
  font-size: 0.74rem;
}

@media (min-width: 1024px) {
  body.site-modern .site-hero-btn i {
    font-size: 0.78rem;
  }
}

@media (max-width: 767px) {
  body.site-modern .site-header-brand {
    padding: 0.55rem 0.65rem 0.75rem;
  }

  body.site-modern .site-header-block.container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  body.site-modern .site-header-brand-row {
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }

  body.site-modern .site-header-identity {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.3rem;
  }

  body.site-modern header .site-header-logos {
    justify-content: center;
    width: 100%;
    gap: 0.55rem;
  }

  body.site-modern header .site-header-logo {
    height: 4.5rem;
    max-width: 5.5rem;
    padding: 5px;
    border-radius: 14px;
  }

  body.site-modern .site-header-text {
    width: 100%;
    text-align: center;
  }

  body.site-modern .site-hero-title {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
  }

  body.site-modern .site-hero-subtitle {
    width: 100%;
    max-width: none;
    margin-top: 0.1rem;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(0.62rem, 3.05vw, 0.72rem);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.site-modern .site-hero-actions {
    justify-content: center;
    align-self: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.15rem;
  }

  body.site-modern .site-hero-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.85rem;
    padding: 0.58rem 0.7rem;
    font-size: 0.8rem;
  }

  body.site-modern .site-hero-btn i {
    font-size: 0.85rem;
  }
}

body.site-modern .site-hero-btn-light {
  background: #fff;
  color: var(--primary-darken-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.site-modern .site-hero-btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

body.site-modern .site-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: inherit;
}

/* Floating navigation - sits in reserved slot, does not cover brand text */
body.site-modern .site-nav-slot {
  position: relative;
  z-index: 20;
  margin: -1.65rem auto 0;
  max-width: calc(100% - 1.5rem);
  padding: 0 0.25rem;
}

body.site-modern .site-nav-float {
  position: relative;
  z-index: 30;
  margin: 0;
  max-width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.site-modern .site-nav-inner {
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-soft);
}

body.site-modern .site-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}

body.site-modern .site-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  color: #334155 !important;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

body.site-modern .site-nav-link:hover,
body.site-modern .site-nav-home:hover {
  background: rgba(0, 131, 143, 0.1);
  color: var(--primary-darken-color) !important;
}

body.site-modern .site-nav-float > .site-nav-inner > .site-nav-list > li > ul {
  border-radius: 0.75rem;
  margin-top: 0.25rem;
  padding: 0.35rem 0;
}

/* Legacy header overrides */
body.site-modern header.bg-center {
  min-height: auto;
}

body.site-modern header.bg-center > .absolute.bg-gray-800 {
  display: none;
}

/* Category bar */
body.site-modern header section[x-data] ul li a {
  border-radius: 9999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body.site-modern header section[x-data] ul li a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

body.site-modern header .btn {
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

body.site-modern header .btn-primary:hover,
body.site-modern header .btn-accent:hover {
  transform: translateY(-1px);
}

/* Main navigation legacy */
body.site-modern .navbar-menu:not(.site-nav-float) {
  position: sticky;
  top: 0;
  z-index: 40;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 106, 130, 0.18);
}

body.site-modern .navbar-menu > ul > li > a,
body.site-modern .navbar-menu > ul > li > ul > li > a {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Content panels */
body.site-modern .container > .flex > main,
body.site-modern .container main.bg-white,
body.site-modern main[class*="rounded"] {
  border-radius: var(--radius-xl) !important;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft) !important;
}

body.site-modern .content-section-title {
  border-bottom: 2px solid var(--border-soft);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

body.site-modern .content-section-title h3 {
  position: relative;
  padding-left: 0.875rem;
}

body.site-modern .content-section-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 4px;
  border-radius: 9999px;
  background: linear-gradient(180deg, var(--primary-base-color), var(--accent-base-color));
}

/* Article cards */
body.site-modern .article-card {
  border-bottom: 1px solid var(--border-soft);
  transition: background-color 0.2s ease;
}

body.site-modern .article-card:last-child {
  border-bottom: none;
}

body.site-modern .article-card:hover {
  background: linear-gradient(90deg, rgba(0, 139, 169, 0.04), transparent);
}

body.site-modern .article-card figure {
  overflow: hidden;
  border-radius: 0.875rem;
  background: var(--surface-muted);
}

body.site-modern .article-card img {
  transition: transform 0.35s ease;
}

body.site-modern .article-card:hover img {
  transform: scale(1.05);
}

body.site-modern .article-card a.text-h5 {
  color: #0f172a;
  transition: color 0.2s ease;
}

body.site-modern .article-card:hover a.text-h5 {
  color: var(--primary-base-color);
}

/* Slider & headline */
body.site-modern .sliderx,
body.site-modern .headline-feature {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.25rem;
}

body.site-modern .sliderx .owl-carousel,
body.site-modern .sliderx figure,
body.site-modern .sliderx img {
  border-radius: var(--radius-xl);
}

body.site-modern .sliderx .absolute.bg-black,
body.site-modern .headline-feature .absolute.bg-black {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75)) !important;
  opacity: 1 !important;
}

body.site-modern .slider-nav-prev,
body.site-modern .slider-nav-next {
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

/* Sidebar */
body.site-modern .sidebar form.relative input.form-input {
  border-radius: 9999px;
  border: 1px solid var(--border-soft);
  background: var(--surface-color);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.site-modern .sidebar form.relative input.form-input:focus {
  outline: none;
  border-color: rgba(0, 139, 169, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 139, 169, 0.12);
}

body.site-modern .sidebar > .shadow.rounded-lg {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft) !important;
  overflow: hidden;
}

body.site-modern .sidebar .box-header {
  background: linear-gradient(135deg, rgba(0, 139, 169, 0.08), rgba(0, 186, 136, 0.06)) !important;
  border-bottom: 1px solid var(--border-soft);
  color: var(--primary-darken-color) !important;
}

body.site-modern .sidebar .box-header::before {
  display: none;
}

body.site-modern .sidebar .box-title {
  color: var(--primary-darken-color);
}

body.site-modern .sidebar .box-body table {
  border-collapse: separate;
  border-spacing: 0 0.35rem;
}

body.site-modern .sidebar .box-body table tr:first-child td a {
  font-weight: 600;
  color: #0f172a;
}

body.site-modern .sidebar .box-body table tr:first-child td a:hover {
  color: var(--primary-base-color);
}

body.site-modern .sidebar .nav-tabs .nav-link.active {
  color: var(--primary-base-color) !important;
  border-bottom-color: var(--primary-base-color) !important;
  font-weight: 600;
}

body.site-modern .sidebar .box-body.grid img {
  border-radius: 0.65rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.site-modern .sidebar .box-body.grid a:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

/* Widget galeri sidebar - ukuran thumbnail seragam */
.sidebar .gallery-widget-grid,
body.site-modern .sidebar .gallery-widget-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.sidebar .gallery-widget-grid a.gallery-thumb,
body.site-modern .sidebar .gallery-widget-grid a.gallery-thumb {
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 0.65rem;
  background: #f1f5f9;
}

.sidebar .gallery-widget-grid a.gallery-thumb img,
body.site-modern .sidebar .gallery-widget-grid a.gallery-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: transform 0.25s ease;
}

.sidebar .gallery-widget-grid a.gallery-thumb:hover img,
body.site-modern .sidebar .gallery-widget-grid a.gallery-thumb:hover img {
  transform: scale(1.06);
}

/* Pagination */
body.site-modern .pagination .page-link {
  border-color: var(--border-soft) !important;
  transition: all 0.2s ease;
}

body.site-modern .pagination .page-link:hover {
  transform: translateY(-1px);
}

body.site-modern .pagination .page-item[aria-current="page"] .page-link,
body.site-modern .pagination .page-link.bg-primary-100 {
  box-shadow: 0 8px 18px rgba(0, 139, 169, 0.25);
}

/* Footer modern */
body.site-modern .site-footer {
  margin-top: 2rem;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  color: #e2e8f0;
  padding: 2.5rem 0 1.5rem;
}

body.site-modern .site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  body.site-modern .site-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

body.site-modern .site-footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

body.site-modern .site-footer-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #94a3b8;
}

body.site-modern .site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.site-modern .site-footer-links li {
  margin-bottom: 0.5rem;
}

body.site-modern .site-footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

body.site-modern .site-footer-links a:hover {
  color: var(--accent-base-color);
}

body.site-modern .site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

body.site-modern .site-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  color: #fff;
  transition: transform 0.2s ease;
}

body.site-modern .site-footer-social-btn:hover {
  transform: translateY(-2px);
}

body.site-modern .site-footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

body.site-modern .site-footer-credits a {
  color: #94a3b8;
}

body.site-modern .site-footer-bsre {
  max-width: 140px;
  margin: 0.75rem auto 0;
}

body.site-modern footer.footer > div {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(135deg, #334155, #1e293b) !important;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
}

body.site-modern footer.footer a.inline-flex {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.site-modern footer.footer a.inline-flex:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* Back to top */
body.site-modern .scrollToTop,
body.site-modern #back-to-top {
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 1023px) {
  body.site-modern .site-header-brand {
    padding-bottom: 0.85rem;
  }

  body.site-modern .site-nav-slot {
    display: none;
    margin-top: 0;
    max-width: none;
  }

  body.site-modern .site-nav-inner {
    border-radius: 1rem;
  }

  body.site-modern .navbar-menu:not(.site-nav-float) {
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

/* ========== HOMEPAGE SECTIONS ========== */

.homepage-wrap {
  background: var(--surface-muted);
  padding-top: 0.5rem;
}

.homepage-hero {
  margin-top: 0.75rem;
  overflow: hidden;
}

.homepage-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.homepage-hero-grid > * {
  min-width: 0;
}

.homepage-hero-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .homepage-hero-grid {
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
  }
}

.homepage-hero-slider .sliderx {
  margin-bottom: 0;
  border-radius: var(--radius-xl);
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.homepage-hero-slider .sliderx .owl-carousel,
.homepage-hero-slider .sliderx .owl-stage-outer {
  width: 100% !important;
  max-width: 100%;
}

.homepage-hero-slider .sliderx .owl-carousel,
.homepage-hero-slider .sliderx figure,
.homepage-hero-slider .sliderx img {
  height: 220px !important;
  min-height: 220px;
}

@media (min-width: 1024px) {
  .homepage-hero-slider .sliderx .owl-carousel,
  .homepage-hero-slider .sliderx figure,
  .homepage-hero-slider .sliderx img {
    height: 340px !important;
    min-height: 340px;
  }
}

.homepage-info-card {
  background: linear-gradient(145deg, #f2b000 0%, #d89500 100%);
  border-radius: 6px;
  padding: 1.35rem 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 220px;
}

@media (min-width: 1024px) {
  .homepage-info-card {
    min-height: 330px;
    padding: 1.75rem 1.5rem;
    border-radius: 4px;
  }
}

.homepage-info-alert {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2.75rem;
  opacity: 0.35;
  color: #fff;
}

.homepage-info-top {
  margin-bottom: 0.65rem;
}

.homepage-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #0b7d83;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.homepage-info-title {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.65rem;
  color: #fff;
}

@media (min-width: 1024px) {
  .homepage-info-title {
    font-size: 1.45rem;
  }
}

.homepage-info-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.homepage-info-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #0b7d83;
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-info-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11, 125, 131, 0.35);
  color: #fff;
}

.homepage-hero-fallback {
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-hero-fallback-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .homepage-hero-fallback,
  .homepage-hero-fallback-img {
    min-height: 330px;
    height: 330px;
  }
}

/* Quick links dock - horizontal slider, single row */
.homepage-quicklinks {
  padding: 0.85rem 0 0.5rem;
}

.quicklinks-dock {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.65rem 2.35rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15, 42, 63, 0.07);
  border: 1px solid #e8eef4;
}

.quicklinks-slider {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.quicklinks-slider.owl-loaded {
  display: block;
}

.quicklinks-slider .owl-stage-outer {
  overflow: hidden;
}

.quicklinks-slider .owl-item {
  float: left;
}

.quicklinks-slider .owl-nav,
.quicklinks-slider .owl-dots {
  display: none !important;
}

.quicklink-slide {
  height: 100%;
}

.quicklinks-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid #d8e3ec;
  border-radius: 9999px;
  background: #fff;
  color: #07818a;
  box-shadow: 0 4px 12px rgba(15, 42, 63, 0.1);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quicklinks-nav i {
  font-size: 0.72rem;
}

.quicklinks-nav:hover {
  background: #07818a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(7, 129, 138, 0.25);
}

.quicklinks-nav-prev {
  left: 0.45rem;
}

.quicklinks-nav-next {
  right: 0.45rem;
}

.quicklink-dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72px;
  height: 100%;
  padding: 0.45rem 0.25rem;
  border-radius: 5px;
  background: #f8fbfd;
  color: #42536b;
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1.25;
  border: 1px solid #e8eef4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quicklink-dock-item i {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #07818a;
}

.quicklink-dock-item .fa-video {
  color: #e4574a;
}

.quicklink-dock-item small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.58rem;
  font-weight: 500;
  color: #7b8798;
  line-height: 1.2;
}

.quicklink-dock-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 129, 138, 0.14);
  background: #eafaf7;
  color: #075f65;
}

/* Legacy quicklinks grid (unused) */
.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .quicklinks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .quicklinks-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.quicklink-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quicklink-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 131, 143, 0.3);
}

.quicklink-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 131, 143, 0.1);
  border-radius: 0.75rem;
  color: var(--primary-base-color);
  font-size: 1.15rem;
}

.quicklink-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

/* Ticker */
.ticker-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.ticker-label {
  background: var(--primary-base-color);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ticker-content {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--text-main);
}

.ticker-item {
  padding: 0 1rem;
}

.ticker-link {
  color: var(--primary-base-color);
  font-weight: 600;
  margin-left: 0.5rem;
}

/* About section */
.about-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 1fr 1.4fr;
  }
}

.about-visual {
  background: linear-gradient(135deg, rgba(0, 131, 143, 0.08), rgba(38, 166, 154, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 200px;
}

.about-illustration {
  position: relative;
  font-size: 5rem;
  color: var(--primary-base-color);
  opacity: 0.7;
}

.about-illustration-sub {
  position: absolute;
  font-size: 2.5rem;
  bottom: -0.5rem;
  right: -1rem;
  color: var(--accent-base-color);
}

.about-content {
  padding: 2rem;
}

.about-badge {
  display: inline-block;
  background: rgba(0, 131, 143, 0.1);
  color: var(--primary-darken-color);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border: 2px solid var(--primary-base-color);
  border-radius: 9999px;
  color: var(--primary-darken-color);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-btn:hover {
  background: var(--primary-base-color);
  color: #fff;
}

/* Widgets row */
.homepage-widgets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .homepage-widgets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.homepage-widget-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.homepage-widget-header {
  background: var(--primary-base-color);
  color: #fff;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.homepage-widget-body {
  padding: 1rem;
}

.homepage-map {
  height: 220px;
  border-radius: 0.5rem;
  z-index: 1;
}

.homepage-hours-table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}

.homepage-hours-table th,
.homepage-hours-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
}

.homepage-hours-table th {
  background: var(--surface-muted);
  font-weight: 600;
  color: var(--text-main);
}

/* Aparatur section - horizontal cards like Karanganyar, circular photos */
.homepage-aparatur {
  padding: 2rem 0;
}

.aparatur-section {
  background: linear-gradient(160deg, #006064 0%, #00838f 100%);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.25rem 1.15rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .aparatur-section {
    padding: 1.75rem 1.75rem 1.35rem;
  }
}

.aparatur-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.aparatur-badge {
  display: inline-block;
  background: #b8ece8;
  color: #0b5f63;
  padding: 0.22rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.aparatur-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .aparatur-title {
    font-size: 1.45rem;
  }
}

.aparatur-link {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.95;
  white-space: nowrap;
  align-self: center;
}

.aparatur-link:hover {
  opacity: 1;
  color: #fff;
}

.aparatur-grid-wrap {
  margin: 0;
}

.aparatur-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .aparatur-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.aparatur-card {
  background: #fff;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 1rem 0.65rem 0.9rem;
}

@media (min-width: 768px) {
  .aparatur-card {
    padding: 1.15rem 0.75rem 1rem;
  }
}

.aparatur-photo {
  width: 108px;
  height: 108px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  background: #c62828;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
  .aparatur-photo {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 1024px) {
  .aparatur-photo {
    width: 132px;
    height: 132px;
    margin-bottom: 0.85rem;
  }
}

.aparatur-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}

.aparatur-info {
  padding: 0;
}

.aparatur-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .aparatur-name {
    font-size: 0.78rem;
  }
}

.aparatur-jabatan {
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .aparatur-jabatan {
    font-size: 0.72rem;
  }
}

/* Lapak Desa page */
body.site-modern .lapak-page-title {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

body.site-modern .lapak-search-form .form-input,
body.site-modern .lapak-search-form .select2-container .select2-selection {
  border-radius: 0.5rem;
  border-color: var(--border-soft);
}

body.site-modern .lapak-product-grid {
  margin-top: 0.5rem;
}

body.site-modern .lapak-product-card {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 0.65rem;
  padding: 0.85rem;
  box-shadow: 0 6px 18px rgba(15, 42, 63, 0.06);
  min-height: 100%;
}

body.site-modern .lapak-product-photo {
  border-radius: 0.45rem;
  overflow: hidden;
  border: 1px solid #edf2f7;
}

body.site-modern .lapak-product-photo .owl-carousel,
body.site-modern .lapak-product-photo img {
  border-radius: 0.45rem;
}

body.site-modern .lapak-product-name {
  font-size: 0.95rem;
  line-height: 1.35;
  color: #0f172a;
}

body.site-modern .lapak-product-price {
  color: #0f172a;
}

body.site-modern .lapak-product-actions .btn-primary {
  background: #0b7d83;
  border-color: #0b7d83;
}

body.site-modern .lapak-product-actions .btn-secondary {
  background: #e8a317;
  border-color: #e8a317;
  color: #fff;
}

/* Layanan Mandiri section */
.mandiri-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

@media (min-width: 768px) {
  .mandiri-card {
    grid-template-columns: 1fr 1fr;
  }
}

.mandiri-promo {
  background: linear-gradient(145deg, #006064, #00838f);
  color: #fff;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.mandiri-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.mandiri-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.mandiri-desc {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.6;
}

.mandiri-graphic {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 4rem;
  opacity: 0.15;
}

.mandiri-form-wrap {
  padding: 2rem;
}

.mandiri-form-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.mandiri-form-header h3 {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

.mandiri-form-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mandiri-alert {
  background: #e0f2f1;
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: #00695c;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.mandiri-field {
  margin-bottom: 1rem;
}

.mandiri-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.mandiri-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-soft);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mandiri-input:focus {
  outline: none;
  border-color: var(--primary-base-color);
  box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.15);
}

.mandiri-submit {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #f9a825, #f57f17);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mandiri-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 127, 23, 0.35);
}

.mandiri-full-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--primary-base-color);
  font-weight: 600;
}

/* Article grid */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card-grid {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.article-card-grid:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.article-card-grid-image {
  display: block;
  overflow: hidden;
}

.article-card-grid-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card-grid:hover .article-card-grid-image img {
  transform: scale(1.05);
}

.article-card-grid-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-grid-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-grid-title:hover {
  color: var(--primary-base-color);
}

.article-card-grid-excerpt {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-grid-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.article-card-grid-meta i {
  color: var(--primary-base-color);
  margin-right: 0.25rem;
}

.article-card-grid-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.45rem 0.85rem;
  background: rgba(0, 131, 143, 0.08);
  color: var(--primary-darken-color);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.article-card-grid-btn:hover {
  background: rgba(0, 131, 143, 0.15);
  color: var(--primary-darken-color);
}

.homepage-articles {
  margin-bottom: 2rem;
}

/* CCTV public map page */
.cctv-page {
  background: #f3f6f9;
  min-height: calc(100vh - 120px);
}

.cctv-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #0b4f8a 0%, #0f6cbd 100%);
  color: #fff;
}

.cctv-page-header h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cctv-page-header p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  opacity: 0.92;
}

.cctv-back-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cctv-back-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.cctv-page-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: calc(100vh - 190px);
}

.cctv-sidebar {
  background: #fff;
  border-right: 1px solid #dde5ee;
  padding: 1rem;
  overflow: auto;
}

.cctv-search-wrap {
  position: relative;
  margin-bottom: 0.85rem;
}

.cctv-search-wrap i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8a97a8;
}

.cctv-search {
  width: 100%;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  font-size: 0.9rem;
}

.cctv-filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.cctv-filter {
  border: 1px solid #d7e0ea;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.45rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #607086;
}

.cctv-filter span {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.cctv-filter.active {
  background: #eaf4ff;
  border-color: #8ec1ff;
  color: #0b4f8a;
}

.cctv-list-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7b8798;
  margin-bottom: 0.5rem;
}

.cctv-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cctv-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  border: 1px solid #e3eaf2;
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cctv-list-item:hover {
  border-color: #8ec1ff;
  box-shadow: 0 8px 18px rgba(15, 79, 138, 0.08);
}

.cctv-list-content strong {
  display: block;
  font-size: 0.82rem;
  color: #1f2a37;
  margin-bottom: 0.15rem;
}

.cctv-list-content small {
  display: block;
  font-size: 0.72rem;
  color: #7b8798;
  line-height: 1.35;
}

.cctv-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cctv-status-dot.active {
  background: #22c55e;
}

.cctv-status-dot.inactive {
  background: #cbd5e1;
}

.cctv-list-empty {
  padding: 1rem;
  text-align: center;
  color: #7b8798;
  font-size: 0.85rem;
}

.cctv-map-wrap,
#cctv-map {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 190px);
}

.cctv-marker-icon-wrap {
  background: transparent;
  border: 0;
}

.cctv-marker-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a4c 0%, #f97316 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
  border: 3px solid #fff;
}

.cctv-live-modal .modal-header {
  align-items: flex-start;
}

.cctv-live-modal .modal-title {
  font-weight: 800;
  text-transform: uppercase;
}

.cctv-live-address,
.cctv-live-wilayah {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.cctv-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  border-radius: 10px;
  overflow: hidden;
}

.cctv-player iframe,
.cctv-player video,
.cctv-player img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}

.cctv-player-offline {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  gap: 0.5rem;
}

.cctv-live-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
}

.cctv-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ef4444;
  font-weight: 700;
  font-size: 0.85rem;
}

.cctv-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: cctv-pulse 1.2s infinite;
}

@keyframes cctv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 991px) {
  .cctv-page-body {
    grid-template-columns: 1fr;
  }

  .cctv-sidebar {
    border-right: 0;
    border-bottom: 1px solid #dde5ee;
    max-height: 320px;
  }

  .cctv-map-wrap,
  #cctv-map {
    min-height: 420px;
  }
}
