@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #121212; /* Background color for the entire website, including individual sections */
  --default-color: #e0e0e0; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #a0a0a0; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff3131; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #2c2c2c; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e0e0e0; /* The default color of the main navmenu links */
  --nav-hover-color: #ff3131; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #2c2c2c; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #2c2c2c; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #e0e0e0; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff3131; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #121212;
  --surface-color: #464646;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color) 92%,
    transparent
  );
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(calc(-100% - 16px));
  pointer-events: none;
  transition:
    transform 0.45s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 56px;
  width: auto;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    background-color: color-mix(in srgb, var(--default-color) 10%, white 15%);
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-toggle:focus-visible {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    outline: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .mobile-nav-toggle:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active #header {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: 0;
    z-index: 99998;
    background: rgba(33, 37, 41, 0.92);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mobile-nav-active #header .container {
    min-height: 100%;
    display: block !important;
    padding: 18px 20px 24px;
    overflow-y: auto;
  }

  .mobile-nav-active .logo {
    display: inline-flex;
    margin-bottom: 18px;
  }

  .mobile-nav-active .header-social-links {
    display: none;
  }

  .mobile-nav-active .mobile-nav-toggle {
    background-color: var(--accent-color);
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: static;
    overflow: visible;
    inset: auto;
    background: transparent;
    transition: none;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    position: relative;
    inset: auto;
    margin-top: 18px;
    max-height: calc(100dvh - 110px);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 15px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 300;
}

.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.8px;
  color: var(--heading-color);
}

.footer .footer-brand .tagline {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-links-grid h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.footer .footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links-grid ul li {
  margin-bottom: 12px;
}

.footer .footer-links-grid ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer .footer-links-grid ul li a:hover {
  color: var(--accent-color);
  padding-left: 16px;
}

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
}

.footer .footer-cta h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--heading-font);
}

.footer .footer-cta .btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer .footer-cta .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color: var(--heading-color);
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }

  .footer .footer-cta {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .row {
    text-align: center;
  }

  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }

  .footer .footer-links-grid .col-6 {
    margin-bottom: 30px;
  }

  .footer .footer-links-grid h5 {
    text-align: left;
  }

  .footer .footer-links-grid ul {
    text-align: left;
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 0;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.category-page .page-title,
.blog-details-page .page-title,
.park-builders-page .page-title,
.shop-page .page-title,
.news-page .page-title {
  padding-top: 88px;
}

@media (max-width: 1199px) {
  .category-page .page-title,
  .blog-details-page .page-title,
  .park-builders-page .page-title,
  .shop-page .page-title,
  .news-page .page-title {
    padding-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.blog-hero .container-fluid {
  min-height: inherit;
  position: relative;
}

.blog-hero .blog-hero-media {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  height: 100vh;
  height: 100dvh;
}

.blog-hero .blog-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero .blog-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.46) 46%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.blog-hero .blog-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.blog-hero .blog-hero-overlay .container {
  min-height: inherit;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.blog-hero .blog-hero-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(104px, 14vh, 160px) 0;
  color: var(--contrast-color);
  text-align: center;
}

.blog-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--contrast-color), transparent 28%);
}

.blog-hero .hero-kicker::before,
.blog-hero .hero-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.blog-hero .hero-logo {
  width: min(100%, 880px);
  margin: 0 auto 28px;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.45));
}

.blog-hero .hero-lead {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(22px, 3.4vw, 38px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--contrast-color);
}

.blog-hero .hero-copy {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
}

.blog-hero .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  pointer-events: auto;
}

.blog-hero .hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  font-weight: 600;
  transition: 0.3s ease;
}

.blog-hero .hero-link i {
  transition: transform 0.3s ease;
}

.blog-hero .hero-link:hover i {
  transform: translateX(4px);
}

.blog-hero .hero-link-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-hero .hero-link-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0px 12px 30px
    color-mix(in srgb, var(--accent-color), transparent 72%);
}

.blog-hero .hero-link-secondary {
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 94%);
}

.blog-hero .hero-link-secondary:hover {
  border-color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  transform: translateY(-2px);
}

.blog-hero .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.blog-hero .hero-highlights li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 16%);
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-inner {
    padding: 96px 0;
  }

  .blog-hero .hero-kicker {
    margin-bottom: 20px;
  }

  .blog-hero .hero-kicker::before,
  .blog-hero .hero-kicker::after {
    width: 28px;
  }

  .blog-hero .hero-logo {
    margin-bottom: 24px;
  }

  .blog-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-hero .hero-link {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
  padding: 80px 0;
  background: var(--background-color);
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-posts-slider .swiper-pagination {
  position: relative;
  margin-top: 50px;
}

.featured-posts
  .blog-posts-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.featured-posts
  .blog-posts-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.featured-posts .blog-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-posts .blog-card:hover {
  transform: translateY(-6px);
}

.featured-posts .blog-image {
  position: relative;
  height: 260px;
  margin-bottom: 14px;
  overflow: hidden;
}

.featured-posts .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-posts .blog-image .category-badge {
  display: none;
}

.featured-posts .blog-image:hover img {
  transform: scale(1.03);
}

.featured-posts .blog-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .featured-posts .blog-content {
    padding: 0;
  }
}

.featured-posts .post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.featured-posts .post-meta .publish-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-posts .post-meta .meta-divider {
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.featured-posts .post-meta .meta-divider i {
  font-size: 24px;
  line-height: 0;
}

.featured-posts .post-meta .post-location {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-posts .post-meta .post-location:hover {
  color: var(--accent-color);
}

.featured-posts h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .featured-posts h3 {
    font-size: 18px;
  }
}

.featured-posts h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.featured-posts h3 a:hover {
  color: var(--accent-color);
}

.featured-posts p {
  font-size: 15px;
  line-height: 1.72;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 18px;
  flex: 1;
}

.featured-posts .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 576px) {
  .featured-posts .blog-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.featured-posts .reading-time {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-posts .reading-time i {
  margin-right: 5px;
  font-size: 14px;
}

.featured-posts .btn-read-more {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--accent-color);
  padding: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.featured-posts .btn-read-more span {
  margin-right: 8px;
}

.featured-posts .btn-read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.featured-posts .btn-read-more:hover {
  color: var(--accent-color);
}

.featured-posts .btn-read-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .featured-posts .btn-read-more {
    align-self: flex-start;
  }
}

/*--------------------------------------------------------------
# Category Section Section
--------------------------------------------------------------*/
.category-section {
  min-height: 100vh;
  min-height: 100dvh;
}

.category-section .category-finder-row {
  align-items: stretch;
}

.category-section .hero-post {
  background: var(--surface-color);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 40px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.category-section .hero-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-section .hero-post .post-img img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.category-section .hero-post .post-content {
  padding: 22px 24px 24px;
}

.category-section .hero-post .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.category-section .hero-post .author-info .author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 3px solid var(--accent-color);
}

.category-section .hero-post .author-info .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.category-section .hero-post .author-info .author-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
}

.category-section .hero-post .author-info .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-section .hero-post .post-title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.category-section .hero-post .post-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.category-section .hero-post .post-title a:hover {
  color: var(--accent-color);
}

.category-section .hero-post .post-excerpt {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
  margin-bottom: 14px;
}

.category-section .hero-post .post-stats {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .hero-post .post-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-section .hero-post .post-stats i {
  color: var(--accent-color);
}

.category-section .map-explorer {
  display: flex;
}

.category-section .map-shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 20px;
}

.category-section .map-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-section .map-kicker {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.category-section .map-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  color: var(--heading-color);
}

.category-section .map-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.category-section .map-canvas {
  flex: 1;
  min-height: 0;
  border-radius: 0;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-section .us-map-object {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.category-section .map-selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.category-section .map-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.category-section .map-selection-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.category-section .map-selection-label {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.category-section .map-selection-name {
  font-size: 18px;
  line-height: 1.1;
  color: var(--heading-color);
}

.category-section .map-reset-button {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  background: transparent;
  color: var(--default-color);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.category-section .map-mode-button {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 62%);
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: var(--accent-color);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.category-section .map-reset-button:hover,
.category-section .map-reset-button:focus,
.category-section .map-mode-button:hover,
.category-section .map-mode-button:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 35%);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.category-section .map-shell.is-international .map-canvas {
  filter: grayscale(1);
  opacity: 0.42;
}

.category-section .map-shell.is-international .us-map-object {
  pointer-events: none;
}

.category-section .state-finder-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.category-section .state-search-wrap {
  position: relative;
  margin-bottom: 20px;
}

.category-section .state-search-wrap i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  pointer-events: none;
}

.category-section .state-search {
  width: 100%;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 0;
  background: var(--surface-color);
  color: var(--default-color);
  padding: 0 18px 0 44px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.category-section .state-search::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.category-section .state-search:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.category-section .sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-section .state-scroll-box {
  flex: 0 0 auto;
  min-height: 0;
  max-height: var(--finder-scroll-height, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}

.category-section .state-scroll-box::-webkit-scrollbar {
  width: 8px;
}

.category-section .state-scroll-box::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border-radius: 0;
}

.category-section .state-scroll-box::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent-color), transparent 35%);
  border-radius: 0;
}

