/*
Theme Name: Marangozlar
Theme URI: https://ankmar.org.tr
Author: Ankara Marangozlar Esnaf ve Sanatkarlar Odası
Author URI: https://ankmar.org.tr
Description: Ankara Marangozlar Esnaf ve Sanatkarlar Odası resmi web sitesi teması.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marangozlar
Tags: custom-logo, custom-menu, full-width-template, one-column, two-columns, three-columns, four-columns
*/

/* =====================================================
   1. ROOT VARIABLES & RESET
   ===================================================== */


/* Ana Konteynır */
.team-container {
  max-width: auto;
  margin: 0 auto
}

/* Satır Düzeni */
.row {
  display: flex;
  justify-content: center;
  /* Kartları ortalar */
  flex-wrap: wrap;
  gap: 5px;
  /* Kartlar arası boşluk */
  margin-bottom: 20px;
}

/* Kart Tasarımı */
.card {
  width: 175px;
  /* Genişliği ihtiyacına göre ayarla */
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  /* Üzerine gelince hafif yükselme efekti */
}

/* Kart İçindeki Resim */
.card img {
  width: 100%;
  height: auto;
  display: block;
}


/* Mobil Uyumluluk: Ekran küçüldüğünde kartlar yan yana sığmazsa alta geçer */
@media (max-width: 768px) {
  .row {
    gap: 10px;
  }

  .card {
    width: 45%;
    /* Mobilde yan yana 2 kişi görünür */
  }
}


:root {
  --chamber-blue: #1a2b4b;
  --chamber-gold: #c5a059;
  --chamber-gray: #f4f4f4;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-xl: 0.5rem;
  --radius-2xl: 0.75rem;
  --radius-full: 9999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* =====================================================
   2. TYPOGRAPHY & BASE
   ===================================================== */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s, opacity 0.2s;
}

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

ul {
  list-style: none;
}

/* =====================================================
   3. LAYOUT & CONTAINER
   ===================================================== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

/* =====================================================
   4. HEADER
   ===================================================== */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  width: 14.4rem;
  height: auto;
  max-height: 14.4rem;
  object-fit: contain;
}


.header-logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .header-logo-text {
    display: flex;
  }
}

.header-logo-text .logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--chamber-blue);
  margin: 0;
}

.header-logo-text .logo-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--chamber-blue);
}

/* Main Navigation */
.main-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.main-nav .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--chamber-blue);
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.main-nav .menu-item:hover>a,
.main-nav a.active {
  color: var(--chamber-gold);
  border-bottom-color: var(--chamber-gold);
}

.main-nav a i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.main-nav .menu-item:hover>a i {
  transform: rotate(180deg);
}

/* Submenu Styling */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  padding: 0.75rem 0;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.main-nav .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav .sub-menu a {
  padding: 0.75rem 1.25rem;
  border: none;
  font-size: 0.8125rem;
  text-transform: none;
  font-weight: 600;
  color: var(--text-dark);
}

.main-nav .sub-menu a:hover {
  background: var(--chamber-gray);
  color: var(--chamber-gold);
  border-radius: 0;
}

.main-nav .sub-menu a.active {
  background: var(--chamber-gray);
  color: var(--chamber-gold);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-social {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .header-social {
    display: flex;
  }
}

.mobile-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-social a,
.mobile-social a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2rem;
  height: 2rem;
  padding: 0 !important;
  border-radius: 50%;
  color: #ffffff !important;
  font-size: 1.15rem;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 4px (0, 0, 0, 0.1);
}

.header-social a:hover,
.mobile-social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 6px (0, 0, 0, 0.15);
}

.header-social .social-fb,
.mobile-social .social-fb {
  background-color: #1877F2;
}

.header-social .social-ig,
.mobile-social .social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.header-social .social-x,
.mobile-social .social-x {
  background-color: #000000;
}

.header-social .social-wa,
.mobile-social .social-wa {
  background-color: #25D366;
}

.mobile-social {
  justify-content: center;
  border-top: 1px solid var(--border-light);
  gap: 1rem;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-left: 1px solid var(--border-light);
  padding-left: 1rem;
}

/* Style GTranslate's rendered flags widget */
.header-lang .gtranslate_wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-lang a.glink,
.header-lang a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

.header-lang a.glink:hover,
.header-lang a:hover {
  opacity: 0.7;
}

/* Hide the ACTIVE language — only show the OTHER (target) language flag */
.header-lang a.gt-current-lang {
  display: none !important;
}

.header-lang img {
  width: 1.75rem !important;
  height: 1.75rem !important;
  min-width: 1.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.header-lang span {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--chamber-blue);
  text-transform: uppercase;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--chamber-blue);
  font-size: 1.5rem;
  padding: 0.25rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1rem;
  gap: 0.75rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .menu-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav .menu-item:last-child {
  border-bottom: none;
}

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--chamber-blue);
  text-transform: uppercase;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav .sub-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  padding-bottom: 0.75rem;
  gap: 0.5rem;
}

