/*
 * Gia Dung 20 — Premium Home Concierge
 * Handcrafted component styles (BEM) that complement the Tailwind utility
 * build in src/style.css. This file is NEVER touched by `npm run build`.
 *
 * Design tokens (mirrors src/input.css):
 *   --color-primary:  #164e50
 *   --color-secondary:#5ba093
 *   --color-accent:   #c9a86a
 *   --color-dark:     #062c38
 *   --color-bg:       #f4f8f7
 *   --color-surface:  #ffffff
 *   --color-border:   #dfe9e7
 *   --color-text:     #16302f
 *   --color-muted:    #5f7573
 *   --font-display:   "Cinzel"
 *   --font-body:      "Public Sans"
 *   --brand-gradient: dark teal → mint, locked in src/input.css
 */

:root {
  --color-primary: #164e50;
  --color-secondary: #5ba093;
  --color-accent: #c9a86a;
  --color-dark: #062c38;
  --color-bg: #f4f8f7;
  --color-surface: #ffffff;
  --color-border: #dfe9e7;
  --color-text: #16302f;
  --color-muted: #5f7573;
  --font-display: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, sans-serif;
  --brand-gradient: linear-gradient(225deg, #062c38 0%, #164e50 20%, #33756f 40%, #5ba093 60%, #8cccbd 80%, #c5f8eb 100%);
}

html {
  scroll-behavior: smooth;
}

.gd10-body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.gd10-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.gd10-topbar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
}

.gd10-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0;
  font-size: 0.76rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.gd10-topbar__msg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}

.gd10-topbar__msg .material-symbols-outlined {
  font-size: 15px !important;
  color: var(--color-accent);
}

.gd10-topbar__contact {
  display: flex;
  gap: 1.5rem;
}

.gd10-topbar__contact span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.gd10-topbar__contact .material-symbols-outlined {
  font-size: 15px !important;
  color: var(--color-secondary);
}

@media (max-width: 47.99rem) {
  .gd10-topbar__contact {
    display: none;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.gd10-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 44, 56, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gd10-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.gd10-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.gd10-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  background: var(--brand-gradient);
  color: #062c38;
}

.gd10-logo__accent {
  color: var(--color-accent);
}

.gd10-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.85rem;
}

.gd10-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.gd10-nav a:hover,
.gd10-nav a.is-active {
  color: var(--color-accent);
}

@media (max-width: 63.99rem) {
  .gd10-nav {
    display: none;
  }
}

.gd10-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.gd10-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gd10-icon-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #062c38;
}

.gd10-menu-btn {
  display: none;
}

@media (max-width: 63.99rem) {
  .gd10-menu-btn {
    display: inline-flex;
  }
}

.gd10-search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
}

.gd10-search-panel.is-open {
  max-height: 6rem;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gd10-search-panel__inner {
  padding: 1.1rem 1.5rem;
}

.gd10-mobile-nav {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.gd10-mobile-nav.is-open {
  max-height: 28rem;
  opacity: 1;
}

.gd10-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gd10-mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gd10-mobile-nav a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gd10-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.gd10-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.7rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.gd10-btn--accent {
  background: var(--color-accent);
  color: #062c38;
  box-shadow: 0 14px 30px rgba(201, 168, 106, 0.35);
}

.gd10-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 168, 106, 0.45);
}

.gd10-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gd10-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.gd10-hero {
  background: var(--brand-gradient);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
}

.gd10-hero__inner {
  max-width: 44rem;
  position: relative;
  z-index: 1;
}

.gd10-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gd10-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.gd10-hero__desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.25rem;
}

.gd10-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.gd10-section {
  padding: 4rem 0;
}

.gd10-section--dark {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.9);
}

.gd10-section--dark .gd10-section__title {
  color: #fff;
}

.gd10-section--dark .gd10-section__desc {
  color: rgba(255, 255, 255, 0.65);
}

.gd10-section--alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.gd10-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.gd10-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.gd10-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.gd10-section__desc {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Drag rail
   ========================================================================== */

.gd10-drag-scroll,
.gd10-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.gd10-drag-scroll::-webkit-scrollbar,
.gd10-rail::-webkit-scrollbar {
  height: 6px;
}

.gd10-drag-scroll::-webkit-scrollbar-thumb,
.gd10-rail::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 999px;
}

.gd10-drag-scroll.is-dragging,
.gd10-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gd10-drag-scroll.is-dragging a,
.gd10-rail.is-dragging a {
  pointer-events: none;
}