.category-section .sidebar-post {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 0;
  border-left: 4px solid var(--accent-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.category-section .sidebar-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.category-section .sidebar-post.is-active {
  border-left-color: color-mix(in srgb, var(--accent-color), white 15%);
  background: color-mix(in srgb, var(--accent-color), var(--surface-color) 92%);
  box-shadow: 0 10px 28px
    color-mix(in srgb, var(--accent-color), transparent 86%);
}

.category-section .sidebar-post .post-img {
  flex: 0 0 80px;
}

.category-section .sidebar-post .post-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
}

.category-section .sidebar-post .post-content {
  flex: 1;
  min-width: 0;
}

.category-section .sidebar-post .post-category {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 0;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.category-section .sidebar-post[data-finder-scope="international"] .post-category {
  background: color-mix(in srgb, #2d5b93, transparent 86%);
  color: #2d5b93;
}

.category-section .sidebar-post .title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.category-section .sidebar-post .title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.category-section .sidebar-post .title a:hover {
  color: var(--accent-color);
}

.category-section .sidebar-post .post-meta {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-section .sidebar-post .state-card-side {
  flex: 0 0 auto;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  text-align: right;
  padding-left: 10px;
}

.category-section .sidebar-post .state-card-count {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.category-section .sidebar-post .state-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-color);
}

.category-section .sidebar-post .state-card-link i {
  font-size: 11px;
}

.category-section .sidebar-post .state-card-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.category-section .posts-grid {
  margin-top: 50px;
}

.category-section .grid-post {
  background: var(--surface-color);
  border-radius: 0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-section .grid-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px
    color-mix(in srgb, var(--default-color), transparent 88%);
}

.category-section .grid-post:hover .post-img img {
  transform: scale(1.05);
}

.category-section .grid-post .post-img {
  position: relative;
  overflow: hidden;
}

.category-section .grid-post .post-img img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-section .grid-post .post-img .post-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.category-section .grid-post .post-img .category-tag {
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-section .grid-post .post-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-section .grid-post .title {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.category-section .grid-post .title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.category-section .grid-post .title a:hover {
  color: var(--accent-color);
}

.category-section .grid-post .excerpt {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.category-section .grid-post .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-section .grid-post .author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-section .grid-post .author-info .author-img {
  width: 35px;
  height: 35px;
  border-radius: 0;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.category-section .grid-post .author-info .author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
}

.category-section .grid-post .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .category-section .hero-post .post-title {
    font-size: 24px;
  }

  .category-section .hero-post .post-content {
    padding: 25px;
  }

  .category-section .hero-post .post-img img {
    aspect-ratio: 16/10;
  }

  .category-section .map-shell {
    padding: 18px;
  }

  .category-section .us-map-object {
    min-height: 260px;
  }

  .category-section .state-finder-panel {
    margin-top: 30px;
  }

  .category-section .sidebar-posts {
    margin-top: 30px;
  }

  .category-section .state-scroll-box {
    margin-top: 0;
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .category-section .map-title {
    font-size: 22px;
  }

  .category-section .map-selection-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-section .map-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .category-section .map-reset-button {
    width: 100%;
    justify-content: center;
  }

  .category-section .map-mode-button {
    width: 100%;
    justify-content: center;
  }

  .category-section .hero-post .post-title {
    font-size: 20px;
  }

  .category-section .hero-post .post-content {
    padding: 20px;
  }

  .category-section .hero-post .author-info .author-avatar {
    width: 40px;
    height: 40px;
  }

  .category-section .state-search {
    height: 48px;
  }

  .category-section .state-scroll-box {
    max-height: 420px;
  }

  .category-section .sidebar-post {
    padding: 15px;
    align-items: flex-start;
  }

  .category-section .sidebar-post .post-img img {
    width: 60px;
    height: 60px;
  }

  .category-section .sidebar-post .title {
    font-size: 13px;
  }

  .category-section .sidebar-post .state-card-side {
    min-width: 92px;
    gap: 4px;
  }

  .category-section .sidebar-post .state-card-count {
    font-size: 10px;
  }

  .category-section .sidebar-post .state-card-link {
    font-size: 11px;
  }

  .category-section .grid-post .title {
    font-size: 16px;
  }

  .category-section .grid-post .post-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Latest Posts Section
--------------------------------------------------------------*/
.latest-posts {
  --card-radius: 0;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 85%);
  --soft-shadow: 0 12px 30px
    color-mix(in srgb, var(--default-color), transparent 92%);
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.latest-posts .section-title {
  padding-bottom: 28px;
  margin-bottom: 0;
}

.latest-posts .latest-posts-layout {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}

.latest-posts .latest-posts-layout .row {
  width: 100%;
  min-height: clamp(560px, 68vh, 760px);
}

.latest-posts .featured-post {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background-color: var(--surface-color);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.latest-posts .featured-post .featured-media {
  height: 100%;
}

.latest-posts .featured-post .featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  display: block;
}

.latest-posts .featured-post .featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--default-color), transparent 70%) 5%,
    color-mix(in srgb, var(--default-color), transparent 85%) 40%,
    transparent 75%
  );
  pointer-events: none;
}

.latest-posts .featured-post .featured-content {
  position: absolute;
  inset-inline: 20px;
  bottom: 18px;
  color: var(--contrast-color);
  z-index: 2;
}

.latest-posts .featured-post .featured-content .date-badge {
  position: absolute;
  top: -14px;
  left: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 0;
  padding: 8px 10px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.latest-posts .featured-post .featured-content .date-badge .day {
  display: block;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}

.latest-posts .featured-post .featured-content .date-badge .mon {
  display: block;
  font-size: 12px;
  opacity: 0.95;
}

.latest-posts .featured-post .featured-content .cat-badge {
  margin-left: 72px;
  margin-bottom: 10px;
}

.latest-posts .featured-post .featured-content .title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  margin: 4px 0 10px 72px;
  color: var(--contrast-color);
}

.latest-posts .featured-post .featured-content .excerpt {
  margin: 0 0 14px 72px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.latest-posts .featured-post .featured-content .meta {
  margin-left: 72px;
  margin-bottom: 10px;
}

.latest-posts .featured-post .featured-content .meta i {
  color: var(--accent-color);
  font-size: 16px;
}

.latest-posts .featured-post .featured-content .meta span {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.latest-posts .featured-post .featured-content .meta .sep {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.latest-posts .featured-post .featured-content .readmore {
  margin-left: 72px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  color: var(--contrast-color);
  transition: 0.3s;
}

.latest-posts .featured-post .featured-content .readmore i {
  font-size: 16px;
}

.latest-posts .featured-post .featured-content .readmore:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.latest-posts .featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px
    color-mix(in srgb, var(--default-color), transparent 88%);
}

.latest-posts .featured-post:hover .featured-media img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .latest-posts .featured-post {
    min-height: 360px;
  }

  .latest-posts .featured-post .featured-content .title {
    font-size: 22px;
  }
}

.latest-posts .compact-post {
  background-color: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  align-items: stretch;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.latest-posts .compact-post .thumb {
  height: 100%;
  overflow: hidden;
}

.latest-posts .compact-post .thumb img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.3s ease;
}

.latest-posts .compact-post .content {
  padding: 18px 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.latest-posts .compact-post .content .meta {
  margin-bottom: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.latest-posts .compact-post .content .meta .date,
.latest-posts .compact-post .content .meta .category {
  white-space: nowrap;
}

.latest-posts .compact-post .content .meta .dot {
  margin-inline: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.latest-posts .compact-post .content .title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.latest-posts .compact-post .content .readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.latest-posts .compact-post .content .readmore i {
  font-size: 16px;
}

.latest-posts .compact-post:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.latest-posts .compact-post:hover .content .title,
.latest-posts .compact-post:hover .content .readmore {
  color: var(--accent-color);
}

.latest-posts .compact-post .compact-post-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.latest-posts .compact-post:hover .thumb img {
  transform: scale(1.03);
}

@media (max-width: 576px) {
  .latest-posts .compact-post {
    grid-template-columns: 90px 1fr;
  }
}

.latest-posts .latest-posts-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 24px;
  height: 100%;
}

.latest-posts .cat-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.latest-posts .cat-badge.inverse {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .latest-posts {
    min-height: auto;
    display: block;
  }

  .latest-posts .latest-posts-layout {
    display: block;
  }

  .latest-posts .latest-posts-layout .row {
    min-height: 0;
  }

  .latest-posts .latest-posts-side {
    grid-template-rows: none;
    height: auto;
  }
}

/*--------------------------------------------------------------
# Category Postst Section
--------------------------------------------------------------*/
.category-postst article {
  height: 100%;
}

.category-postst .post-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-postst .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-postst .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 5px 0;
}

.category-postst .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.category-postst .title a:hover {
  color: var(--accent-color);
}

.category-postst .meta-top {
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-postst .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.category-postst .meta-top i {
  font-size: 24px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-postst .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details-page .page-title.park-page-breadcrumbs {
  padding-top: 88px;
}

.blog-details-page .page-title.park-page-breadcrumbs nav {
  padding: 18px 0;
}

@media (max-width: 1199px) {
  .blog-details-page .page-title.park-page-breadcrumbs {
    padding-top: 76px;
  }
}

.blog-details .article-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  margin: -60px -15px 4rem;
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-details .article-hero {
    height: 60vh;
    min-height: 500px;
    margin: -60px -15px 3rem;
  }
}

.blog-details .article-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-details .article-hero .hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .article-hero .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.blog-details .article-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
  text-align: center;
}

.blog-details .article-hero .hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

@media (max-width: 768px) {
  .blog-details .article-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.blog-details .article-hero .hero-content .hero-excerpt {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.blog-details .article-hero .hero-content .hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-details .article-hero .hero-content .hero-stats span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.6rem 0.95rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .blog-details .article-hero .hero-content .hero-stats {
    text-align: center;
  }
}

.blog-details .article-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .blog-details .article-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .blog-details .article-body .sidebar-navigation {
    order: 2;
  }
}

.blog-details .article-body .sidebar-navigation .nav-sticky {
  position: sticky;
  top: 100px;
  background: var(--surface-color);
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.blog-details .article-body .sidebar-navigation .nav-sticky h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-body .sidebar-navigation .nav-sticky h3 i {
  color: var(--accent-color);
}

.blog-details .article-body .sidebar-navigation .nav-sticky .content-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.blog-details .article-body .sidebar-navigation .nav-sticky .content-nav li {
  margin-bottom: 0.75rem;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .content-nav
  li
  .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .content-nav
  li
  .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent-color);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .content-nav
  li
  .nav-link:hover,
.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .content-nav
  li
  .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding-left: 1.5rem;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .content-nav
  li
  .nav-link:hover::before,
.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .content-nav
  li
  .nav-link.active::before {
  height: 20px;
}

.blog-details .article-body .sidebar-navigation .nav-sticky .reading-progress {
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .reading-progress
  .progress-bar {
  width: 100%;
  height: 4px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .reading-progress
  .progress-bar
  .progress-fill {
  height: 100%;
  background: var(--accent-color);
  width: 25%;
  transition: width 0.3s ease;
}

.blog-details
  .article-body
  .sidebar-navigation
  .nav-sticky
  .reading-progress
  .progress-text {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .blog-details .article-body .main-content {
    order: 1;
  }
}

.blog-details .article-body .main-content .content-block {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
}

.blog-details .article-body .main-content .content-block:not(:last-child) {
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
}

.blog-details .article-body .main-content .content-block h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.blog-details .article-body .main-content .content-block h2 i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.blog-details .article-body .main-content .content-block .featured-quote {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .featured-quote
  .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .featured-quote
  .quote-icon
  i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .featured-quote
  blockquote {
  margin: 0;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .featured-quote
  blockquote
  p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .featured-quote
  blockquote
  footer {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
}

.blog-details .article-body .main-content .content-block .content-with-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-body .main-content .content-block .content-with-media {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .media-element {
  display: flex;
  flex-direction: column;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .media-element
  .content-image {
  width: 100%;
  flex: 1 1 auto;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .media-element
  .image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.75rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .text-content {
  display: flex;
}

.blog-details .article-body .main-content .content-block .content-with-media .stats-grid {
  width: 100%;
  height: 100%;
}

.blog-details .article-body .main-content .content-block .park-overview-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.blog-details .article-body .main-content .content-block .park-overview-stack .overview-facts {
  width: 100%;
}

.blog-details .article-body .main-content .content-block .park-overview-stack .stats-grid .stat-item .stat-number {
  white-space: normal;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .stats-grid,
.blog-details
  .article-body
  .main-content
  .content-block
  .park-overview-stack
  .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .blog-details
    .article-body
    .main-content
    .content-block
    .content-with-media
    .stats-grid,
  .blog-details
    .article-body
    .main-content
    .content-block
    .park-overview-stack
    .stats-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .stats-grid
  .stat-item,
.blog-details
  .article-body
  .main-content
  .content-block
  .park-overview-stack
  .stats-grid
  .stat-item {
  min-width: 0;
  text-align: center;
  padding: 1.15rem 1.25rem;
  background: var(--surface-color);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .stats-grid
  .stat-item.stat-item-builder,
.blog-details
  .article-body
  .main-content
  .content-block
  .park-overview-stack
  .stats-grid
  .stat-item.stat-item-builder {
  grid-column: 1/-1;
}

@media (max-width: 768px) {
  .blog-details
    .article-body
    .main-content
    .content-block
    .content-with-media
    .stats-grid
    .stat-item,
  .blog-details
    .article-body
    .main-content
    .content-block
    .park-overview-stack
    .stats-grid
    .stat-item {
    grid-column: auto;
  }
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .stats-grid
  .stat-item
  .stat-number,
.blog-details
  .article-body
  .main-content
  .content-block
  .park-overview-stack
  .stats-grid
  .stat-item
  .stat-number {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .stats-grid
  .stat-item
  .stat-number.stat-number-builder,
.blog-details
  .article-body
  .main-content
  .content-block
  .park-overview-stack
  .stats-grid
  .stat-item
  .stat-number.stat-number-builder {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .content-with-media
  .stats-grid
  .stat-item
  .stat-label,
.blog-details
  .article-body
  .main-content
  .content-block
  .park-overview-stack
  .stats-grid
  .stat-item
  .stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-body .main-content .content-block .park-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-body .main-content .content-block .park-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

.blog-details .article-body .main-content .content-block .park-gallery .gallery-item {
  margin: 0;
}

.blog-details .article-body .main-content .content-block .park-gallery .gallery-item.gallery-item-primary {
  grid-row: auto;
}

.blog-details .article-body .main-content .content-block .park-gallery .gallery-item .gallery-media {
  height: 100%;
  min-height: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-color);
}

.blog-details .article-body .main-content .content-block .park-gallery .gallery-item .gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-details .article-body .main-content .content-block .park-gallery .gallery-item:hover .gallery-media img {
  transform: scale(1.03);
}

.blog-details .article-body .main-content .content-block .directions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
}

@media (max-width: 992px) {
  .blog-details .article-body .main-content .content-block .directions-layout {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-body .main-content .content-block .directions-layout .directions-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-details .article-body .main-content .content-block .directions-layout .directions-map-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-details .article-body .main-content .content-block .directions-layout .address-card {
  background: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
}

.blog-details .article-body .main-content .content-block .directions-layout .address-card .address-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.blog-details .article-body .main-content .content-block .directions-layout .address-card .address-value {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--heading-color);
}

.blog-details .article-body .main-content .content-block .directions-layout .directions-map {
  min-height: 285px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: var(--surface-color);
}

.blog-details .article-body .main-content .content-block .directions-layout .directions-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 285px;
  border: 0;
}

.blog-details .article-body .main-content .content-block .feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-body .main-content .content-block .feature-cards {
    grid-template-columns: 1fr;
  }
}

.blog-details
  .article-body
  .main-content
  .content-block
  .feature-cards
  .feature-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .feature-cards
  .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .feature-cards
  .feature-card
  .card-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .feature-cards
  .feature-card
  .card-icon
  i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .feature-cards
  .feature-card
  h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .feature-cards
  .feature-card
  p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.blog-details .article-body .main-content .content-block .split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-body .main-content .content-block .split-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-benefits {
  margin-top: 2rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-benefits
  .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-benefits
  .benefit-item
  i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-benefits
  .benefit-item
  span {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .dashboard-header
  h4 {
  margin: 0;
  color: var(--heading-color);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .dashboard-header
  .status-indicator {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .dashboard-header
  .status-indicator.online {
  background: color-mix(in srgb, #22c55e, transparent 90%);
  color: #22c55e;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .vital-signs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .vital-signs
  .vital-item {
  padding: 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .vital-signs
  .vital-item
  .vital-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .split-content
  .monitoring-dashboard
  .vital-signs
  .vital-item
  .vital-value {
  font-weight: 600;
  color: var(--heading-color);
}

.blog-details .article-body .main-content .content-block .challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-body .main-content .content-block .challenges-grid {
    grid-template-columns: 1fr;
  }
}

.blog-details
  .article-body
  .main-content
  .content-block
  .challenges-grid
  .challenge-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .challenges-grid
  .challenge-card
  .challenge-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .challenges-grid
  .challenge-card
  .challenge-header
  i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .challenges-grid
  .challenge-card
  .challenge-header
  h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.2rem;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .challenges-grid
  .challenge-card
  p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.blog-details .article-body .main-content .content-block .future-outlook {
  margin: 3rem 0;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .future-outlook
  .outlook-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 16px;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .future-outlook
  .outlook-item
  .outlook-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  min-width: 80px;
}

.blog-details
  .article-body
  .main-content
  .content-block
  .future-outlook
  .outlook-item
  .outlook-content
  h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details
  .article-body
  .main-content
  .content-block
  .future-outlook
  .outlook-item
  .outlook-content
  p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-details .article-actions {
  background: var(--surface-color);
  border-radius: 0;
  padding: 3rem;
  margin-top: 4rem;
}

.blog-details .article-actions .engagement-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .blog-details .article-actions .engagement-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-details .article-actions .engagement-section h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.blog-details .article-actions .engagement-section .share-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-actions .engagement-section .share-options .share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details
  .article-actions
  .engagement-section
  .share-options
  .share-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details
  .article-actions
  .engagement-section
  .share-options
  .share-btn.facebook:hover {
  background: #4267b2;
}

.blog-details
  .article-actions
  .engagement-section
  .share-options
  .share-btn.instagram:hover {
  background: #e1306c;
}

.blog-details
  .article-actions
  .engagement-section
  .share-options
  .share-btn.x:hover {
  background: #111111;
}

.blog-details
  .article-actions
  .engagement-section
  .share-options
  .share-btn.email:hover {
  background: #34495e;
}

.blog-details .article-actions .engagement-section .share-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.blog-details .article-actions .engagement-section .share-status:not(:empty) {
  padding: 0.75rem 0.9rem;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 55%);
}

.blog-details .article-actions .engagement-section .share-status.sent-message {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-left-color: var(--accent-color);
}

.blog-details .article-actions .engagement-section .share-status.error-message {
  color: #b42318;
  background: color-mix(in srgb, #b42318, transparent 92%);
  border-left-color: #b42318;
}

.blog-details .article-actions .engagement-section .reaction-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details
  .article-actions
  .engagement-section
  .reaction-buttons
  .reaction-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border: none;
  border-radius: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-details
  .article-actions
  .engagement-section
  .reaction-buttons
  .reaction-btn
  .count {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-details
  .article-actions
  .engagement-section
  .reaction-buttons
  .reaction-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

  position: relative;
  overflow: hidden;
}

.blog-author .author-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    transparent 70%
  );
  opacity: 0.6;
  z-index: 0;
}

.blog-author .author-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .blog-author .author-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
}

.blog-author .author-image-container {
  position: relative;
  flex-shrink: 0;
}

.blog-author .author-image-container .author-image {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-author .author-image-container .expertise-tags {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  width: max-content;
}

.blog-author .author-image-container .expertise-tags span {
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-author .author-intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-author .author-intro .name-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .blog-author .author-intro .name-block {
    justify-content: center;
  }
}

.blog-author .author-intro .name-block .author-name {
  font-size: 1.75rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-intro .name-block .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 90%),
    color-mix(in srgb, var(--accent-color), transparent 70%)
  );
  color: var(--accent-color);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.blog-author .author-intro .name-block .verified-badge i {
  font-size: 1rem;
}

.blog-author .author-intro .author-tagline {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.blog-author .author-content {
  position: relative;
  z-index: 1;
}

.blog-author .author-content .content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .blog-author .author-content .content-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-author .author-content .bio-section .bio-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

.blog-author .author-content .bio-section .author-metrics {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-content .bio-section .author-metrics {
    justify-content: center;
  }
}

.blog-author .author-content .bio-section .author-metrics .metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.blog-author .author-content .bio-section .author-metrics .metric i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.blog-author .author-content .featured-posts h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.blog-author .author-content .featured-posts .post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-author .author-content .featured-posts .post-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-author .author-content .featured-posts .post-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.blog-author .author-content .featured-posts .post-list li span {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

.blog-author .author-content .featured-posts .post-list li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-author .author-content .featured-posts .post-list li:hover i {
  transform: translateX(3px);
}

.blog-author .author-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 767.98px) {
  .blog-author .author-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.blog-author .author-footer .connect-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .blog-author .author-footer .connect-links {
    justify-content: center;
  }
}

.blog-author .author-footer .connect-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-author .author-footer .connect-links .social-link i {
  font-size: 1rem;
}

.blog-author .author-footer .connect-links .social-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-author .author-footer .subscribe-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-author .author-footer .subscribe-button i {
  transition: transform 0.3s ease;
}

.blog-author .author-footer .subscribe-button:hover {
  background-color: var(--heading-color);
}

.blog-author .author-footer .subscribe-button:hover i {
  transform: rotate(15deg);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--accent-color), transparent 40%),
    color-mix(in srgb, var(--accent-color), transparent 90%)
  );
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper .avatar-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-color), transparent 14%),
    color-mix(in srgb, var(--surface-color), white 8%)
  );
  color: var(--contrast-color);
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper .avatar-icon {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper .avatar-icon i {
  font-size: 24px;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper .avatar-icon i {
    font-size: 32px;
  }
}

.blog-comments .avatar-wrapper .avatar-icon:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4caf50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 0;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 0;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding-top: 30px;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .comment-reply-target {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-left: 3px solid var(--accent-color);
}

.blog-comment-form .comment-reply-target p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 0.96rem;
}

.blog-comment-form .comment-reply-target p i {
  color: var(--accent-color);
  font-size: 1rem;
}

.blog-comment-form .comment-reply-target p strong {
  color: var(--heading-color);
}

.blog-comment-form .comment-reply-target .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);
  background: var(--surface-color);
  color: var(--heading-color);
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.blog-comment-form .comment-reply-target .action-btn:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .comment-reply-target {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-comment-form .comment-reply-target .action-btn {
    width: 100%;
    justify-content: center;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Author Profile Section
--------------------------------------------------------------*/
.author-profile .author-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-card .author-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.author-profile .author-card .author-info {
  text-align: center;
}

.author-profile .author-card .author-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.author-profile .author-card .author-info .designation {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.author-profile .author-card .author-info .author-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-stats {
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 1rem 0;
}

.author-profile .author-card .author-stats .stat-item h4 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.author-profile .author-card .author-stats .stat-item p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile .author-card .social-links {
  margin-top: 1.5rem;
}

.author-profile .author-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.author-profile .author-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.author-profile .author-card .social-links a i {
  font-size: 1rem;
}

.author-profile .author-content {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-content .content-header {
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.author-profile .author-content .content-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.author-profile .author-content .content-body .expertise-areas h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.author-profile .author-content .content-body .expertise-areas .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.author-profile .author-content .content-body .expertise-areas .tags span {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .expertise-areas
  .tags
  span:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.author-profile .author-content .content-body .featured-articles h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-body .featured-articles .article-card {
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card:hover {
  transform: translateY(-5px);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-img {
  height: 200px;
  overflow: hidden;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-img:hover
  img {
  transform: scale(1.1);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details {
  padding: 1.25rem;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-category {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  h5
  a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  h5
  a:hover {
  color: var(--accent-color);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-meta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-meta
  span {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

.author-profile
  .author-content
  .content-body
  .featured-articles
  .article-card
  .article-details
  .post-meta
  span
  i {
  margin-right: 0.35rem;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .author-profile .author-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .author-profile .featured-articles .article-card {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-visuals {
  position: relative;
  padding: 0 88px 110px 0;
}

.about .about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.about .about-img img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.about .about-secondary-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44%, 280px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  border: 4px solid var(--background-color);
}

.about .about-secondary-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about .about-note {
  position: absolute;
  top: 28px;
  left: 24px;
  max-width: 230px;
  padding: 18px 20px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--background-color) 84%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.about .about-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--contrast-color);
}

.about .experience-badge {
  position: absolute;
  bottom: 18px;
  left: 24px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 160px;
}

.about .experience-badge h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--accent-color);
}

.about .experience-badge p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--heading-color);
}

.about .projects-badge {
  position: absolute;
  top: 26px;
  right: 0;
  background-color: var(--accent-color);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  text-align: center;
  max-width: 190px;
}

.about .projects-badge h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--contrast-color);
}

.about .projects-badge p {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .feature-item .feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.about .feature-item .feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.about .feature-item .feature-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .check-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 15px 38px;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .about .about-visuals {
    padding: 0 42px 92px 0;
  }

  .about .about-note {
    max-width: 200px;
    padding: 16px 18px;
  }

  .about .experience-badge {
    bottom: 14px;
    left: 18px;
    padding: 15px;
    min-width: 140px;
  }

  .about .experience-badge h2 {
    font-size: 2.8rem;
  }

  .about .experience-badge p {
    font-size: 0.8rem;
  }

  .about .projects-badge {
    top: 15px;
    right: 0;
    padding: 15px;
    min-width: 140px;
    border-radius: 10px;
  }

  .about .projects-badge h2 {
    font-size: 2rem;
  }

  .about .projects-badge p {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .about .about-visuals {
    padding: 0 0 86px;
  }

  .about .about-secondary-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin: -52px 0 0 auto;
  }

  .about .about-note {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin-top: 16px;
  }

  .about .experience-badge {
    padding: 12px;
    min-width: 120px;
    bottom: 100px;
    left: 14px;
  }

  .about .experience-badge h2 {
    font-size: 2.2rem;
  }

  .about .experience-badge p {
    font-size: 0.75rem;
  }

  .about .projects-badge {
    padding: 12px;
    min-width: 120px;
    right: 14px;
  }

  .about .projects-badge h2 {
    font-size: 1.8rem;
  }

  .about .projects-badge p {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# About Highlights Section
--------------------------------------------------------------*/
.about-highlights .process-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-highlights .process-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-highlights .process-card .process-body {
  padding: 1.6rem;
}

.about-highlights .process-card .process-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.about-highlights .process-card .process-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.about-highlights .process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-highlights .manifesto-panel {
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface-color), #000000 12%),
    color-mix(in srgb, var(--background-color), #1a1a1a 18%)
  );
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.about-highlights .manifesto-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.about-highlights h3 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  margin-bottom: 1rem;
}

.about-highlights .manifesto-panel p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.about-highlights .manifesto-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.about-highlights .manifesto-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 15%);
  color: var(--contrast-color);
}

.about-highlights .manifesto-list i {
  color: var(--accent-color);
  font-size: 1.45rem;
  line-height: 1;
}

.about-highlights .manifesto-list span {
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .about-highlights .process-card img {
    height: 220px;
  }
}

/*--------------------------------------------------------------
# Park Builders Page
--------------------------------------------------------------*/
.park-builders-page .page-title.builders-page-breadcrumbs {
  padding-top: 88px;
}

.park-builders-page .page-title.builders-page-breadcrumbs nav {
  padding: 18px 0;
}

.park-builders-page .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.park-builders-page .btn-primary,
.park-builders-page .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.park-builders-page .btn-primary {
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.park-builders-page .btn-primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.park-builders-page .btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: transparent;
  color: var(--default-color);
}

.park-builders-page .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.park-builders-overview .builders-visual-stack {
  position: relative;
  padding: 0 84px 110px 0;
}

.park-builders-overview .builders-main-image,
.park-builders-overview .builders-secondary-image {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.park-builders-overview .builders-main-image img,
.park-builders-overview .builders-secondary-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.park-builders-overview .builders-main-image img {
  aspect-ratio: 4/5;
}

.park-builders-overview .builders-secondary-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 270px);
  border: 4px solid var(--background-color);
}

.park-builders-overview .builders-secondary-image img {
  aspect-ratio: 4/5;
}

.park-builders-overview .builders-note {
  position: absolute;
  left: 24px;
  bottom: 26px;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 8%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.park-builders-overview .builders-note p {
  margin: 0;
  line-height: 1.7;
}

.park-builders-overview .builders-copy-block h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.park-builders-overview .builders-copy-block .lead {
  color: var(--contrast-color);
  font-size: 1.08rem;
  line-height: 1.8;
}

.park-builders-overview .builders-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.park-builders-overview .signal-card {
  height: 100%;
  padding: 22px 20px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.park-builders-overview .signal-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
  font-size: 1.35rem;
}

.park-builders-overview .signal-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.park-builders-overview .signal-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.park-builders-directory .builder-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.park-builders-directory .builder-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 62%);
}

.park-builders-directory .builder-card-header h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.park-builders-directory .builder-card-header p {
  margin: 0;
  line-height: 1.8;
}

.park-builders-directory .builder-points,
.park-builders-brief .brief-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.park-builders-directory .builder-points li,
.park-builders-brief .brief-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.7;
}

.park-builders-directory .builder-points li i,
.park-builders-brief .brief-checklist li i {
  color: var(--accent-color);
  margin-top: 4px;
  font-size: 1rem;
}

.park-builders-directory .builder-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding-top: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 0.94rem;
}

.park-builders-directory .builder-contact span,
.park-builders-directory .builder-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.park-builders-directory .builder-contact i {
  color: var(--accent-color);
}

.park-builders-directory .builder-contact a {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.park-builders-directory .builder-contact a:hover {
  color: var(--accent-color);
}

.park-builders-directory .builders-disclaimer {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 12%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.park-builders-directory .builders-disclaimer p {
  margin: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.park-builders-playbook .playbook-card {
  padding: 28px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.park-builders-playbook .playbook-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 84%);
  color: var(--accent-color);
  font-size: 1.05rem;
  font-weight: 700;
}

.park-builders-playbook h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.park-builders-playbook p,
.park-builders-brief p,
.park-builders-cta p {
  margin: 0;
  line-height: 1.8;
}

.park-builders-brief .brief-panel,
.park-builders-cta .cta-shell {
  padding: 34px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.park-builders-brief h2,
.park-builders-cta h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  margin-bottom: 16px;
}

.park-builders-brief .brief-image-wrap {
  overflow: hidden;
  border-radius: 0;
  min-height: 100%;
}

.park-builders-brief .brief-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.park-builders-cta .cta-shell {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 4%) 0%, color-mix(in srgb, var(--accent-color), transparent 84%) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.park-builders-cta .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1199px) {
  .park-builders-page .page-title.builders-page-breadcrumbs {
    padding-top: 76px;
  }
}

@media (max-width: 991.98px) {
  .park-builders-overview .builders-visual-stack {
    padding: 0 36px 88px 0;
  }

  .park-builders-overview .builders-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .park-builders-directory .builder-card,
  .park-builders-playbook .playbook-card,
  .park-builders-brief .brief-panel,
  .park-builders-cta .cta-shell {
    padding: 26px;
  }

  .park-builders-cta .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .park-builders-overview .builders-visual-stack {
    padding: 0 0 76px;
  }

  .park-builders-overview .builders-secondary-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 70%;
    margin: -54px 0 0 auto;
  }

  .park-builders-overview .builders-note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
  }

  .park-builders-overview .builders-signal-grid {
    grid-template-columns: 1fr;
  }

  .park-builders-cta .cta-actions {
    flex-direction: column;
  }

  .park-builders-brief .brief-image-wrap img {
    min-height: 320px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
}

.team .team-member:hover .member-image:before {
  opacity: 1;
}

.team .team-member:hover .member-image img {
  transform: scale(1.1);
}

.team .team-member:hover .social-overlay {
  transform: translateY(0);
  opacity: 1;
}

.team .team-member:hover .member-info h4 {
  color: var(--accent-color);
}

.team .member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 50%) 100%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

.team .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

.team .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.team .social-icons a:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: scale(1.1);
}

.team .member-info {
  padding: 25px 20px 30px;
  text-align: center;
  position: relative;
}

.team .member-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 60%) 100%
  );
  border-radius: 2px;
}

.team .member-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
  transition: 0.3s;
}

.team .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team .member-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .team .team-member {
    margin-bottom: 30px;
  }

  .team .team-member .member-image {
    height: 250px;
  }

  .team .team-member .member-info {
    padding: 20px 15px 25px;
  }

  .team .team-member .member-info h4 {
    font-size: 20px;
  }

  .team .team-member .member-info p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 40%)
  );
  color: var(--contrast-color);
  border-radius: 0;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .info-card .card-content a {
  color: var(--contrast-color);
  opacity: 0.9;
}

.contact .info-card .card-content a:hover {
  color: var(--contrast-color);
  opacity: 1;
}

.contact .contact-spotlight {
  margin-top: 24px;
  border-radius: 0;
  overflow: hidden;
}

.contact .contact-spotlight .contact-spotlight-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  display: block;
}

@media (max-width: 768px) {
  .contact .contact-spotlight .contact-spotlight-image {
    height: 170px;
  }
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background-color: transparent;
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: transparent;
  transform: translateY(-5px);
}

#home-contact .social-links-panel .social-icons a {
  background: transparent;
  color: var(--accent-color);
}

#home-contact .social-links-panel .social-icons a:hover {
  background: transparent;
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 0;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(
    120deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), var(--accent-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 30%)
  );
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

#home-contact .contact-info-panel {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface-color), white 10%),
    color-mix(in srgb, var(--surface-color), var(--background-color) 18%)
  );
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (min-width: 992px) {
  #home-contact .contact-info-panel {
    padding: 28px 24px;
    gap: 10px;
  }
}

#home-contact .contact-info-header h3 {
  color: var(--heading-color);
}

@media (min-width: 992px) {
  #home-contact .contact-info-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

#home-contact .contact-info-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  opacity: 1;
}

@media (min-width: 992px) {
  #home-contact .contact-info-header p {
    font-size: 14px;
    line-height: 1.5;
  }

  #home-contact .contact-info-header {
    margin-bottom: 0;
  }

  #home-contact .contact-info-cards {
    gap: 14px;
    margin-bottom: 0;
  }
}