.mobile-nav .menu-item.open>.sub-menu {
  display: flex;
}

.mobile-nav .menu-item.open>a>i {
  transform: rotate(180deg);
}

.mobile-nav .menu-item.has-children>a>i {
  padding: 0.5rem;
  /* Increase hit area for easier toggling */
  margin-right: -0.5rem;
}

.mobile-nav .sub-menu a {
  font-size: 0.8125rem;
  text-transform: none;
  padding: 0.25rem 0;
  border-bottom: none;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav a:hover,
.mobile-nav .sub-menu a:hover {
  color: var(--chamber-gold);
}

/* =====================================================
   5. HERO SECTION
   ===================================================== */
.hero-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 8fr 4fr;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-xl);
}

.hero-slider img.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero Slide – stacked, only .active is visible */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

@media (min-width: 768px) {
  .hero-overlay {
    padding: 3rem;
  }
}

.hero-overlay h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 42rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-overlay h2 {
    font-size: 2.25rem;
  }
}

.hero-overlay p {
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .hero-overlay p {
    font-size: 1rem;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-btn-read {
  background-color: var(--white);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

.hero-btn-read:hover {
  background-color: #e5e7eb;
  color: #000;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 1rem;
  height: 0.25rem;
  background: var(--white);
}

.hero-dot.active {
  opacity: 1;
}

.hero-dot.inactive {
  opacity: 0.3;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
}

.hero-controls button {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.2s;
}

.hero-controls button:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Hero Sidebar Cards */
.hero-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.sidebar-card:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-card-icon {
  background: var(--chamber-gray);
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--chamber-blue);
  font-size: 1.55rem;
}

.sidebar-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.sidebar-card p {
  font-size: 0.625rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.sidebar-card a.card-link {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--chamber-blue);
  border-bottom: 1px solid var(--chamber-blue);
  padding-bottom: 0.25rem;
}

/* Featured Person Card */
.sidebar-card-person {
  background: var(--chamber-blue);
  color: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}

.sidebar-card-person img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.sidebar-card-person .person-info {
  position: relative;
  padding: 1rem;
  text-align: center;
}

.sidebar-card-person .person-info h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sidebar-card-person .person-info p {
  font-size: 0.625rem;
  opacity: 0.8;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

/* =====================================================
   6. SECTION TITLES
   ===================================================== */
.section-title {
  font-weight: 700;
  font-size: 1.5rem;
  border-left: 4px solid var(--chamber-gold);
  padding-left: 1rem;
  color: var(--chamber-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title-link {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.section-title-link:hover {
  color: var(--chamber-blue);
}

/* =====================================================
   7. NEWS SECTION
   ===================================================== */
.news-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

/* News Card */
.news-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
}

.news-card-thumb {
  position: relative;
}

.news-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.news-card-thumb.tall {
  height: 12rem;
  overflow: hidden;
  position: relative;
}

.news-card-thumb.tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
}

.news-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 43, 75, 0.8);
  color: var(--white);
  font-size: 0.625rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-weight: 700;
}

.news-card-body {
  padding: 1.25rem;
  flex: 1;
}

.news-card-date {
  color: var(--text-light);
  font-size: 0.625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.news-card-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--chamber-blue);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.news-card:hover .news-card-title {
  color: #d97706;
}

.news-card-excerpt {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   8. PROJECTS SECTION
   ===================================================== */
.projects-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.projects-empty {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.875rem;
}

/* =====================================================
   9. SUPPORTERS SECTION
   ===================================================== */
.supporters-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--border-light);
}

.supporters-marquee {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  /* Gap between groups */
  -webkit-animation: marquee-scroll 10s linear infinite;
  animation: marquee-scroll 10s linear infinite;
  will-change: transform;
}

.supporters-marquee:hover .marquee-group {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes marquee-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.supporter-logo {
  padding: 1.5rem;
  width: 10rem;
  height: 10rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.supporter-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Mobilde 2 satır 2 sütun (toplam 4 logo) düzeni */
@media (max-width: 768px) {
  .marquee-group {
    display: grid !important;
    grid-template-rows: repeat(2, 1fr) !important;
    grid-auto-flow: column !important;
    gap: 0 !important;
    padding-right: 0 !important;
    -webkit-animation-duration: 20s !important;
    animation-duration: 20s !important;
  }

  .supporter-logo {
    width: calc(50vw - 1rem) !important; /* Ekranın yarısı genişliğinde (2 sütun) */
    height: 150px !important; /* Daha büyük görünmesi için yükseklik */
    padding: 1.5rem !important;
    box-sizing: border-box !important;
  }

  .supporter-logo img {
    max-height: 100px !important; /* Logoları büyütüyoruz */
  }
}

/* Fallback for browsers that don't support gap in flexbox */
@supports not (gap: 2rem) {
  .marquee-group .supporter-logo {
    margin-right: 2rem;
  }
}

/* =====================================================
   10. FOOTER
   ===================================================== */
.site-footer {
  background-color: var(--chamber-blue);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

/* Footer About */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: 13.5rem;
  height: auto;
  max-height: 13.5rem;
  object-fit: contain;
}

.footer-brand-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.footer-brand-text p {
  font-size: 0.625rem;
  opacity: 0.7;
}

.footer-about-text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #d1d5db;
}

/* Footer Columns */
.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: #d1d5db;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f59e0b;
}

/* Footer Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #d1d5db;
}

.footer-contact-item i {
  margin-top: 0.1rem;
  color: #f59e0b;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.625rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* =====================================================
   11. UTILITIES
   ===================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WordPress alignment classes */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

/* =====================================================
   12. CONTACT PAGE
   ===================================================== */
.contact-page {
  padding: 4rem 0;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--chamber-blue);
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

/* Contact Cards */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: var(--chamber-gold);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--chamber-gray);
  color: var(--chamber-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card address {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: normal;
}

/* Social Media Section in Contact */
.contact-social {
  margin-top: 2.5rem;
}

.contact-social-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 5rem;
  text-align: center;
}