.gd10-rail .gd10-card {
  flex-shrink: 0;
  width: 300px;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.gd10-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gd10-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(6, 44, 56, 0.14);
  border-color: var(--color-secondary);
}

.gd10-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg);
}

.gd10-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gd10-card:hover .gd10-card__media img {
  transform: scale(1.06);
}

.gd10-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #062c38;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gd10-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.gd10-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gd10-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

.gd10-card__title a {
  color: inherit;
  text-decoration: none;
}

.gd10-card__title a:hover {
  color: var(--color-primary);
}

.gd10-card__excerpt {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.gd10-card__foot {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Expert picks
   ========================================================================== */

.gd10-experts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 63.99rem) {
  .gd10-experts {
    grid-template-columns: 1fr;
  }
}

.gd10-expert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  padding: 1.75rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.gd10-expert-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

.gd10-expert-card__rating {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.gd10-expert-card__rating .material-symbols-outlined {
  font-size: 16px;
  color: var(--color-accent);
  font-variation-settings: 'FILL' 1;
}

.gd10-expert-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.gd10-expert-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.gd10-expert-card__price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.95rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Concierge panel
   ========================================================================== */

.conc-panel {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.75rem;
}

.conc-panel--light {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.conc-inline {
  margin: 2.5rem 0;
}

.conc-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand-gradient);
  color: #fff;
  flex-shrink: 0;
}

.conc-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.conc-panel--light .conc-panel__title {
  color: var(--color-text);
}

.conc-panel__desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.conc-panel--light .conc-panel__desc {
  color: var(--color-muted);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.gd10-newsletter {
  background: var(--brand-gradient);
  border-radius: 1.25rem;
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.gd10-newsletter__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.gd10-newsletter__desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

.gd10-newsletter form {
  display: flex;
  gap: 0.6rem;
  max-width: 28rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.gd10-newsletter input {
  flex: 1;
  min-width: 12rem;
  padding: 0.9rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.88rem;
  outline: none;
}

.gd10-newsletter button {
  padding: 0.9rem 1.7rem;
  border-radius: 0.5rem;
  border: none;
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gd10-newsletter button:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Breadcrumbs / single header
   ========================================================================== */

.gd10-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.gd10-breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
}

.gd10-breadcrumbs a:hover {
  color: var(--color-primary);
}

.gd10-single-head {
  margin-bottom: 2rem;
}

.gd10-single-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0.6rem 0 1.25rem;
  color: var(--color-text);
}

.gd10-single-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-muted);
  flex-wrap: wrap;
}

.gd10-single-meta__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.gd10-single-meta__author img {
  border-radius: 999px;
}

.gd10-single-share {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gd10-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gd10-share-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.gd10-single-media {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 22px 50px rgba(6, 44, 56, 0.18);
}

.gd10-single-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.gd10-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.gd10-tags a {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gd10-tags a:hover {
  background: var(--color-primary);
  color: #fff;
}

.gd10-postnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 39.99rem) {
  .gd10-postnav {
    grid-template-columns: 1fr;
  }
}

.gd10-postnav a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.gd10-postnav a:hover {
  border-color: var(--color-primary);
}

.gd10-postnav--next {
  text-align: right;
  align-items: flex-end;
}

.gd10-postnav__dir {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.gd10-postnav__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.gd10-related {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.gd10-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 63.99rem) {
  .gd10-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   List / archive layout
   ========================================================================== */

.gd10-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 63.99rem) {
  .gd10-layout {
    grid-template-columns: 1fr;
  }
}

.gd10-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gd10-list-card {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 39.99rem) {
  .gd10-list-card {
    flex-direction: column;
  }
}

.gd10-list-card__thumb {
  display: block;
  width: 14rem;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg);
}

@media (max-width: 39.99rem) {
  .gd10-list-card__thumb {
    width: 100%;
  }
}

.gd10-list-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gd10-list-card:hover .gd10-list-card__thumb img {
  transform: scale(1.05);
}

.gd10-list-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gd10-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
}

.gd10-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  padding: 1.5rem;
}

.gd10-widget__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.1rem;
}

.gd10-widget__title .material-symbols-outlined {
  color: var(--color-primary);
}

.gd10-widget-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gd10-widget-list a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gd10-widget-list a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.gd10-footer {
  background: #062c38;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}

.gd10-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding: 2rem 0;
}