#home-contact .info-card {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

@media (min-width: 992px) {
  #home-contact .info-card {
    padding: 16px;
  }
}

#home-contact .info-card:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

#home-contact .info-card .icon-container {
  background: color-mix(in srgb, var(--accent-color), transparent 84%);
}

#home-contact .info-card .icon-container i {
  color: var(--accent-color);
}

#home-contact .info-card .card-content h4 {
  color: var(--heading-color);
}

#home-contact .info-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  opacity: 1;
}

#home-contact .info-card .card-content a {
  color: var(--heading-color);
}

#home-contact .info-card .card-content a:hover {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  #home-contact .contact-spotlight {
    margin-top: 0;
    flex: 1 1 auto;
    min-height: 168px;
  }

  #home-contact .contact-spotlight .contact-spotlight-image {
    height: 100%;
    padding: 18px;
  }
}

#home-contact .social-links-panel {
  margin-top: 24px;
}

@media (min-width: 992px) {
  #home-contact .social-links-panel {
    margin-top: 0;
  }
}

#home-contact .social-links-panel h5 {
  color: var(--heading-color);
}

@media (min-width: 992px) {
  #home-contact .social-links-panel h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

#home-contact .social-links-panel .social-icons a {
  background: transparent;
  color: var(--accent-color);
}

