/* ============================= */
/* GLOBAL RESET */
/* ============================= */

html, body {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 92px;
  background: #f7f1e8;
  color: #2f2419;
}

@media (max-width: 768px) {
  body {
    padding-top: 84px;
  }
}

h1, h2, h3, h4, h5, h6, p {
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================= */
/* LINK CONTROL */
/* ============================= */

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

/* ============================= */
/* CONTAINERS */
/* ============================= */

.container,
.navbar-wrapper .container,
.custom-footer {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding-top: 6px;
  padding-bottom: 4px;
  background: transparent;
}

.navbar-wrapper .container {
  padding-left: 12px;
  padding-right: 12px;
}

.custom-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 8px 16px;
  background: linear-gradient(90deg, #000000, #0D031B);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: inherit !important;
  min-width: 0;
}

.logo-link:hover {
  text-decoration: none !important;
}

.navbar-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-link:hover .navbar-logo {
  transform: scale(1.04);
}

.navbar-title {
  color: #ffffff !important;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: 0.2px;
  white-space: normal;
}

.logo-link:hover .navbar-title {
  color: #f5c542 !important;
}

/* ============================= */
/* DOT MENU */
/* ============================= */

.menu-dot-wrapper {
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
}

.menu-dot {
  font-size: 26px;
  line-height: 1;
  color: #ffffff !important;
  cursor: pointer;
  padding: 4px 8px;
  user-select: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.menu-dot:hover {
  color: #f5c542 !important;
  transform: scale(1.05);
}

.menu-dropdown {
  position: absolute;
  top: 42px;
  right: 0;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.menu-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-dropdown a {
  text-decoration: none !important;
  color: #1f1f1f !important;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.35;
  transition: background 0.3s ease;
}

.menu-dropdown a:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000 !important;
}

/* ============================= */
/* NEWS TICKER */
/* ============================= */

.news-ticker-wrapper {
  width: 100%;
  background: #f8f0e3;
  border-top: 1px solid #ddd;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.news-ticker-wrapper .container {
  overflow: hidden;
  padding-left: 12px;
  padding-right: 12px;
}

.news-ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}

.news-ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 7px 0 6px 0;
}

.news-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: 1rem;
  color: #000;
}

.news-link {
  color: #2f2419 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: #8b6b47 !important;
  text-decoration: none !important;
}

.news-separator {
  display: inline-block;
  margin: 0 18px;
  color: #8b6b47;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.news-ticker-wrapper:hover .news-ticker-track {
  animation-play-state: paused;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 12px;
  padding-right: 12px;
}

.hero-museum {
  width: 100%;
  height: 60vh;
  min-height: 220px;
  max-height: 500px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: url('../images/Plays/IMG-20260403-WA0015.jpg') center/cover no-repeat;
  transition: transform 0.3s ease;
}

.hero-museum:hover {
  transform: scale(1.01);
}

@media (max-width: 480px) {
  .hero-museum {
    height: 28vh;
  }
}

.hero-caption {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #2f2419;
  text-align: center;
}

/* ============================= */
/* FOUNDATION FEATURE BOX */
/* ============================= */

.foundation-section {
  margin-top: 12px;
  margin-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.foundation-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8dcc8 0%, #d8c7ad 45%, #cbb79a 100%);
  border: 1px solid rgba(120, 95, 60, 0.25);
  border-radius: 22px;
  padding: 40px 34px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
  animation: foundationFadeUp 1s ease both;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.foundation-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/Plays/021-charpai-1.jpg') center/cover no-repeat;
  opacity: 0.80;
  filter: blur(6px);
  transform: scale(1.04);
  z-index: 0;
}

.foundation-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 235, 0.50);
  z-index: 1;
}

.foundation-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.16),
    0 0 18px rgba(139, 107, 71, 0.10);
}

.foundation-box-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 180, 120, 0.22) 0%, rgba(212, 180, 120, 0.08) 42%, rgba(212, 180, 120, 0) 72%);
  pointer-events: none;
  animation: foundationGlowMove 6s ease-in-out infinite alternate;
  z-index: 2;
}

.foundation-heading {
  font-size: 35px;
  margin-bottom: 18px;
}

.foundation-heading-light {
  color: #E34234;
  position: relative;
  z-index: 3;
  letter-spacing: 0.5px;
}

.foundation-text {
  max-width: 1100px;
  margin: auto;
  font-size: 16px;
  line-height: 1.85;
}

.foundation-text-light {
  color: #2f2419;
  position: relative;
  z-index: 3;
}

.foundation-text-light strong {
  color: #2f2419;
  font-weight: 700;
}

.foundation-divider {
  margin-top: 10px;
  margin-bottom: 6px;
  border: 0;
  border-top: 1px solid rgba(47, 36, 25, 0.12);
}

/* ============================= */
/* FOUNDATION ANIMATION */
/* ============================= */

@keyframes foundationFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes foundationGlowMove {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.75;
  }
  to {
    transform: translateY(18px) scale(1.08);
    opacity: 1;
  }
}

/* ============================= */
/* FOUNDER SECTION */
/* ============================= */