@media (max-width: 63.99rem) {
  .gd10-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 39.99rem) {
  .gd10-footer__grid {
    grid-template-columns: 1fr;
  }
}

.gd10-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.gd10-footer__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.gd10-footer__social {
  display: flex;
  gap: 0.6rem;
}

.gd10-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.gd10-footer__social a:hover {
  background: var(--color-accent);
  color: #062c38;
}

.gd10-footer__title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.gd10-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gd10-footer__links a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.gd10-footer__links a:hover {
  color: var(--color-accent);
}

.gd10-footer__nl p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.gd10-footer__nl form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gd10-footer__nl input {
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.gd10-footer__nl input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.gd10-footer__nl button {
  padding: 0.7rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  background: var(--color-accent);
  color: #062c38;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.gd10-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  flex-wrap: wrap;
}

.gd10-textlinks {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Scroll to top
   ========================================================================== */

.gd10-scrolltop,
.gd10-btt {
  position: fixed;
  z-index: 50;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(6, 44, 56, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: all 0.3s ease;
}

.gd10-scrolltop.is-visible,
.gd10-btt.is-visible,
.gd10-btt.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gd10-scrolltop:hover,
.gd10-btt:hover {
  filter: brightness(1.1);
}

/* ==========================================================================
   Prose
   ========================================================================== */

.prose img,
.prose video {
  width: 100%;
  height: auto;
  border-radius: 0.85rem;
  margin: 1.75rem 0;
  box-shadow: 0 18px 36px rgba(6, 44, 56, 0.15);
}

.prose iframe,
.prose .wp-embed,
.prose .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0.85rem;
  margin: 1.75rem 0;
  border: none;
}

.prose blockquote {
  background: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 0.85rem 0.85rem 0;
  padding: 1.25rem 1.5rem;
  font-style: italic;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  color: var(--color-text);
}

.prose a {
  color: var(--color-primary);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.gd10-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.gd10-pagination .page-numbers,
.gd10-pagination.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gd10-pagination .page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.gd10-pagination .page-numbers.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.gd10-pagination .page-numbers.dots {
  border: none;
  background: none;
}

/* ==========================================================================
   Search form
   ========================================================================== */

.gd10-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gd10-searchform {
  position: relative;
  display: flex;
}

.gd10-searchform .search-field {
  width: 100%;
  padding: 0.85rem 3.25rem 0.85rem 1.1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 0.88rem;
  outline: none;
}

.gd10-searchform .search-submit {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  width: 2.6rem;
  border: none;
  border-radius: 0.4rem;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Sidebar post thumbs */
.gd10-widget-posts { display:flex; flex-direction:column; gap:0.85rem; }
.gd10-widget-post {
  display:flex; align-items:center; gap:0.75rem; text-decoration:none; color:inherit;
  transition: transform .2s ease;
}
.gd10-widget-post:hover { transform: translateX(3px); }
.gd10-widget-post img {
  width:56px; height:56px; object-fit:cover; border-radius:10px; flex-shrink:0;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.gd10-widget-post span {
  font-size:0.88rem; font-weight:600; line-height:1.35;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* FIX-PASS-10 */
.gd10-rail,
.gd10-drag-scroll {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.gd10-rail::-webkit-scrollbar,
.gd10-drag-scroll::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
h1,h2,h3,h4,h5,h6,.font-display {
  font-family: var(--font-display);
}

/* === header polish === */
.gd10-topbar { background: #062c38; color: rgba(255,255,255,.8); font-size: .78rem; }
.gd10-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 28px -20px rgba(6,44,56,.45);
}
.gd10-header__row { min-height: 72px; padding: .9rem 0; }
.gd10-logo { font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; color: var(--color-text); }
.gd10-logo__mark {
  width: 2.5rem; height: 2.5rem; border-radius: .7rem;
  background: var(--brand-gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.gd10-nav { display: flex; align-items: center; gap: .25rem; }
.gd10-nav ul,
.gd10-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd10-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd10-nav a, .gd10-nav .menu a, .gd10-nav li a {
  padding: .45rem .9rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600; color: var(--color-text); text-decoration: none;
}
.gd10-nav a:hover, .gd10-nav a.is-active, .gd10-nav .current-menu-item > a {
  background: rgba(22,78,80,.1); color: var(--color-primary);
}
.gd10-icon-btn {
  width: 2.5rem; height: 2.5rem; border-radius: .75rem;
  border: 1px solid var(--color-border); background: #fff;
}