#home-contact .social-links-panel .social-icons a:hover {
  background: transparent;
}

/*--------------------------------------------------------------
# Search Results Posts Section
--------------------------------------------------------------*/
.search-results-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.search-results-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.search-results-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.search-results-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.search-results-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.search-results-posts .title a:hover {
  color: var(--accent-color);
}

.search-results-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.search-results-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.search-results-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 3 Section
--------------------------------------------------------------*/
.pagination-3 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-3 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-3 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-3 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-3 li a.active,
.pagination-3 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-3 li a.active a,
.pagination-3 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0 80px;
  margin: 0 auto;
}

.error-404 .error-404-shell {
  padding: 12px 0;
}

.error-404 .error-copy {
  max-width: 560px;
}

.error-404 .error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  font-size: 2.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 560px;
  margin: 0;
}

.error-404 .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.error-404 .error-actions .btn {
  min-width: 180px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.error-404 .error-actions .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-outline-primary {
  border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  color: var(--accent-color);
}

.error-404 .error-actions .btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.error-404 .error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-404 .error-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.error-404 .error-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.error-404 .error-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 24px;
}

.error-404 .error-visual img {
  width: min(100%, 420px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-404-shell {
    padding: 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0;
  }

  .error-404 .error-actions .btn {
    width: 100%;
  }

  .error-404 .error-links a {
    width: 100%;
    justify-content: center;
  }

  .error-404 .error-visual {
    min-height: 360px;
    padding: 0;
  }

  .error-404 .error-visual img {
    width: min(100%, 320px);
    max-height: 320px;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Search Widget Widget
--------------------------------------------------------------*/
.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Categories Widget Widget
--------------------------------------------------------------*/
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.category-page .categories-widget #category-state-list,
.category-page .categories-widget #category-international-list {
  column-count: 2;
  column-gap: 20px;
}

.category-page .categories-widget #category-state-list li,
.category-page .categories-widget #category-international-list li {
  break-inside: avoid;
  page-break-inside: avoid;
}

.category-page .categories-widget #category-state-list a,
.category-page .categories-widget #category-international-list a {
  display: inline-block;
}