.contact-social-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--chamber-gray);
  color: var(--chamber-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-social-item:hover .contact-social-icon {
  background: var(--chamber-blue);
  color: var(--white);
  transform: translateY(-4px);
}

.contact-social-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Contact Form Container */
.contact-form-container {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
}

.contact-form-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* General Form Styling */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--chamber-gray);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--chamber-blue);
  box-shadow: 0 0 0 3px rgba(26, 43, 75, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-submit-btn {
  background: var(--chamber-blue);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius-xl);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.form-submit-btn:hover {
  background: #2a3b5b;
}

.form-submit-btn:active {
  transform: scale(0.98);
}

/* Map Section */
.contact-map {
  margin-top: 5rem;
  height: 450px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  position: relative;
}

.contact-map img,
.contact-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.map-marker-icon {
  width: 3rem;
  height: 3rem;
  background: var(--chamber-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  animation: bounce-marker 2s infinite;
}

@keyframes bounce-marker {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.map-marker-tooltip {
  margin-top: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--border-light);
}

/* =====================================================
   13. ARCHIVE / NEWS PAGE
   ===================================================== */
.archive-page {
  padding: 4rem 0;
}

.archive-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .archive-layout {
    flex-direction: row;
  }
}

.archive-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .archive-sidebar {
    width: 25%;
    flex-shrink: 0;
  }
}

.archive-main {
  width: 100%;
}

@media (min-width: 1024px) {
  .archive-main {
    width: 75%;
  }
}

/* Archive Sidebar Widgets */
.sidebar-widget {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--chamber-blue);
  margin-bottom: 0.25rem;
}

.widget-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Category Nav Widget */
.category-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
}

.category-nav a:hover {
  background: var(--chamber-gray);
  color: var(--chamber-blue);
}

.category-nav li.current-cat a {
  background: var(--chamber-blue);
  color: var(--white);
  font-weight: 600;
}

.category-nav i {
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
}

/* Newsletter Sidebar Widget */
.newsletter-widget {
  background: rgba(26, 43, 75, 0.05);
  border-color: rgba(26, 43, 75, 0.1);
  text-align: center;
}

.newsletter-widget .widget-title {
  display: block;
}

.newsletter-widget p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.newsletter-form-compact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form-compact input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
}

.newsletter-form-compact button {
  width: 100%;
  padding: 0.75rem;
  background: var(--chamber-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

/* Archive Grid */
.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

/* Archive Header */
.archive-header {
  margin-bottom: 2.5rem;
}

.archive-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--chamber-blue);
  margin-bottom: 0.5rem;
}

.archive-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Pagination Styles */
.pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}

.pagination .page-numbers:hover {
  background: var(--chamber-gray);
  border-color: var(--chamber-blue);
  color: var(--chamber-blue);
}

.pagination .page-numbers.current {
  background: var(--chamber-blue);
  border-color: var(--chamber-blue);
  color: var(--white);
}

.pagination .next,
.pagination .prev {
  font-size: 1.25rem;
}

/* =====================================================
   14. SINGLE POST PAGE
   ===================================================== */
.single-post-page {
  padding: 4rem 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumb a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: inherit;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--chamber-gold);
}

.breadcrumb i {
  font-size: 0.75rem;
}

.breadcrumb span.current {
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* Single Layout */
.single-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .single-layout {
    flex-direction: row;
  }
}

.single-main {
  width: 100%;
}

@media (min-width: 1024px) {
  .single-main {
    width: 75%;
    order: 2;
  }
}