.founder-section {
  margin-top: 6px;
  padding-left: 15px;
  padding-right: 15px;
}

.curator-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ✅ ADD THIS EXACTLY HERE */
.curator-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.curator-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.curator-content h4,
.curator-content p {
  color: #2f2419;
}

/* ============================= */
/* FOUNDER MEMBERS DARK BOX */
/* ============================= */

.founder-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #17110d 0%, #241a14 45%, #110c09 100%);
  border: 1px solid rgba(212, 180, 120, 0.18);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: founderFadeUp 1s ease both;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.founder-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(212, 180, 120, 0.08);
}

.founder-box-glow {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 180, 120, 0.18) 0%, rgba(212, 180, 120, 0.06) 42%, rgba(212, 180, 120, 0) 72%);
  pointer-events: none;
  animation: founderGlowMove 6s ease-in-out infinite alternate;
  z-index: 1;
}

.founder-heading-light {
  color: #E34234;
  position: relative;
  z-index: 2;
}

.founder-card-dark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.founder-card-dark:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}

.founder-content-light h4 {
  color: #f5ead8;
  margin-bottom: 8px;
}

.founder-content-light p {
  color: #eadfce;
  margin-bottom: 0;
  line-height: 1.7;
}

.founder-card-dark .curator-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* ============================= */
/* FOUNDER ANIMATION */
/* ============================= */

@keyframes founderFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes founderGlowMove {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.75;
  }
  to {
    transform: translateY(16px) scale(1.08);
    opacity: 1;
  }
}

/* ============================= */
/* MOBILE FOUNDER BOX */
/* ============================= */

@media (max-width: 768px) {
  .founder-box {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .founder-card-dark {
    padding: 14px;
    gap: 12px;
  }

  .founder-card-dark .curator-img img {
    width: 72px;
    height: 92px;
  }

  .founder-content-light h4 {
    font-size: 20px;
  }

  .founder-content-light p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ============================= */
/* CARD LINKS */
/* ============================= */

.card-link-wrapper {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.card-link-wrapper:hover {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

/* ============================= */
/* MUSEUM CARDS */
/* ============================= */

.museum-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.museum-card h4,
.museum-card p {
  color: #2f2419;
}

.museum-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.museum-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  opacity: 0;
  transition: 0.4s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.museum-card:hover::before {
  opacity: 1;
}

/* ============================= */
/* GALLERY SECTION */
/* ============================= */

.gallery-section {
  margin-top: 20px;
  margin-bottom: 80px;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 35px;
}

.gallery-subtitle {
  font-size: 16px;
  color: #7b6b58;
  margin-bottom: 10px;
}

.gallery-description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #5a4a39;
  font-family: Georgia, "Times New Roman", serif;
}

.gallery-heading h1 {
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #2f2419;
}

.gallery-heading p {
  font-size: 16px;
  color: #7b6b58;
  margin-bottom: 0;
}

.gallery-wrapper {
  background: #efe4d1;
  border: 1px solid #d8c7ad;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.workshop-section {
  margin-top: 10px !important;
}

.workshop-section .gallery-heading h2,
.photo-art-section .gallery-heading h2 {
  font-size: 34px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #2f2419;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
}

.museum-thumb-card {
  text-align: center;
}

.museum-frame {
  background: linear-gradient(145deg, #8b6b47, #c7a77b);
  padding: 8px;
  border-radius: 4px;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.museum-frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.20),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

.museum-thumb-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f8f5ef;
  border: 4px solid #f4eadb;
}

.museum-caption {
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: 14px;
  color: #3f3125;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.4;
  font-style: italic;
}

.gallery-trigger {
  cursor: pointer;
  touch-action: pan-y;
}

/* ============================= */
/* MAIN IMAGE POPUP */
/* ============================= */

.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-sizing: border-box;
}

.image-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-inner {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: min(96vw, 900px);
  max-height: 90vh;
  margin: 0 auto;
  background: #f6efe3;
  border-radius: 16px;
  padding: 22px 22px 18px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.popup-image-wrap {
  width: auto;
  max-width: 100%;
  text-align: center;
  margin: 0 0 14px 0;
  flex: none;
}

.popup-image-wrap img {
  display: block;
  max-width: min(88vw, 820px);
  max-height: 68vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.popup-details {
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #3a2d21;
}

.popup-details h3 {
  margin: 0 0 8px 0;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: 1.45rem;
  color: #2f2418;
}

.popup-details p {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4d3b29;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #2f2418;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 12;
}

.popup-close:hover {
  opacity: 0.9;
}

body.popup-open {
  overflow: hidden;
}

/* ============================= */
/* PHOTO ART SECTION */
/* ============================= */

.photo-artist-card {
  background: #f6efe3;
  border: 1px solid #d8c7ad;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.photo-artist-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.photo-artist-content {
  padding: 18px;
}

.photo-artist-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2f2419;
}

.photo-artist-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a4a39;
  margin-bottom: 16px;
}

/* ============================= */
/* ARTIST WORKS POPUP */
/* ============================= */

.artist-works-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.artist-works-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.artist-works-box {
  position: relative;
  width: min(900px, 95vw);
  max-height: 88vh;
  overflow-y: auto;
  background: #f6efe3;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.artist-works-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #2f2418;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 20;
}

.artist-works-header h3 {
  margin: 0 0 8px 0;
  color: #2f2419;
}

.artist-works-header p {
  margin-bottom: 18px;
  color: #5a4a39;
}

.artist-works-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.artist-work-item {
  background: #fff;
  border: 1px solid #e4d7c4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.artist-work-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.artist-work-text {
  padding: 12px;
}

.artist-work-text h4 {
  font-size: 17px;
  margin: 0 0 8px 0;
  color: #2f2419;
}

.artist-work-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #5a4a39;
}

body.works-popup-open {
  overflow: hidden;
}

/* ============================= */
/* PHOTO ART VIEWER */
/* ============================= */

.artist-works-viewer {
  display: none;
  text-align: center;
  position: relative;
  min-height: 300px;
}

.artist-works-viewer.show {
  display: block;
}

.viewer-content img {
  max-width: 100%;
  max-height: 65vh;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.viewer-content h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #2f2419;
}

.viewer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4a39;
  margin: 0;
}