.news-page .categories-widget #news-state-list,
.news-page .categories-widget #news-international-list {
  column-count: 2;
  column-gap: 20px;
}

.news-page .categories-widget #news-state-list li,
.news-page .categories-widget #news-international-list li {
  break-inside: avoid;
  page-break-inside: avoid;
}

.news-page .categories-widget #news-state-list a,
.news-page .categories-widget #news-international-list a {
  display: inline-block;
}

/*--------------------------------------------------------------
# Recent Posts Widget Widget
--------------------------------------------------------------*/
.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Tags Widget Widget
--------------------------------------------------------------*/
.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Search Widget 2 Widget
--------------------------------------------------------------*/
.search-widget-2 form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget-2 form input[type="text"] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget-2 form input[type="text"]:focus {
  outline: none;
}

.search-widget-2 form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget-2 form button i {
  line-height: 0;
}

.search-widget-2 form button:hover {
  color: var(--accent-color);
}

.search-widget-2 form:is(:focus-within) {
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Categories Widget 2 Widget
--------------------------------------------------------------*/
.categories-widget-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget-2 ul li {
  padding-bottom: 10px;
}

.categories-widget-2 ul li:last-child {
  padding-bottom: 0;
}

.categories-widget-2 ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget-2 ul a:hover {
  color: var(--accent-color);
}

.categories-widget-2 ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Categories Widget 3 Widget
--------------------------------------------------------------*/
.categories-widget-3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget-3 ul li {
  padding-bottom: 10px;
}

.categories-widget-3 ul li:last-child {
  padding-bottom: 0;
}

.categories-widget-3 ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget-3 ul a:hover {
  color: var(--accent-color);
}

.categories-widget-3 ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Recent Posts Widget 2 Widget
--------------------------------------------------------------*/
.recent-posts-widget-2 .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Tags Widget 2 Widget
--------------------------------------------------------------*/
.tags-widget-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget-2 ul li {
  display: inline-block;
}

.tags-widget-2 ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget-2 ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget-2 ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# News Feed
--------------------------------------------------------------*/
.news-page .page-title.news-page-breadcrumbs {
  padding-top: 88px;
}

.news-page .page-title.news-page-breadcrumbs nav {
  padding: 18px 0;
}

@media (max-width: 1199px) {
  .news-page .page-title.news-page-breadcrumbs {
    padding-top: 76px;
  }
}

.homepage-news .news-card,
.state-news .news-card,
.news-directory .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.homepage-news .news-card.is-highlighted,
.state-news .news-card.is-highlighted,
.news-directory .news-card.is-highlighted {
  border-color: color-mix(in srgb, var(--accent-color), transparent 34%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.homepage-news .news-card-media,
.state-news .news-card-media,
.news-directory .news-card-media {
  position: relative;
}

.homepage-news .news-card-media img,
.state-news .news-card-media img,
.news-directory .news-card-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.homepage-news .news-card-badge,
.state-news .news-card-badge,
.news-directory .news-card-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.homepage-news .news-card-body,
.state-news .news-card-body,
.news-directory .news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.homepage-news .news-card-meta,
.state-news .news-card-meta,
.news-directory .news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.homepage-news .news-card h3,
.state-news .news-card h3,
.news-directory .news-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.homepage-news .news-card h3 a,
.state-news .news-card h3 a,
.news-directory .news-card h3 a {
  color: var(--heading-color);
}

.homepage-news .news-card p,
.state-news .news-card p,
.news-directory .news-card p {
  margin-bottom: 18px;
  line-height: 1.72;
}

.homepage-news .news-card-footer,
.state-news .news-card-footer,
.news-directory .news-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.homepage-news .news-card-phase,
.state-news .news-card-phase,
.news-directory .news-card-phase {
  color: color-mix(in srgb, var(--default-color), transparent 14%);
  font-size: 0.88rem;
  font-weight: 600;
}

.homepage-news .news-card-link,
.state-news .news-card-link,
.news-directory .news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 700;
}

.homepage-news {
  background: var(--background-color);
}

.homepage-news .blog-card,
.homepage-news .news-card {
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 40px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
}

.homepage-news .blog-card:hover,
.homepage-news .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.homepage-news .blog-image,
.homepage-news .news-card-media {
  height: 280px;
  overflow: hidden;
}

.homepage-news .blog-image img,
.homepage-news .news-card-media img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.homepage-news .blog-image:hover img,
.homepage-news .news-card-media:hover img {
  transform: scale(1.05);
}

.homepage-news .category-badge,
.homepage-news .news-card-badge {
  top: 20px;
  left: 20px;
  bottom: auto;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.homepage-news .blog-content,
.homepage-news .news-card-body {
  background: var(--surface-color);
  padding: 30px;
  height: 248px;
  overflow: hidden;
}

.homepage-news .homepage-news-grid {
  align-items: stretch;
}

.homepage-news .homepage-news-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
.homepage-news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.homepage-news-more-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.homepage-news-more-link:hover {
  background: transparent;
  color: var(--accent-color);
}

.homepage-news-more-link:hover i {
  transform: translateX(3px);
}

.homepage-news .post-meta,
.homepage-news .news-card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: none;
  letter-spacing: normal;
}

.homepage-news .publish-date,
.homepage-news .news-card-meta span {
  font-size: 13px;
  font-weight: 400;
}

.homepage-news .news-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .homepage-news .news-card h3 {
    font-size: 18px;
  }
}

.homepage-news .news-card h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.homepage-news .news-card h3 a:hover {
  color: var(--accent-color);
}

.homepage-news .news-card p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  flex: 1;
}