.single-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .single-sidebar {
    width: 25%;
    flex-shrink: 0;
    order: 1;
  }
}

/* Article Styling */
.single-article {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-header {
  padding: 2.5rem 2.5rem 0;
}

.article-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-cat-badge {
  background: rgba(197, 160, 89, 0.1);
  color: var(--chamber-gold);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.article-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--chamber-blue);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.article-featured-img {
  margin: 0 2.5rem 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.article-featured-img img {
  width: 100%;
  display: block;
}

.article-content {
  padding: 0 2.5rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 15px;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--chamber-blue);
  margin: 2.5rem 0 1.5rem;
}

.article-blockquote {
  background: var(--chamber-gray);
  border-left: 4px solid var(--chamber-gold);
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  font-style: italic;
  font-weight: 500;
  color: var(--chamber-blue);
}

/* Share Buttons */
.article-footer {
  padding: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.article-tags-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 0.5rem;
}

.article-tags a {
  background: var(--chamber-gray);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.article-tags a:hover {
  background: var(--chamber-gold);
  color: var(--white);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chamber-blue);
}

.share-list {
  display: flex;
  gap: 0.5rem;
}

.share-item {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
}

.share-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.share-facebook {
  background-color: #1877F2;
}

.share-twitter {
  background-color: #000000;
}

.share-whatsapp {
  background-color: #25D366;
}

.share-link {
  background-color: var(--text-muted);
}

/* Post Navigation */
.post-navigation {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.post-nav-dir {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  text-decoration: none;
}

.post-nav-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
  flex-shrink: 0;
}

.post-nav-dir:hover .post-nav-icon {
  background: var(--chamber-gold);
  border-color: var(--chamber-gold);
  color: var(--white);
}

.post-nav-text {
  display: flex;
  flex-direction: column;
}

.post-nav-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.post-nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--chamber-blue);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-nav-next {
  text-align: right;
  flex-direction: row-reverse;
}

/* Similar News Widget */
.similar-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.similar-news-item {
  display: flex;
  gap: 1rem;
  text-decoration: none;
}

.similar-news-thumb {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.similar-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.similar-news-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.similar-news-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--chamber-blue);
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.similar-news-item:hover .similar-news-title {
  color: var(--chamber-gold);
}

/* =====================================================
   15. PAGE TEMPLATES (ABOUT, HISTORY, ETC.)
   ===================================================== */
.page-template-content {
  padding: 4rem 0;
}

.page-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .page-layout {
    flex-direction: row;
  }
}

.page-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .page-sidebar {
    width: 25%;
    flex-shrink: 0;
  }
}

.page-main {
  width: 100%;
}

@media (min-width: 1024px) {
  .page-main {
    width: 75%;
  }
}

/* Page Header */
.page-header {
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--chamber-blue);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

/* Page Breadcrumb */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}

.page-breadcrumb a {
  color: inherit;
  transition: color 0.2s;
}

.page-breadcrumb a:hover {
  color: var(--chamber-gold);
}

.page-breadcrumb i {
  font-size: 0.75rem;
}

.page-breadcrumb span.current {
  color: var(--chamber-gold);
}

/* Side Nav Widget */
.side-nav-widget {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.side-nav-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--chamber-blue);
  margin-bottom: 1.5rem;
}

.side-nav-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--chamber-gold);
  border-radius: 2px;
}

.side-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.side-nav-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}

.side-nav-list a:hover {
  background: var(--chamber-gray);
  color: var(--chamber-blue);
}

.side-nav-list li.current_page_item a {
  background: var(--chamber-gold);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.side-nav-list i {
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
}

/* Side CTA Widget */
.side-cta-widget {
  position: relative;
  height: 15rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.side-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.side-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.side-cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.side-cta-content p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.side-cta-btn {
  display: inline-block;
  background: var(--chamber-gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.side-cta-btn:hover {
  background: #b6904d;
}

/* Page Body Content */
.page-body-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .page-body-card {
    padding: 4rem;
  }
}

.page-content-inner {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 15px;
}

.page-content-inner h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--chamber-blue);
  margin: 3rem 0 1.5rem;
}

.page-content-inner h2 i {
  color: var(--chamber-gold);
}

.page-content-inner p {
  margin-bottom: 1.5rem;
}

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-card {
  background: var(--chamber-gray);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--chamber-gold);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--chamber-gold);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* History Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-light);
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--chamber-gold);
  border: 4px solid var(--white);
}

.timeline-item.past .timeline-dot {
  background: var(--text-light);
}

.timeline-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--chamber-blue);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.page-featured-bottom {
  margin-top: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-featured-bottom img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

/* =====================================================
   22. POST GALLERY
   ===================================================== */
.article-gallery {
  margin: 4.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--chamber-blue);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 75, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.5rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}