.viewer-prev,
.viewer-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 15;
}

.viewer-prev {
  left: 10px;
}

.viewer-next {
  right: 10px;
}

.viewer-back {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #2f2418;
  color: #fff;
  cursor: pointer;
}

/* ============================= */
/* NEWS PAGE (COMPACT VERSION) */
/* ============================= */

body.news-page,
.news-page body {
  padding-top: 72px !important;
}

.news-page-heading {
  margin-top: 10px !important;
  margin-bottom: 16px !important;
  text-align: center;
  padding-top: 0 !important;
}

.news-page-heading h1 {
  font-size: 38px;
  letter-spacing: 1px;
  color: #2f2419;
  margin-bottom: 4px;
}

.news-page-heading p {
  font-size: 15px;
  color: #7a6a58;
  margin-bottom: 0;
}

.news-shell {
  margin-top: 0 !important;
  margin-bottom: 50px;
}

.news-toolbar {
  margin-bottom: 14px;
}

.news-toolbar-left h3 {
  font-size: 24px;
}

.news-toolbar-left p {
  font-size: 13px;
}

.news-title {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-cta {
  font-size: 13px;
}

@media (max-width: 768px) {
  body.news-page,
  .news-page body {
    padding-top: 68px !important;
  }

  .news-page-heading {
    margin-top: 6px !important;
    margin-bottom: 12px !important;
  }

  .news-page-heading h1 {
    font-size: 30px;
  }

  .news-page-heading p {
    font-size: 14px;
  }

  .news-toolbar {
    margin-bottom: 10px;
  }

  .news-title {
    font-size: 18px;
  }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.custom-footer {
  background: linear-gradient(90deg, #000000, #0D031B);
  color: #f5f5f5;
}

.custom-footer h4 {
  color: #f3e8d4;
  letter-spacing: 0.5px;
}

.custom-footer h5 {
  color: #F8F8FF;
}

.custom-footer p,
.custom-footer small {
  color: #d6cbb8;
}

.custom-footer .form-control {
  border-radius: 8px;
  border: 1px solid #d8d8d8;
}

.custom-footer .btn-primary {
  background: #b68b4c;
  border-color: #b68b4c;
}

.custom-footer .btn-primary:hover {
  background: #9d763d;
  border-color: #9d763d;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .navbar-wrapper {
    padding-top: 4px;
    padding-bottom: 3px;
  }

  .custom-navbar {
    min-height: 52px;
    padding: 7px 12px;
  }

  .navbar-logo {
    height: 34px;
  }

  .navbar-title {
    font-size: 14px;
    line-height: 1.2;
  }

  .menu-dot {
    font-size: 22px;
    padding: 4px 6px;
  }

  .menu-dropdown {
    right: 0;
    width: 190px;
    top: 38px;
  }

  .foundation-box {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .foundation-heading {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .foundation-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .foundation-box-glow {
    width: 160px;
    height: 160px;
    top: -50px;
    right: -40px;
  }

  .gallery-heading h1 {
    font-size: 34px;
  }

  .gallery-wrapper {
    padding: 24px 16px;
  }

  .image-popup {
    padding: 12px;
  }

  .popup-inner {
    max-width: 94vw;
    width: auto;
    padding: 18px 14px 16px;
  }

  .popup-image-wrap img {
    max-width: 100%;
    max-height: 56vh;
  }

  .popup-details h3 {
    font-size: 1.2rem;
  }

  .popup-details p {
    font-size: 0.92rem;
  }

  .popup-close {
    width: 36px;
    height: 36px;
    font-size: 22px;
    top: 8px;
    right: 8px;
  }

  .photo-artist-thumb img {
    height: 220px;
  }

  .artist-works-box {
    padding: 18px;
  }

  .artist-works-list {
    grid-template-columns: 1fr;
  }

  .viewer-prev,
  .viewer-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .viewer-prev {
    left: 4px;
  }

  .viewer-next {
    right: 4px;
  }

  .curator-card {
    flex-direction: row;
    align-items: center;
  }
}