.homepage-news .news-inline-more {
  color: var(--accent-color);
  font-weight: 700;
  white-space: nowrap;
}

.homepage-news .news-inline-more:hover {
  color: var(--accent-color);
}

.homepage-news .homepage-news-grid {
  align-items: stretch;
}

.homepage-news .homepage-news-post {
  height: 100%;
}

.homepage-news .post-img {
  max-height: 440px;
  margin-bottom: 12px;
  overflow: hidden;
}

.homepage-news .post-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.homepage-news .meta-top {
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.homepage-news .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.homepage-news .meta-top i {
  font-size: 24px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.homepage-news .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.homepage-news .meta-top a:hover {
  color: var(--accent-color);
}

.homepage-news .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 5px 0 12px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .homepage-news .title {
    font-size: 18px;
  }
}

.homepage-news .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.homepage-news .title a:hover {
  color: var(--accent-color);
}

.homepage-news .homepage-news-post p {
  font-size: 15px;
  line-height: 1.72;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.homepage-news .blog-footer,
.homepage-news .news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.homepage-news .reading-time,
.homepage-news .news-card-phase {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.homepage-news .reading-time i,
.homepage-news .news-card-phase i {
  margin-right: 5px;
  font-size: 14px;
}

.homepage-news .btn-read-more,
.homepage-news .news-card-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 10%)
  );
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.homepage-news .btn-read-more span,
.homepage-news .news-card-link span {
  margin-right: 8px;
}

.homepage-news .btn-read-more i,
.homepage-news .news-card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.homepage-news .btn-read-more:hover,
.homepage-news .news-card-link:hover {
  transform: translateX(5px);
  background: linear-gradient(
    45deg,
    color-mix(in srgb, var(--accent-color), #000 10%),
    var(--accent-color)
  );
  color: var(--contrast-color);
}

.homepage-news .btn-read-more:hover i,
.homepage-news .news-card-link:hover i {
  transform: translateX(3px);
}

.state-news .section-title {
  text-align: left;
}

.state-news .section-title span {
  left: 12px;
  right: auto;
}

.news-directory .news-directory-post {
  height: 100%;
}

.news-directory .news-directory-post.is-highlighted .title a {
  color: var(--accent-color);
}

.news-directory .post-img {
  max-height: 440px;
  overflow: hidden;
}

.news-directory .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 5px 0;
}

.news-directory .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.news-directory .title a:hover {
  color: var(--accent-color);
}

.news-directory .meta-top {
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-directory .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.news-directory .meta-top i {
  font-size: 24px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.news-directory .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.news-directory p {
  margin-bottom: 0;
  line-height: 1.72;
}

.news-directory .news-feed-header {
  margin-bottom: 28px;
}

.news-directory .news-feed-header .news-feed-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-directory .news-feed-header h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  margin-bottom: 12px;
}

.news-directory .news-feed-header p {
  max-width: 640px;
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 767.98px) {
  .homepage-news .news-card-body,
  .state-news .news-card-body,
  .news-directory .news-card-body {
    padding: 18px;
  }

  .homepage-news .news-card-footer,
  .state-news .news-card-footer,
  .news-directory .news-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .homepage-news .blog-content,
  .homepage-news .news-card-body {
    padding: 25px;
  }

  .homepage-news .news-card h3 {
    font-size: 18px;
  }

  .homepage-news .blog-footer,
  .homepage-news .news-card-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .homepage-news .btn-read-more,
  .homepage-news .news-card-link {
    align-self: flex-end;
  }
}

/*--------------------------------------------------------------
# Shop Page
--------------------------------------------------------------*/
.shop-page .page-title.shop-page-breadcrumbs {
  padding-top: 88px;
}

.shop-page .page-title.shop-page-breadcrumbs nav {
  padding: 18px 0;
}

.shop-page .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.shop-page .btn-primary,
.shop-page .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .shop-page .page-title.shop-page-breadcrumbs {
    padding-top: 76px;
  }
}

.shop-page .btn-primary {
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.shop-page .btn-primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 18%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 18%);
  color: var(--contrast-color);
}

.shop-page .btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: transparent;
  color: var(--default-color);
}

.shop-page .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.shop-intro .shop-intro-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.shop-intro .shop-intro-copy .lead {
  color: var(--contrast-color);
  font-size: 1.05rem;
  line-height: 1.85;
}

.shop-intro .shop-intro-copy p {
  line-height: 1.8;
}

.shop-intro .shop-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.shop-intro .shop-signal-card {
  padding: 18px 20px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.shop-intro .shop-signal-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  color: var(--heading-color);
}

.shop-intro .shop-signal-card span {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 0.92rem;
}

.shop-intro .sample-mode-banner {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 2%) 0%, color-mix(in srgb, var(--accent-color), transparent 88%) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
}

.shop-intro .sample-mode-banner i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.shop-intro .sample-mode-banner h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.shop-intro .sample-mode-banner p {
  margin: 0;
  line-height: 1.7;
}

.shop-intro .shop-intro-visual {
  position: relative;
  padding: 18px 0 110px 90px;
}

.shop-intro .shop-intro-visual.is-loading {
  min-height: 620px;
}

.shop-intro .shop-intro-loading-block,
.shop-catalog .shop-loading-card {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 12%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.shop-intro .shop-intro-loading-block::after,
.shop-catalog .shop-loading-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, white, transparent 84%) 45%,
    transparent 100%
  );
  animation: shopLoadingSweep 1.35s ease-in-out infinite;
}

.shop-intro .shop-intro-loading-block.primary {
  width: 100%;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.shop-intro .shop-intro-loading-block.secondary {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(42%, 250px);
  aspect-ratio: 4 / 5;
  border: 4px solid var(--background-color);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.shop-intro .shop-featured-card.loading {
  min-height: 210px;
}

.shop-intro .shop-featured-card.loading .featured-line {
  display: block;
  height: 14px;
  margin-bottom: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 86%);
}

.shop-intro .shop-featured-card.loading .featured-line.short {
  width: 36%;
}

.shop-intro .shop-featured-card.loading .featured-line.medium {
  width: 62%;
}

.shop-intro .shop-featured-card.loading .featured-line.long {
  width: 100%;
}

.shop-intro .shop-featured-card.loading .featured-line:last-child {
  margin-bottom: 0;
}

.shop-intro .shop-visual-primary,
.shop-intro .shop-visual-secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.shop-intro .shop-visual-primary img,
.shop-intro .shop-visual-secondary img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.shop-intro .shop-visual-primary img {
  aspect-ratio: 4/5;
}

.shop-intro .shop-visual-secondary {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(42%, 250px);
  border: 4px solid var(--background-color);
}

.shop-intro .shop-visual-secondary img {
  aspect-ratio: 4/5;
}

.shop-intro .shop-featured-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(82%, 420px);
  padding: 24px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.shop-intro .shop-featured-card .featured-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-intro .shop-featured-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.shop-intro .shop-featured-card p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.shop-intro .shop-featured-card .featured-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.shop-intro .shop-featured-card .featured-meta strong {
  font-size: 1.1rem;
  color: var(--heading-color);
}

.shop-intro .shop-featured-card .featured-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 0.9rem;
}

.shop-catalog .shop-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.shop-catalog [data-shop-grid].is-loading {
  min-height: 520px;
}

.shop-catalog .shop-loading-card {
  height: 100%;
  min-height: 410px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.shop-catalog .shop-loading-card .image {
  height: 250px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.shop-catalog .shop-loading-card .body {
  padding: 18px;
}

.shop-catalog .shop-loading-card .line {
  display: block;
  height: 12px;
  margin-bottom: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 86%);
}

.shop-catalog .shop-loading-card .line.short {
  width: 32%;
}

.shop-catalog .shop-loading-card .line.medium {
  width: 58%;
}

.shop-catalog .shop-loading-card .line.long {
  width: 100%;
}

.shop-catalog .shop-loading-card .actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.shop-catalog .shop-loading-card .actions span {
  flex: 1;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 84%);
}

.shop-catalog .shop-filter-chip {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 10px 18px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.shop-catalog .shop-filter-chip:hover,
.shop-catalog .shop-filter-chip.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.shop-catalog .shop-empty-state {
  padding: 40px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  text-align: center;
}

.shop-catalog .shop-empty-state h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.shop-catalog .shop-empty-state p {
  margin: 0;
  line-height: 1.7;
}

.shop-catalog .shop-offline-state {
  padding: 56px 40px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  text-align: center;
}

.shop-catalog .shop-offline-state i {
  font-size: 2.6rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 14px;
  display: inline-block;
}

.shop-catalog .shop-offline-state h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.shop-catalog .shop-offline-state p {
  margin: 0 auto 22px;
  max-width: 460px;
  line-height: 1.7;
}

@keyframes shopLoadingSweep {
  100% {
    transform: translateX(100%);
  }
}

.shop-cart-float {
  --shop-cart-offset-top: 118px;
  --shop-cart-offset-right: 24px;
  --shop-cart-toggle-size: 58px;
  --shop-cart-dropdown-gap: 14px;
  position: fixed;
  top: var(--shop-cart-offset-top);
  right: var(--shop-cart-offset-right);
  z-index: 1050;
}

.shop-cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 0;
  background-color: var(--surface-color);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  color: var(--heading-color);
}

.shop-cart-toggle i {
  font-size: 1.2rem;
}

.shop-cart-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.72rem;
  font-weight: 700;
}

.shop-cart-dropdown {
  position: fixed;
  top: calc(var(--shop-cart-offset-top) + var(--shop-cart-toggle-size) + var(--shop-cart-dropdown-gap));
  right: var(--shop-cart-offset-right);
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - (var(--shop-cart-offset-top) + var(--shop-cart-toggle-size) + var(--shop-cart-dropdown-gap) + 24px));
  max-height: calc(100dvh - (var(--shop-cart-offset-top) + var(--shop-cart-toggle-size) + var(--shop-cart-dropdown-gap) + 24px));
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  height: 100%;
}

.shop-product-card .shop-product-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
}

.shop-product-card .shop-product-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-product-card:hover .shop-product-image-wrap img {
  transform: scale(1.04);
}

.shop-product-card .shop-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-product-card .shop-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.shop-product-card .shop-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-product-card .shop-product-meta strong {
  color: var(--heading-color);
  font-size: 0.9rem;
}

.shop-product-card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.shop-product-card .shop-card-variant-label {
  display: block;
  margin-bottom: 14px;
}

.shop-product-card .shop-card-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.shop-product-card .shop-card-option-grid .shop-card-variant-label {
  margin-bottom: 0;
}

.shop-product-card .shop-card-option-label {
  display: block;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-product-card .shop-card-variant-select {
  min-height: 36px;
  padding: 0.42rem 2.15rem 0.42rem 0.75rem;
  border-radius: 0;
  border-color: color-mix(in srgb, var(--default-color), transparent 86%);
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 18%);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f4f4f4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m4 6 4 4 4-4'/%3e%3c/svg%3e");
  color: var(--contrast-color);
  font-size: 0.84rem;
  line-height: 1.2;
  box-shadow: none;
}

.shop-product-card .shop-card-variant-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--accent-color), transparent 82%);
}

.shop-product-card .shop-card-variant-select option {
  background-color: var(--surface-color);
  color: var(--contrast-color);
}

.shop-product-card .shop-product-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.shop-product-card .shop-card-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--heading-color);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-product-card .shop-add-button {
  min-width: 132px;
  padding-inline: 18px;
  white-space: nowrap;
}

.shop-cart-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.shop-cart-card .shop-cart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.shop-cart-card .shop-cart-header h3 {
  font-size: 1.45rem;
  margin: 0;
}

.shop-cart-card .shop-cart-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-cart-card .shop-cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
}

.shop-cart-card .shop-cart-count {
  color: color-mix(in srgb, var(--default-color), transparent 16%);
  font-size: 0.9rem;
  font-weight: 600;
}

.shop-cart-card .shop-cart-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.shop-cart-card .shop-cart-empty {
  padding: 26px 8px;
  text-align: center;
}

.shop-cart-card .shop-cart-empty i {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.shop-cart-card .shop-cart-empty h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.shop-cart-card .shop-cart-empty p {
  margin: 0;
  line-height: 1.7;
}

.shop-cart-card .shop-cart-footer {
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.shop-cart-card .shop-cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.shop-cart-card .shop-cart-row strong {
  font-size: 1.1rem;
  color: var(--heading-color);
}

.shop-cart-card .shop-cart-note {
  margin-bottom: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.shop-cart-card .shop-checkout-form .form-control,
.shop-cart-card .shop-checkout-form .form-select,
.shop-cart-card .shop-checkout-form textarea {
  border-radius: 0;
  border-color: color-mix(in srgb, var(--default-color), transparent 76%);
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 72%);
  color: var(--heading-color);
  box-shadow: none;
}

.shop-cart-card .shop-checkout-form .form-control::placeholder,
.shop-cart-card .shop-checkout-form .form-select::placeholder,
.shop-cart-card .shop-checkout-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 34%);
}

.shop-cart-card .shop-checkout-form .form-control:focus,
.shop-cart-card .shop-checkout-form .form-select:focus,
.shop-cart-card .shop-checkout-form textarea:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 18%);
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 78%);
  color: var(--heading-color);
  box-shadow: none;
}

.shop-cart-card [data-shop-shipping-select] {
  border-radius: 0;
  border-color: color-mix(in srgb, var(--default-color), transparent 76%);
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 72%);
  color: var(--heading-color);
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f4f4f4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m4 6 4 4 4-4'/%3e%3c/svg%3e");
}

.shop-cart-card [data-shop-shipping-select]:focus,
.shop-cart-card [data-shop-shipping-select]:disabled,
.shop-cart-card [data-shop-shipping-select]:disabled:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 18%);
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 78%);
  color: var(--heading-color);
  box-shadow: none;
  opacity: 1;
  -webkit-text-fill-color: var(--heading-color);
}

.shop-cart-card [data-shop-shipping-select] option {
  background-color: var(--surface-color);
  color: var(--heading-color);
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 65%);
}

.shop-cart-item img {
  width: 72px;
  height: 88px;
  border-radius: 0;
  object-fit: cover;
}

.shop-cart-item .shop-cart-item-copy h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.shop-cart-item .shop-cart-item-copy p {
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.88rem;
}

.shop-cart-item .shop-cart-item-copy strong {
  color: var(--heading-color);
  font-size: 0.95rem;
}

.shop-cart-item .shop-cart-item-controls {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.shop-cart-item .shop-cart-item-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  background-color: var(--surface-color);
  color: var(--default-color);
  border-radius: 0;
  line-height: 1;
  font-weight: 700;
}

.shop-cart-item .shop-cart-item-controls .shop-remove-button {
  width: 30px;
  height: 30px;
  margin-top: 4px;
  border-color: transparent;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.shop-cart-item .shop-cart-item-controls span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
}

.shop-product-modal .modal-content {
  border: 0;
  border-radius: 0;
  background-color: var(--surface-color);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.shop-product-modal .modal-body {
  position: relative;
  padding: 32px;
}

.shop-product-modal .shop-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
}

.shop-product-modal .shop-modal-image-wrap {
  overflow: hidden;
  border-radius: 0;
}

.shop-product-modal .shop-modal-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.shop-product-modal .shop-modal-category {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-product-modal .shop-modal-copy h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.shop-product-modal .shop-modal-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  align-items: center;
}

.shop-product-modal .shop-modal-meta strong {
  color: var(--heading-color);
  font-size: 1.18rem;
}

.shop-product-modal .shop-modal-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 0.92rem;
}

.shop-product-modal .shop-modal-copy p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--contrast-color);
}

.shop-product-modal .shop-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.shop-product-modal .shop-modal-tags span {
  padding: 6px 10px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  font-size: 0.8rem;
  font-weight: 600;
}

.shop-product-modal .shop-variant-label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.shop-product-modal .shop-modal-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.shop-product-modal .shop-modal-option-grid .shop-variant-label {
  margin-bottom: 0;
}

.shop-product-modal .shop-variant-select {
  margin-top: 10px;
  min-height: 48px;
  border-radius: 0;
  border-color: color-mix(in srgb, var(--default-color), transparent 76%);
  box-shadow: none;
}

.shop-product-modal .shop-modal-option-grid .shop-variant-select {
  margin-top: 8px;
}

.shop-product-modal .shop-modal-shipping {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
  line-height: 1.7;
}

.shop-product-modal .shop-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-notes .shop-note-card {
  height: 100%;
  padding: 28px;
  border-radius: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.shop-notes .shop-note-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
  font-size: 1.35rem;
}

.shop-notes .shop-note-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.shop-notes .shop-note-card p {
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .shop-intro .shop-intro-visual {
    padding: 0 0 86px 34px;
  }

  .shop-intro .shop-signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-intro .shop-featured-card {
    width: 100%;
  }

  .shop-cart-float {
    --shop-cart-offset-top: 102px;
    --shop-cart-offset-right: 18px;
  }

  .shop-product-card .shop-card-option-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-card .shop-product-footer {
    flex-wrap: wrap;
  }

  .shop-product-modal .modal-body {
    padding: 24px;
  }

  .shop-product-modal .shop-modal-option-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .shop-intro .shop-signal-row {
    grid-template-columns: 1fr;
  }

  .shop-intro .shop-intro-visual {
    padding: 0 0 96px;
  }

  .shop-intro .shop-visual-secondary {
    left: auto;
    right: 0;
    width: 58%;
  }

  .shop-intro .shop-featured-card {
    right: auto;
    left: 0;
    width: 92%;
  }

  .shop-cart-float {
    --shop-cart-offset-right: 14px;
    top: var(--shop-cart-offset-top);
    right: var(--shop-cart-offset-right);
    left: auto;
    bottom: auto;
  }

  .shop-cart-dropdown {
    position: fixed;
    right: 14px;
    left: 14px;
    top: calc(
      var(--shop-cart-offset-top) + var(--shop-cart-toggle-size) +
        var(--shop-cart-dropdown-gap)
    );
    bottom: auto;
    width: auto;
    max-height: calc(
      100vh -
        (
          var(--shop-cart-offset-top) + var(--shop-cart-toggle-size) +
            var(--shop-cart-dropdown-gap) + 24px
        )
    );
    max-height: calc(
      100dvh -
        (
          var(--shop-cart-offset-top) + var(--shop-cart-toggle-size) +
            var(--shop-cart-dropdown-gap) + 24px
        )
    );
  }

  .shop-product-card .shop-add-button {
    min-width: 0;
  }

  .shop-product-modal .shop-modal-copy h3 {
    font-size: 1.5rem;
  }

  .shop-product-modal .shop-modal-actions {
    flex-direction: column;
  }

  .shop-cart-item {
    grid-template-columns: 64px 1fr;
  }

  .shop-cart-item .shop-cart-item-controls {
    grid-column: 1/-1;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    align-items: center;
  }
}
