/*
Theme Name: SKNHD
Version: 1.1.5
*/

/* =========================================
   0) Design tokens (colors, spacing, etc.)
   ========================================= */
:root {
  --accent: #7B1113;           /* oxblood */
  --accent-deep: #5E0D0E;
  --bg: #ffffff;
  --text: #111111;
  --muted: #4B4B4B;
  --border: #E6E6E6;
  --container-pad: 24px;

  /* WP User Manager skin tokens (namespaced) */
  --sknhd-accent: #7B1113;
  --sknhd-accent-deep: #5E0D0E;
  --sknhd-border: #E6E6E6;
  --sknhd-text: #111111;
  --sknhd-muted: #4B4B4B;
  --sknhd-bg: #ffffff;

  /* Boot badge defaults */
  --boot-badge-top: 10px;
  --boot-badge-left: 10px;
  --boot-badge-radius: 12px;
  --boot-badge-padding-y: 6px;
  --boot-badge-padding-x: 8px;
  --boot-gap: 6px;
  --boot-icon-gap: 8px;
  --dot-size: 60px;
  --boot-count-size: 12px;
  --dot-anim-duration: .6s;
  --dot-anim-stagger: .12s;

  /* Lineup (fallbacks) */
  --skn-accent: var(--accent, #a12e2e);
  --skn-accent-hover: var(--accent-deep, #5E0D0E);
  --skn-text: var(--text, #111);
  --skn-bg: var(--bg, #fff);
}

/* =========================================
   1) Base reset & generic elements
   ========================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-deep);
  text-decoration: underline;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--container-pad);
}

.entry-content { font-size: 18px; }

/* Only justify text on phones */
@media (max-width: 600px) {
  .entry-content p,
  .entry-content li,
  .entry-content blockquote {
    text-align: justify;
    text-justify: inter-word;
  }
}



/* Page minimum */
.page-content { min-height: 450px; }

/* Buttons (generic) */
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: 12px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

/* Header tagline CTA (re-uses button look) */
#header-name-container small {
  appearance: none;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: 12px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
  margin-bottom: 25px;
}

/* Section headings with right-aligned CTA button */
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin: 0 0 6px;
}

/* When a heading bar lives inside a .post-grid, make it span the full row */
.post-grid > .section-head,
.post-grid > .section-head--grid{
  grid-column: 1 / -1;
}

/* Base CTA button */
.section-cta.button {
  padding: 10px 16px;
  min-height: 44px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;                      /* modern rounded corners */
  background: var(--accent, #7b1113);      /* SKNWRLD accent color */
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .2s ease;                /* smooth transitions */
}

/* Hover / focus state */
.section-cta.button:hover,
.section-cta.button:focus {
  background: #9b1518;                     /* slightly brighter accent */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* modern shadow lift */
  transform: translateY(-0px);             /* small lift */
  text-decoration: none;
}

/* Active (click) state */
.section-cta.button:active {
  transform: translateY(0);                /* reset lift on click */
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);  /* lighter pressed shadow */
}


/* Optional: hide toolbar buttons on very small screens */
@media (max-width: 640px){
  .section-cta{ display:none; }
}

/* Reset WP image alignment inside post content */
.entry-content figure.wp-block-image {
  margin: 1.5em 0;          /* tidy vertical spacing */
  max-width: 100%;
}

.entry-content figure.wp-block-image img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* Center alignment */
.entry-content figure.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Float left + right (for text wrap) */
.entry-content figure.wp-block-image.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.entry-content figure.wp-block-image.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

/* Mobile: drop floats so images don't squash text */
@media (max-width: 640px) {
  .entry-content figure.wp-block-image.alignleft,
  .entry-content figure.wp-block-image.alignright {
    float: none;
    margin: 1em auto;
    text-align: center;
  }
}

/* Always center captions under images */
.entry-content figure.wp-block-image figcaption,
.entry-content figcaption.wp-element-caption {
  text-align: center;
  margin-top: 0.5em;
}



/* =========================================
   2) Footer
   ========================================= */
.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px 20px;
  font-size: 14px;
  text-align: center;
}
.site-footer a {
  color: #eee;
  text-decoration: none;
  transition: color .2s ease;
}
.site-footer a:hover { color: var(--accent); }

/* Columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  font-size: 16px;
  margin: 0 0 10px;
  color: #fff;
}
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin: 0 0 6px; }

/* Bottom row */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-columns { grid-template-columns: 1fr; text-align: center; }
  .footer-col { margin-bottom: 20px; }
}

/* =========================================
   3) Header & navigation (desktop + mobile)
   ========================================= */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  backdrop-filter: saturate(1.2) blur(6px);
  background: rgba(255, 255, 255, .9);
  z-index: 50;
}
.site-header .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:nowrap;
}

/* Brand + tagline */
.site-branding{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
}
.site-title{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-title .site-logo{
  display: block;
  height: 18px;
  width: auto;
}
.site-tagline{
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  color: var(--muted);
  pointer-events: none;
}
@media (max-width: 900px){
  .site-branding{ align-items: flex-start; }
  .site-tagline{
    position: static;
    transform: none;
    margin-top: 4px;
    white-space: normal;
    font-size: 12px;
  }
  .site-title .site-logo{ height: 16px; }
}

@media (max-width: 900px){
  .site-header .container.header-inner{ width:100%; max-width:100%; }
}


/* Hamburger (bulletproof center → X) */
.nav-toggle{
  display:none;
  background:none;
  border:0;
  padding:6px;
  cursor:pointer;
  position: relative;
  width: 34px;
  height: 26px;
  line-height: 0;
  z-index: 20;
}
.nav-toggle .nav-toggle-bar{
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: 50% 50%;
  transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
  translate: -50% -50%;
  will-change: transform;
}
.nav-toggle .nav-toggle-bar:nth-child(1){ transform: translateY(-6px); }
.nav-toggle .nav-toggle-bar:nth-child(2){ transform: translateY(0); }
.nav-toggle .nav-toggle-bar:nth-child(3){ transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){ transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){ opacity: 0; transform: translateY(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){ transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar{ background: var(--accent); }
@media (prefers-reduced-motion: reduce){
  .nav-toggle .nav-toggle-bar{ transition: none; }
}

/* Primary nav (desktop) */
.site-nav{
  flex:1;
  margin-left:15px;
  display:flex;
  justify-content:flex-start;
}
.site-nav .menu,
.site-nav .menu ul{
  list-style:none;
  margin:0; padding:0;
}
.site-nav .menu{
  display:flex;
  align-items:center;
  gap:18px;
}
.site-nav .menu > li{ position:relative; }

/* Dropdown indicator */
.site-nav .menu > li.menu-item-has-children > a{ padding-right:4px; }
.site-nav .menu > li.menu-item-has-children > a::after{
  content:"▾";
  font-size:.8em;
  margin-left:6px;
  opacity:.7;
}

/* Desktop hover dropdown */
.site-nav .menu > li:hover > .sub-menu,
.site-nav .menu > li:focus-within > .sub-menu{
  opacity:1; visibility:visible; transform:translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* Links (desktop) */
.site-nav .menu a{
  --pad-y:10px; --pad-x:8px;
  display:inline-block;
  padding:var(--pad-y) var(--pad-x);
  font-weight:600;
  letter-spacing:.2px;
  color:var(--text);
  text-decoration:none;
  border-radius:10px;
  transition: color .18s ease, background-color .18s ease, background-size .18s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.site-nav .menu a:hover,
.site-nav .menu a:focus{
  color:var(--accent);
  background-size:100% 2px;
}

/* Active underline */
.site-nav .menu .current-menu-item > a,
.site-nav .menu .current-menu-ancestor > a{
  color: var(--accent);
  background: none;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  border-radius: 0;
}
.site-nav .menu .current-menu-item > a:hover,
.site-nav .menu .current-menu-ancestor > a:hover{
  color: var(--accent-deep);
  background-size: 100% 2px;
}

/* Desktop dropdown panel */
.site-nav .menu .sub-menu{
  position:absolute; left:0; top:100%;
  min-width:150px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  padding:8px; margin-top:8px;
  display:block;
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index:60;
}
@media (max-width: 768px) {
  .container.header-inner {
    max-width: 100%;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

.site-nav .menu .sub-menu li{ position:relative; }
.site-nav .menu .sub-menu a{
  display:block; padding:10px 12px; border-radius:8px;
  color:var(--text); background:none; background-size:0 0;
}
.site-nav .menu .sub-menu a:hover{ background: rgba(0,0,0,.04); color: var(--accent); }
/* Nested flyout */
.site-nav .menu .sub-menu .sub-menu{ left:100%; top:0; margin:0 0 0 8px; }

/* Header search + user icon wrapper */
.header-searchbar{ display:flex; align-items:center; gap:10px; }
.header-search{ display:flex; align-items:center; }
.header-search .search-field{
  border:1px solid var(--border);
  border-radius:6px 0 0 6px;
  padding:6px 10px; font-size:14px;
  flex:0 1 auto;
}
.header-search .search-submit{
  border:1px solid var(--border); border-left:0;
  border-radius:0 6px 6px 0;
  height:31px; background:var(--accent); color:#fff;
  padding:6px 10px; cursor:pointer;
}
.header-search .search-submit:hover{ background:var(--accent-deep); }

.search-meta {margin-left: 15px;}




/* User menu */
.user-menu{ position:relative; top:1px; }

.user-menu__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--border);
  cursor:pointer;
  padding:0;
  transition: box-shadow .15s ease, border-color .15s ease;
  text-decoration:none; /* prevent underline on icon */
}
.user-menu__button:hover,
.user-menu__button:focus{
  border-color: var(--accent);
  box-shadow:0 0 0 3px rgba(123,17,19,.12);
  text-decoration:none; /* keep it clean */
}

.user-avatar img{
  width:36px;
  height:36px;
  border-radius:50%;
  display:block;
  object-fit:cover;
  border:1px solid var(--border);
}
.user-avatar--blank{
  display:inline-flex;
  color:var(--text);
  opacity:.9;
}

/* Dropdown */
.user-menu__dropdown{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  min-width:180px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  padding:6px;
  margin:0;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index:70;
}
.user-menu.is-open .user-menu__dropdown,
.user-menu:focus-within .user-menu__dropdown,
.user-menu:hover .user-menu__dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  transition:opacity .18s ease, transform .18s ease, visibility 0s;
}
.user-menu__dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  color:var(--text);
  text-decoration:none;
}
.user-menu__dropdown a:hover{
  background:rgba(0,0,0,.04);
  color:var(--accent);
}
.user-menu__dropdown a i{ margin-right:6px; }




/* Mobile / tablet header (≤900px) — FIXED GRID AREAS */
@media (max-width: 900px){
  .site-header .header-inner{
    display:grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "search search";
    align-items:center;
    gap:10px;
  }

  /* ✅ direct grid children */
  .site-branding{ grid-area: brand; }
  .nav-toggle{ grid-area: toggle; display:inline-flex !important; }

  /* Full-width row for search + avatar */
  .header-searchbar{
    grid-area: search;
    width:100%;
    margin:0;
    display:grid;
    grid-template-columns: 1fr auto; /* search form | user menu */
    align-items:center;
    gap:10px;
  }
  .header-searchbar .header-search{
    display:flex;
    min-width:0;
    width:100%;
  }
  .header-searchbar .search-field{
    flex:1 1 auto;  /* stretch */
    min-width:0;
    width:100%;
  }
  .header-searchbar .user-menu{
    justify-self:end; /* avatar to the right */
  }

  /* Collapse primary nav by default */
  .site-nav{
    margin-left:0;
    display:none !important;
    grid-column: 1 / -1;
    background:#fff;
    border-top:1px solid var(--border);
    padding:8px 12px;
    position:relative;
    z-index:15;
  }
  .site-nav.is-open,
  .site-nav.open{ display:block !important; }

  /* Vertical list */
  .site-nav .menu{
    display:flex; flex-direction:column; align-items:stretch;
    gap:4px; margin:0; padding:0;
  }
  .site-nav .menu > li > a{
    display:block; padding:10px 6px; border-radius:8px;
    font-weight:600; background-size:0 0;
  }
  .site-nav .menu > li > a:hover{ background: rgba(0,0,0,.04); }

  /* Mobile submenus flattened */
  .site-nav .menu .sub-menu{
    position:static; border:0; box-shadow:none; border-radius:8px;
    padding:0; margin:4px 0 0 0;
    opacity:1; visibility:visible; transform:none; max-height:none; overflow:visible;
  }

  /* Active/ancestor highlighting */
  #primary-nav .mnav .current-menu-item > a,
  #primary-nav .mnav .current_page_item > a,
  #primary-nav .mnav .current-menu-ancestor > a,
  #primary-nav .mnav .current_page_ancestor > a,
  #primary-nav .mnav .current-menu-parent > a,
  #primary-nav .mnav .current_page_parent > a{
    background-color: #f5f5f5;
    padding-top: 15px; padding-bottom: 15px;
    border-radius: 10px; color: inherit;
  }
  #primary-nav .mnav .current-menu-item > a:hover,
  #primary-nav .mnav .current_page_item > a:hover{
    background-color: rgba(0,0,0,.08) !important;
  }
  #primary-nav .mnav .menu-item-back > a .fa-chevron-left,
  #primary-nav .mnav .mnav-next .fa-solid{ color: var(--accent); }
}

/* Global helpers */
.edit-footer-link { float: right; padding-right: 5px; }
.edit-link {
  margin-left: 8px; font-size: 0.6em; color: var(--muted); vertical-align: middle;
}
.edit-link:hover { color: var(--accent); }

/* Header avatar (global helper) */
#header-avatar-container img {
  height: 48px; border-radius: 50%; object-fit: cover;
}


/* =========================================
   4) Embeds (IG, YT, Spotify) & WP image alignment
   ========================================= */

/* Instagram feed (Spotlight) */
.home-ig-embed{ max-height:175px; overflow:hidden; }
.home-ig-embed [class*="Layout__cell"]{
  border-radius:12px; overflow:hidden; background:transparent !important;
}
.home-ig-embed [class*="Layout__cell"] *{ background:transparent !important; }
.home-ig-embed img{ width:100%; height:100%; object-fit:cover; border-radius:inherit; }

/* WP image alignment + centring */
.entry-content img:not(.alignleft):not(.alignright):not(.aligncenter) {
  display: block; margin-left: auto; margin-right: auto;
}
.entry-content img.aligncenter,
.entry-content a > img.aligncenter{
  display:block; margin-left:auto; margin-right:auto;
}
.entry-content img.alignleft{ float:left; margin:0 1.2em 1em 0; }
.entry-content img.alignright{ float:right; margin:0 0 1em 1.2em; }
.entry-content .wp-block-image.aligncenter{
  float:none; margin-left:auto; margin-right:auto; margin-top:25px; text-align:center;
}
.entry-content .wp-block-image:has(> img.aligncenter),
.entry-content .wp-block-image:has(> a > img.aligncenter){
  float:none !important; margin-left:auto; margin-right:auto; width:fit-content; max-width:100%; text-align:center;
}
.entry-content .wp-block-image > img.aligncenter + figcaption,
.entry-content .wp-block-image > a > img.aligncenter + figcaption{ text-align:center; }

/* Spotify mobile clamp */
@media (max-width: 768px){
  .entry-content figure.wp-block-embed.spotify,
  .entry-content figure.wp-block-spotify,
  .entry-content .wp-block-embed.is-provider-spotify {
    position: relative; z-index: 3; margin: 12px 0 14px; line-height: 0;
  }
  .entry-content .wp-block-embed.is-provider-spotify .wp-block-embed__wrapper,
  .entry-content figure.wp-block-embed.spotify .wp-block-embed__wrapper,
  .entry-content figure.wp-block-spotify .wp-block-embed__wrapper {
    position: static !important; padding: 0 !important; aspect-ratio: auto !important; height: auto !important;
  }
  .entry-content .wp-block-embed.is-provider-spotify iframe,
  .entry-content figure.wp-block-embed.spotify iframe,
  .entry-content figure.wp-block-spotify iframe {
    display:block; width:100%; border:0; border-radius:14px; height:auto !important; min-height:0 !important; max-height:none !important;
  }
  .entry-content .wp-block-embed.is-provider-spotify iframe[src*="/embed/track"],
  .entry-content .wp-block-embed.is-provider-spotify iframe[src*="/embed/episode"],
  .entry-content figure.wp-block-embed.spotify iframe[src*="/embed/track"],
  .entry-content figure.wp-block-spotify iframe[src*="/embed/track"],
  .entry-content figure.wp-block-embed.spotify iframe[src*="/embed/episode"],
  .entry-content figure.wp-block-spotify iframe[src*="/embed/episode"]{
    height:80px !important; min-height:80px !important; max-height:80px !important;
  }
  .entry-content .wp-block-embed.is-provider-spotify iframe[src*="/embed/album"],
  .entry-content .wp-block-embed.is-provider-spotify iframe[src*="/embed/playlist"],
  .entry-content figure.wp-block-embed.spotify iframe[src*="/embed/album"],
  .entry-content figure.wp-block-spotify iframe[src*="/embed/album"],
  .entry-content figure.wp-block-embed.spotify iframe[src*="/embed/playlist"],
  .entry-content figure.wp-block-spotify iframe[src*="/embed/playlist"]{
    height:220px !important; min-height:220px !important; max-height:220px !important;
  }
  .entry-content .bubbles-wrap,
  .entry-content .is-style-sknhd-chat,
  .entry-content .is-style-sknhd-reply{
    position: relative; z-index: 2; margin-top: 12px;
  }
}

/* =========================================
   5) Typography (titles, subtitles)
   ========================================= */
h1, h2, h3, .site-title, .auth-title {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

/* Entry header row */
.entry-header-row {
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* Titles */
.entry-title{
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-size: 2.3em;
  max-width: 65%;
  position: relative;
  display: inline-block;
}
.entry-title.front{
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-size: 2.3em;
  position: relative;
  display: inline-block;
}
.entry-title.front::after{
  content: "›"; display:inline-block; margin-left:.1em; font-size:1em; line-height:inherit;
  color: var(--accent); transition: transform .25s ease;
}
.entry-title.front:hover::after{ transform: translateX(4px); }
@media (max-width: 768px){
  .entry-header-row{ flex-direction: column; align-items: flex-start; gap: 6px; }
  .entry-title.front{
    margin-bottom: 5px; margin-top: -10px; line-height: 1.3; font-size: 1.8em; display:block; text-align:left;
  }
}

/* Subtitle */
.post-subtitle{
  font-family: "Playfair Display", serif;
  font-size: 18px; font-weight: 400;
  color: var(--muted);
  margin: 4px 0 12px; line-height: 1.4;
}

/* =========================================
   6) Meta chips & boot rating
   ========================================= */
.post-meta,
.single-meta{
  color: var(--muted);
  font-size: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dot-sep { opacity:.6; }

.sknhd-boot-rating{ display:inline-flex; gap:4px; align-items:center; }
.sknhd-boot-rating .boot{ font-size:20px; filter:grayscale(100%); opacity:.4; }
.sknhd-boot-rating .boot.on{ filter:none; opacity:1; color:var(--accent); }
.sknhd-boot-rating .sknhd-boot-label{ font-size:13px; color:var(--muted); margin-left:8px; }

/* Boot rating badge (dots) */
.blur-box { position: relative; }
.boot-badge{
  position: absolute; top: var(--boot-badge-top); left: var(--boot-badge-left);
  display: inline-flex; align-items: center; gap: var(--boot-gap);
  padding: var(--boot-badge-padding-y) var(--boot-badge-padding-x);
  border-radius: var(--boot-badge-radius);
  background: rgba(0, 0, 0, 0.4);
  color: #fff; line-height: 1; z-index: 2; border: none;
}
@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .boot-badge{
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
    background: rgba(0, 0, 0, 0.3);
  }
}
.boot-badge .boot-icons{ display:inline-flex; align-items:center; gap: var(--boot-icon-gap); }
.boot-badge .boot-dot{
  width: var(--dot-size); height: var(--dot-size);
  border-radius: 50%; background: currentColor; opacity:.25; flex:0 0 auto; transform: scale(.9);
}
.boot-badge .boot-dot.is-on{
  opacity:1; animation: bootDotFill var(--dot-anim-duration) ease-out forwards;
}
.boot-badge .boot-dot.is-on:nth-child(1){ animation-delay: calc(var(--dot-anim-stagger) * 0); }
.boot-badge .boot-dot.is-on:nth-child(2){ animation-delay: calc(var(--dot-anim-stagger) * 1); }
.boot-badge .boot-dot.is-on:nth-child(3){ animation-delay: calc(var(--dot-anim-stagger) * 2); }
.boot-badge .boot-dot.is-on:nth-child(4){ animation-delay: calc(var(--dot-anim-stagger) * 3); }
.boot-badge .boot-dot.is-on:nth-child(5){ animation-delay: calc(var(--dot-anim-stagger) * 4); }
.boot-badge .boot-dot:not(.is-on){ animation: bootDotIdle .4s ease-out forwards; animation-delay: .05s; }
.boot-badge .boot-count{ font-size: var(--boot-count-size); opacity: .9; }

@keyframes bootDotFill{
  0%{ opacity:.15; transform: scale(.6); filter: saturate(80%); }
  60%{ transform: scale(1.08); }
  100%{ opacity:1; transform: scale(1); filter: saturate(100%); }
}
@keyframes bootDotIdle{
  0%{ opacity:0; transform: scale(.6); }
  100%{ opacity:.25; transform: scale(.9); }
}
@media (prefers-reduced-motion: reduce){
  .boot-badge .boot-dot,
  .boot-badge .boot-dot.is-on{ animation:none !important; transform:none !important; }
}
@media (max-width: 480px){
  :root{
    --boot-badge-padding-y: 5px;
    --boot-badge-padding-x: 7px;
    --boot-gap: 5px;
    --boot-icon-gap: 6px;
    --dot-size: 22px;
    --dot-anim-stagger: .09s;
  }
}

/* =========================================
   7) Comments
   ========================================= */
#comments{ margin-top:48px; }
.comment-list{
  list-style:none; margin:0; padding:10px; border-radius:20px; background:#fffafa;
}
.comment{
  border-top:1px solid var(--border); padding:16px 0;
}
.comment:first-child{ border-top:0; }
.comment .comment-body{
  display:grid; grid-template-columns:48px 1fr; gap:12px;
}

.comment .comment-avatar .avatar{
  width:48px; height:48px; border-radius:50%;
  display:block; border:1px solid var(--border);
  object-fit:cover; object-position:center;
}
.comment .letter-avatar{
  width:48px; height:48px; border-radius:50%;
  display:grid; place-items:center;
  background:#f3f3f3; color:var(--accent);
  font-weight:700; font-size:18px;
	margin-left: 2px;
}
.comment .comment-meta{ font-size:13px; color:var(--muted); }
.comment .comment-author{ font-weight:600; color:var(--text); }
.comment .comment-content{ margin-top:-10px; }

.comment-respond{
  margin-top:24px; border-top:1px solid var(--border); padding-top:16px;
}

/* Inputs */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea{
  width:100%; padding:10px 12px; border:1px solid var(--border);
  border-radius:8px; background:#fff; box-sizing:border-box;
}
.comment-respond .form-submit .submit,
.comment-form .form-submit .submit,
.comment-form .submit{
  background:var(--accent); color:#fff; border:0;
  padding:10px 16px; border-radius:8px; cursor:pointer;
}
.comment-respond .form-submit .submit:hover,
.comment-form .form-submit .submit:hover,
.comment-form .submit:hover{ background:var(--accent-deep); }
.comment-main{ padding-left:1px; }

/* Remove numbering but keep indent */
ol.comment-list, ol.comment-list ol, ol.comment-list ul{
  list-style:none; margin:0; padding-left:0;
}
ol.comment-list .children{ margin-left:32px; }

/* Theme callback structure */
.sknhd-comment{ display:block; margin:0 0 18px; padding:0; }
.sknhd-comment .comment-body{ display:flex; gap:12px; }
.sknhd-comment .comment-avatar{ flex:0 0 auto; }
.sknhd-avatar{ display:inline-block; border-radius:50%; overflow:hidden; }
.sknhd-avatar--letter{
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; color:#fff; text-transform:uppercase;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
}
.sknhd-comment .comment-content-wrap{ flex:1 1 auto; }
.sknhd-comment .comment-meta{ display:flex; gap:8px; flex-wrap:wrap; font-size:13px; color:#666; }
.sknhd-comment .comment-author .fn{ font-weight:600; color:var(--text); }
.sknhd-comment .comment-text{ margin-top:4px; }
.sknhd-comment .comment-actions{ margin-top:6px; font-size:13px; }

/* Two-column name/email */
.comment-form-author, .comment-form-email{ width:48%; float:left; margin-right:4%; }
.comment-form-email{ margin-right:0; }
.comment-form-author input, .comment-form-email input{ width:100%; box-sizing:border-box; }

/* Clear before textarea/actions */
.comment-form-comment, .comment-form-actions{ clear:both; }

/* Actions row */
.comment-form .comment-form-actions{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-top:12px;
}
.comment-form .comment-form-actions .remember,
.comment-form .comment-form-cookies-consent{
  display:inline-flex; align-items:center; gap:8px; margin:0;
  font-size:14px; color:var(--muted);
  flex:1 1 auto;
}
.comment-form .comment-form-actions input[type="checkbox"]{
  width:18px; height:18px; accent-color:var(--text);
}
.comment-form .comment-form-actions .form-submit{ margin:0; padding:0; flex:0 0 auto; }
.comment-form .comment-form-actions .form-submit > *{ vertical-align:middle; }

@media (max-width: 640px){
  .comment-form-author, .comment-form-email{ width:100%; float:none; margin-right:0; }
  .comment-form .comment-form-actions{ flex-direction:column; align-items:stretch; gap:10px; }
  .comment-form .comment-form-actions .form-submit{ width:100%; }
  .comment-form .comment-form-actions .form-submit .submit{ width:100%; }
}

/* =========================================
   8) Chat bubbles
   ========================================= */
.is-style-sknhd-chat{
  background:#f7f7f8; border:1px solid var(--border);
  border-radius:18px; padding:14px 16px;
}
.is-style-sknhd-reply{
  background:#fff; border:1px solid var(--accent);
  border-radius:18px; padding:14px 16px;
  box-shadow:0 2px 0 rgba(123,17,19,.15);
}

/* =========================================
   9) Category tags + single actions
   ========================================= */
.post-card, .view-list .post-card{ position:relative; }

.cat-tag{
  position:absolute; top:10px; right:10px;
  padding:4px 10px; border-radius:6px; font-size:13px; font-weight:600;
  color:#fff; background:#333; z-index:5;
}
.cat-tag.cat-news{ background:#7B1113; }
.cat-tag.cat-reviews{ background:#1d72b8; }
.cat-tag.cat-stories{ background:#2a9d8f; }
.cat-tag.cat-interviews{ background:#e9c46a; color:#111; }
.cat-tag.cat-other{ background:#6a1b9a; }

.single-share-tags{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin-top:18px; padding-top:12px; border-top:1px solid rgba(0,0,0,.08);
}
@media (max-width: 640px){
  .single-share-tags { gap: 10px; }
  .single-share-tags__left, .single-share-tags__right { width: 100%; }
  .single-share-tags__right { text-align: left; margin-left: 0; }
  .single-share-tags .tags-label { display: inline-block; margin-right: 6px; }
}

.single-actions{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:nowrap; margin-top:18px; padding-top:12px;
  border-top:1px solid rgba(0,0,0,.08);
}
.single-actions__tags{
  display:flex; align-items:center; gap:8px; min-width:0; flex:1 1 auto;
}
.single-actions__tags .tags-label{ font-weight:600; }
.single-actions__tags .tags-list{
  display:flex; gap:6px; flex-wrap:wrap; min-width:0; overflow-wrap:anywhere;
}
.single-actions__share{
  display:flex; align-items:center; gap:8px; margin-left:auto; flex:0 0 auto;
}
@media (max-width: 720px){
  .single-actions{
    flex-direction:column; align-items:center; gap:16px; margin:32px 0;
  }
  .single-actions__tags, .single-actions__share{
    width:100%; margin-left:0; text-align:center; display:flex; justify-content:center; flex-wrap:wrap;
  }
  .single-actions__tags{ order:1; }
  .single-actions__share{ order:2; margin-bottom:16px; }
}

/* =========================================
   10) Hero slider (featured posts)
   ========================================= */
.sknhd-hero{
  position: relative; margin: 12px 0 2px; overflow: hidden; border-radius: 14px;
}

/* Exact hero ratio (1032×387 ≈ 8:3) */
.sknhd-hero .sknhd-hero-track{
  position: relative; overflow: hidden; aspect-ratio: 1032/387;
}

/* Slides (fade) */
.sknhd-hero .sknhd-hero-slide{
  position: absolute; inset: 0; display: block; opacity: 0;
  transition: opacity .6s ease-in-out; will-change: opacity; pointer-events: none; z-index: 0;
  backface-visibility: hidden; transform: translateZ(0);
}
.sknhd-hero .sknhd-hero-slide.is-active{ opacity: 1; pointer-events: auto; z-index: 1; }

/* Media fills the box; image pans via inline object-position from PHP */
.sknhd-hero .sknhd-hero-media{ 
  position: absolute; inset: 0; display: block;
}
.sknhd-hero .sknhd-hero-media img,
.sknhd-hero .sknhd-hero-placeholder{
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: center;              /* overridden inline (e.g., 42% 28%) */
  background: #f3f3f3;
  will-change: object-position;
  transition: object-position .2s ease;
  filter: brightness(0.72); /* Darken featured image slightly */
}

/* Caption overlay */
.sknhd-hero .sknhd-hero-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.45) 65%,
    rgba(0,0,0,0) 100%);
  color: #fff; padding: 28px 22px 25px; z-index: 2;
}
.sknhd-hero .sknhd-hero-meta{ font-size: 13px; opacity: .9; }
.sknhd-hero .sknhd-hero-subtitle{ font-size: 16px; line-height: 1.35; margin: 6px 0 4px; opacity: .95; }
.sknhd-hero .sknhd-hero-title{ margin: 4px 0 6px; font-size: 28px; line-height: 1.2; }
.sknhd-hero .sknhd-hero-title a{ color: #fff; text-decoration: none; }
.sknhd-hero .sknhd-hero-title a:hover{ text-decoration: underline; }
.sknhd-hero .sknhd-hero-excerpt{ margin: 0; font-size: 14px; opacity: .95; }

/* Nav arrows */
.sknhd-hero .sknhd-hero-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: #fff; border: 0; width: 40px; height: 40px;
  border-radius: 50%; display: grid; place-items: center; cursor: pointer; z-index: 5;
  -webkit-tap-highlight-color: transparent;
}
.sknhd-hero .sknhd-hero-nav:hover{ background: rgba(0,0,0,.65); }
.sknhd-hero .sknhd-hero-nav.prev{ left: 10px; }
.sknhd-hero .sknhd-hero-nav.next{ right: 10px; }

/* Dots */
.sknhd-hero .sknhd-hero-dots{
  position: absolute; left: 0; right: 0; bottom: 10px;
  display: flex; gap: 6px; justify-content: center; z-index: 5;
}
.sknhd-hero .sknhd-hero-dots .dot{
  appearance: none; padding: 0; margin: 0; width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid #fff; background: transparent; cursor: pointer; display: inline-block; flex: 0 0 auto;
  box-sizing: content-box; line-height: 0; font-size: 0; transform: none; -webkit-tap-highlight-color: transparent;
}
.sknhd-hero .sknhd-hero-dots .dot.is-active{ background: #fff; }

/* Motion reduce */
@media (prefers-reduced-motion: reduce){
  .sknhd-hero .sknhd-hero-slide{ transition: none; }
}

/* Tablet polish */
@media (max-width: 1024px){
  .sknhd-hero{ margin: 10px 0 48px; border-radius: 12px; }
  .sknhd-hero .sknhd-hero-track{ aspect-ratio: 16/9; }
  .sknhd-hero .sknhd-hero-caption{
    padding: 20px 18px 16px;
    background: linear-gradient(to top,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.62) 40%,
      rgba(0,0,0,0.3) 70%,
      rgba(0,0,0,0) 100%);
  }
  .sknhd-hero .sknhd-hero-title{ font-size: 22px; line-height: 1.22; }
  .sknhd-hero .sknhd-hero-subtitle{ font-size: 14px; }
  .sknhd-hero .sknhd-hero-meta{ display: none; }
  .sknhd-hero .sknhd-hero-dots{ bottom: 8px; gap: 6px; }
  .sknhd-hero .sknhd-hero-dots .dot{ width: 7px; height: 7px; }
}

/* Small screens */
@media (max-width: 780px){
  .sknhd-hero .sknhd-hero-track{ aspect-ratio: 16/10; }
  .sknhd-hero .sknhd-hero-caption{ padding: 16px 14px 12px; }
  .sknhd-hero .sknhd-hero-title{ font-size: 18px; line-height: 1.24; }
  .sknhd-hero .sknhd-hero-subtitle{ font-size: 13px; margin-top: 4px; }
  .sknhd-hero .sknhd-hero-excerpt{ display: none; }
  .sknhd-hero .sknhd-hero-dots{ bottom: 6px; gap: 5px; }
  .sknhd-hero .sknhd-hero-dots .dot{ width: 6px; height: 6px; }
}

/* Phones */
@media (max-width: 520px){
  .sknhd-hero .sknhd-hero-track{ aspect-ratio: 16/12; }
  .sknhd-hero .sknhd-hero-caption{ padding: 16px 12px 14px; }
  .sknhd-hero .sknhd-hero-title{ font-size: 24px; line-height: 1.35; }
  .sknhd-hero .sknhd-hero-subtitle{ font-size: 12.5px; }
  .sknhd-hero .sknhd-hero-excerpt{ display: none; }
}

/* Hero badge pin */
.sknhd-hero-slide { position: relative; }
.sknhd-hero-badge{
  position: absolute; top: 12px; right: 12px; z-index: 3; pointer-events: auto;
}
@media (max-width: 480px){
  .sknhd-hero-badge { top: 8px; right: 8px; }
}

/* =========================================
   11) Single blur hero
   ========================================= */
.single-hero.hero--blurbar{
  position: relative; height: var(--hero-h, 300px); min-height: 250px;
  width: 100%; margin: 0 0 1.5rem 0; overflow: hidden; border-radius: 14px;
  background: #111; isolation: isolate;
}
.single-hero.hero--blurbar .hero-bg{
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: blur(28px) brightness(0.75); transform: scale(1.12); z-index: 0;
}
.single-hero.hero--blurbar .hero-bg--placeholder{
  background: radial-gradient(120% 80% at 10% 0%, #2a2a2a 0%, #1a1a1a 100%);
  filter: none; transform: none;
}
.single-hero.hero--blurbar .hero-foreground-wrap{
  position: relative; height: 100%; z-index: 2;
  display: flex; align-items: center; justify-content: center; padding: .5rem;
}
.single-hero.hero--blurbar .hero-foreground{
  aspect-ratio: 1 / 1; height: 100%; max-height: var(--hero-h, 300px);
  width: auto; object-fit: cover; display: block; border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
@media (min-width: 1025px){
  .single-hero.hero--blurbar .hero-foreground-wrap{ justify-content: flex-end; }
}
.single-hero.hero--blurbar .hero-fade{
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.65) 30%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0) 100%);
  z-index: 1;
}
.single-hero.hero--blurbar .single-hero-content{
  position: absolute; inset: auto 0 0 0;
  padding: 1rem 1.25rem 1.15rem; z-index: 3; color: #fff;
}
.single-hero-chips{ display:flex; gap:.5rem; margin: 0 0 .4rem 0; }
.hero-chip{
  font-size: .72rem; background: rgba(255,255,255,.16); color:#fff;
  padding: .35rem .6rem; border-radius: 999px; backdrop-filter: blur(4px) saturate(130%);
}
.single-hero.hero--blurbar .entry-title{
  margin: 0 0 .15rem 0; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.45);
}
.single-hero.hero--blurbar .entry-subtitle{
  max-width: 700px; color: rgba(255,255,255,.92); font-weight: 500;
}
.single-hero.hero--blurbar .single-meta{
  font-size: .9rem; color: rgba(255,255,255,.88);
}
.single-hero.hero--blurbar .single-hero-caption{
  position: absolute; right: .75rem; bottom: .75rem; z-index: 3;
  color: rgba(255,255,255,.9); font-size: .78rem; text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

/* Tablet & Phone: stack cleanly */
@media (max-width: 1024px){
  .single-hero.hero--blurbar{
    height: auto; min-height: 0; border-radius: 0; background: transparent;
  }
  .single-hero.hero--blurbar .hero-bg,
  .single-hero.hero--blurbar .hero-fade{ display: none !important; }
  .single-hero.hero--blurbar .hero-foreground-wrap{ justify-content:center; padding:0; }
  .single-hero.hero--blurbar .hero-foreground{
    width:100%; height: clamp(220px, 52vw, 340px);
    max-height:none; border-radius:0; box-shadow:none; object-fit:cover; object-position: top;
  }
  .single-hero.hero--blurbar .single-hero-content{
    position: static; padding-left: 2px; padding-right: var(--container-pad);
    padding-top: 1rem; padding-bottom: 0; color: inherit; text-align: left;
  }
  .single-hero.hero--blurbar .entry-title{
    color: inherit; text-shadow: none; margin: 0 0 .2rem 0; max-width:100%;
    overflow-wrap:anywhere; word-break:normal; hyphens:auto; line-height:1.2;
  }
  .single-hero.hero--blurbar .entry-subtitle{
    color: inherit; text-shadow: none; opacity: .9; line-height: 1.25; margin:7px 0 10px;
  }
  .single-hero.hero--blurbar .single-meta{
    color: inherit; opacity:.85; font-size: clamp(.9rem, 3.2vw, 1rem); margin-left:0; padding-left:0;
  }
  .single-hero.hero--blurbar .single-hero-caption{
    position: static; margin: .5rem 1rem 0; color: inherit; text-shadow:none; opacity:.7;
  }
  .entry-header-row, .post-subtitle, .single-meta{
    padding-left: var(--container-pad); padding-right: var(--container-pad);
  }
}



/* =========================================
   12) Category sections (home/archive)
   ========================================= */
.cat-section{ margin:28px 0; }
.cat-section-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px;
}
.cat-section-head .cat-title{ font-size:22px; margin:0; }
.cat-section-head .view-all{ font-size:14px; }

/* =========================================
   13) Post grid & cards (grid + list)
   ========================================= */
.post-grid{
  display:grid; gap:18px; padding-top:10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width:980px){ .post-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:640px){ .post-grid{ grid-template-columns: 1fr; } }

.post-card{
  border:1px solid var(--border);
  border-radius:12px; overflow:hidden; background:#fff;
  display:flex; flex-direction:column;
}
.post-card .post-thumb{
  position: relative; overflow: hidden; border-radius: 12px 12px 0 0; flex-shrink: 0;
}
.post-card .post-thumb img,
.post-card .post-thumb .thumb-placeholder{
  width:100%; display:block; aspect-ratio:16/10; object-fit:cover; object-position: top;
  transition: transform .4s ease, filter .4s ease;
}
.post-card:hover .post-thumb img,
.post-card:hover .post-thumb .thumb-placeholder{
  transform: scale(1.08); filter: brightness(1.05);
}
.post-card .post-thumb .thumb-placeholder{ background:#f3f3f3; }

.post-card .post-card-body{ padding:14px; flex:1; }
.post-card .post-card-meta{
  font-size:13px; color:var(--muted); display:flex; align-items:center; gap:8px; margin-bottom:6px;
}
.post-card .post-card-title{ font-size:20px; margin:0 0 6px; }
.post-card .post-card-title a{ color:var(--text); text-decoration:none; }
.post-card .post-card-title a:hover{ color:var(--accent); }
.post-card .post-card-excerpt{ color:#333; font-size:15px; }
.post-card .post-card-footer{
  margin-top:10px; display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.post-card .read-more{ font-weight:600; color:var(--accent); }
.post-card .read-more:hover{ color:var(--accent-deep); }

/* Optional YouTube strip cards */
.cards.cards--grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap:16px; }
.card__media{ position:relative; aspect-ratio:16/9; overflow:hidden; border-radius:12px; }
.card__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.card__badge{
  position:absolute; inset:10px auto auto 10px; background: var(--accent);
  color:#fff; font-size:12px; line-height:1; padding:6px 8px; border-radius:999px; letter-spacing:.2px;
}
.card__title{ font-size:16px; margin:10px 0 4px; }
.card__meta{ color: var(--muted); font-size:13px; }

.ytbox{
  position: fixed; inset: 0; display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
}
.ytbox.is-open{ display: flex; }
.ytbox__backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px) saturate(120%);
}
.ytbox__dialog{
  position: relative;
  z-index: 1;
  width: min(1000px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  overflow: hidden;
}
.ytbox__framewrap, #ytbox-iframe{
  width: 100%; height: 100%; display: block; border: 0;
}
.ytbox__close{
  position: absolute; top: 8px; right: 8px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border, rgba(255,255,255,.25));
  background: rgba(0,0,0,.45); color: #fff; font-size: 22px;
  line-height: 1; cursor: pointer;
}
.ytbox__close:hover{ background: rgba(0,0,0,.65); }
.ytbox__title{ position:absolute; left:14px; top:10px; margin:0; color:#fff; font-size:14px; }
@media (max-width: 680px){
  .ytbox__dialog{ width: 96vw; border-radius: 10px; }
}

/* View toggles + cat filter */
.archive-header{
  max-width: 1100px;
  margin: 20px auto 6px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.archive-header .entry-title{ margin:0; font-size: clamp(1.4rem, 1vw + 1rem, 2rem); line-height:1.15; }

.archive-controls{
  display:flex; align-items: flex-start; gap: 8px;
}
.view-toggle{ display:flex; gap:8px; align-items:center; }
.view-toggle .view-btn{
  display:inline-grid; place-items:center; width:36px; height:32px;
  border:1px solid var(--border); border-radius:8px; background:#fff; cursor:pointer; font-size:16px;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}
.view-toggle .view-btn:hover{ border-color: var(--accent); background: var(--accent); color:#fff; }
.view-toggle .view-btn[aria-pressed="true"]{ background: var(--accent); border-color: var(--accent); color:#fff; }
.view-toggle .view-btn:active{ transform: translateY(1px); }
@media (max-width: 767.98px){ .view-toggle{ display:none; } }

.cat-filter{
  border:1px solid var(--border); border-radius:8px; padding:6px 10px; font-size:14px;
  background:#fff; color:var(--text); cursor:pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cat-filter:hover, .cat-filter:focus{
  border-color: var(--accent); box-shadow: 0 0 0 2px rgba(123,17,19,.15); outline: none;
}

/* Grid vs list */
.view-grid .post-grid{ display:grid; }
.view-list .post-grid{ display:flex; flex-direction:column; gap:14px; }
.view-list .post-card{
  display:grid; grid-template-columns:240px 1fr; align-items:stretch; gap:0;
  border-radius:12px; overflow:hidden;
}
.view-list .post-card .post-thumb img,
.view-list .post-card .post-thumb .thumb-placeholder{
  aspect-ratio:4/3; height:100%; object-fit:cover;
}
.view-list .post-card .post-card-body{ padding:12px 14px; display:flex; flex-direction:column; gap:8px; }
.view-list .post-card .post-card-title{ font-size:20px; margin:0; }
.view-list .post-card .post-card-excerpt{ margin:0; }
.view-list .post-card + .post-card{ border-top:1px solid var(--border); }

@media (max-width:780px){
  .view-list .post-card{ grid-template-columns:1fr; }
  .view-list .post-thumb img, .view-list .post-thumb .thumb-placeholder{ aspect-ratio:16/9; height:auto; }
}
@media (max-width:640px){
  .archive-header{ flex-direction:column; align-items:flex-start; gap:10px; }
  .archive-controls{ width:100%; justify-content:space-between; }
  .cat-filter{ flex:1; }
}

/* =========================================
   14) Single post view & generic pagination
   ========================================= */
.single-header{ margin-bottom:16px; }
.single-hero img{ border-radius:12px; object-position:top; border:1px solid var(--border); }
.single-boot{ margin-top:8px; }

/* Generic pagination */
.pagination{
  display:flex; justify-content:space-between; align-items:center; margin:18px 0;
}
.pagination a{ color:var(--accent); }
.pagination a:hover{ color:#FFF; }

/* =========================================
   15) Blockquotes (minimal, centered)
   ========================================= */
blockquote{
  display:grid; align-content:center; justify-items:center; gap:12px;
  margin:28px 0; padding: clamp(18px, 2.2vw, 28px) clamp(16px, 2vw, 26px);
  min-height: clamp(80px, 12vw, 160px);
  font-family:"Playfair Display", serif;
  font-size: clamp(1.05rem, 1.1vw + .9rem, 1.5rem);
  line-height:1.55; color: var(--text);
  background:transparent; border:0; border-radius:0; position:relative; isolation:isolate;
}
blockquote p{ margin:0; text-align:center; font-style:italic; font-weight:500; }
blockquote p + p{ margin-top:.6em; }
blockquote p:first-child::after{
  content:""; display:block; width:72px; height:2px; margin:12px auto 0;
  background: linear-gradient(90deg, transparent 0, var(--accent) 25%, var(--accent) 75%, transparent 100%); opacity:.35;
}
blockquote::before, blockquote::after{
  content:"“"; position:absolute; z-index:-1;
  font-family: Georgia, "Times New Roman", serif; font-weight:700; line-height:1;
  color: var(--accent); opacity:.06; pointer-events:none;
}
blockquote::before{ top:-10px; left:8px; font-size: clamp(48px, 8vw, 110px); transform: translate(-10%,-10%); }
blockquote::after { content:"”"; right:10px; bottom:-6px; font-size: clamp(40px, 7vw, 96px); transform: translate(10%,10%); }
blockquote cite{ font-size:.95rem; font-style:normal; color: var(--muted); text-align:center; letter-spacing:.01em; }
blockquote cite::before{ content:"— "; opacity:.6; }

/* =========================================
   16) Fancy single hero (editorial variants)
   ========================================= */
.fancy-hero{
  position:relative; overflow:hidden; border-radius:14px;
  border:1px solid var(--border); margin:14px 0 18px; background:#f3f3f3;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.fancy-hero .single-hero-img{
  width:100%; display:block; aspect-ratio:16/6; object-fit:cover;
  transform:scale(1.01); transition: transform .6s ease;
}
.fancy-hero:hover .single-hero-img{ transform:scale(1.03); }
.fancy-hero.hero--classic .single-hero-img{ aspect-ratio:4/3; }
.fancy-hero.hero--square .single-hero-img{ aspect-ratio:1/1; max-height:480px; }
.fancy-hero::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 55%);
  pointer-events:none;
}
.fancy-hero .single-hero-chips{
  position:absolute; left:12px; top:12px; display:flex; gap:8px; z-index:2;
}
.fancy-hero .single-hero-chips .hero-chip{
  background:rgba(255,255,255,.9); color:var(--text);
  border:1px solid var(--border); padding:6px 10px; border-radius:999px;
  font-size:12px; font-weight:600; letter-spacing:.2px;
}
.fancy-hero .single-hero-caption{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  display:flex; justify-content:flex-end; padding:10px 12px; color:#fff; font-size:12px;
  text-shadow:0 1px 2px rgba(0,0,0,.5);
}
.fancy-hero .single-hero-caption .photo-credit{ opacity:.95; }
.fancy-hero.fancy-hero--placeholder{
  height:min(40vw, 360px);
  background:
    linear-gradient(135deg, rgba(123,17,19,.08), rgba(0,0,0,.05)),
    repeating-linear-gradient(90deg, #fafafa 0 14px, #f2f2f2 14px 28px);
}
@media (max-width:780px){
  .fancy-hero .single-hero-img{ aspect-ratio:16/7; }
  .fancy-hero.hero--classic .single-hero-img{ aspect-ratio:4/3; }
  .fancy-hero.hero--square .single-hero-img{ aspect-ratio:1/1; max-height:none; }
}
@media (max-width:520px){
  .fancy-hero .single-hero-img{ aspect-ratio:16/8; }
}

/* =========================================
   17) Auth pages (split screen) + WPUM skin
   ========================================= */
.wpum-form fieldset.fieldset-user_avatar .wpum-uploaded-file-preview img { width: auto !important; }

.sknhd-auth .auth-wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  min-height:calc(100vh - 220px);
  border:1px solid var(--border); border-radius:14px; overflow:hidden; background:#fff;
}
@media (max-width:980px){ .sknhd-auth .auth-wrap{ grid-template-columns:1fr; box-shadow:none; } }
@media (min-width:981px){ .sknhd-auth .auth-wrap{ box-shadow:0 10px 30px rgba(0,0,0,.06); } }

.sknhd-auth .auth-content input[type="text"],
.sknhd-auth .auth-content input[type="email"],
.sknhd-auth .auth-content input[type="password"],
.sknhd-auth .auth-content input[type="url"],
.sknhd-auth .auth-content input[type="number"]{
  box-sizing:border-box; display:block; width:100%; height:48px; line-height:48px;
  padding:0 14px; font-size:16px; color:var(--text);
  border-radius:10px; border:1px solid var(--border); background:#fafafa;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease; vertical-align:middle;
}
.sknhd-auth .auth-content textarea{
  box-sizing:border-box; display:block; width:100%; min-height:120px; line-height:1.5;
  padding:12px 14px; font-size:16px; color:var(--text);
  border-radius:10px; border:1px solid var(--border); background:#fafafa;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease; resize:vertical;
}
.sknhd-auth .auth-content select{
  box-sizing:border-box; display:block; width:100%; height:48px; padding:0 38px 0 14px;
  font-size:16px; color:var(--text); border-radius:10px; border:1px solid var(--border); background:#fafafa; line-height:48px;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-appearance:none; -moz-appearance:none; appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 24px) 20px, calc(100% - 18px) 20px, 100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 100%;
  background-repeat:no-repeat;
}
.sknhd-auth .auth-content input::placeholder,
.sknhd-auth .auth-content textarea::placeholder{ color:#9b9b9b; opacity:1; line-height:normal; }
.sknhd-auth .auth-content input[type="number"]::-webkit-outer-spin-button,
.sknhd-auth .auth-content input[type="number"]::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.sknhd-auth .auth-content input[type="number"]{ -moz-appearance:textfield; }
.sknhd-auth .auth-content input:focus,
.sknhd-auth .auth-content textarea:focus,
.sknhd-auth .auth-content select:focus{
  border-color:var(--accent); background:#fff; outline:none; box-shadow:0 0 0 3px rgba(123,17,19,0.12);
}
.sknhd-auth .auth-content input:invalid,
.sknhd-auth .auth-content textarea:invalid,
.sknhd-auth .auth-content select:invalid{ box-shadow:none; }
.sknhd-auth .auth-content input:-webkit-autofill,
.sknhd-auth .auth-content textarea:-webkit-autofill,
.sknhd-auth .auth-content select:-webkit-autofill{
  -webkit-text-fill-color:var(--text);
  -webkit-box-shadow:0 0 0 1000px #fafafa inset;
  transition:background-color 9999s ease-out 0s; caret-color:var(--text);
}
.sknhd-auth .wpum-form .wpum-field,
.sknhd-auth .auth-content .form-row{ margin-bottom:14px; }
.sknhd-auth .wpum-form label{
  display:block; margin:0 0 6px; font-size:14px; color:var(--muted);
}
.sknhd-auth .auth-left{
  padding:32px 28px; display:flex; flex-direction:column; justify-content:center;
  max-width:560px; width:100%; margin:0 auto;
}
@media (max-width:980px){ .sknhd-auth .auth-left{ padding:22px 18px; } }
.sknhd-auth .auth-title{
  font-family:"Playfair Display", serif; font-size:34px; line-height:1.2; margin:0 0 12px;
}
.sknhd-auth .auth-content{ margin-top:8px; }
.sknhd-auth .wpum-form, .sknhd-auth .wpum-form form{ max-width:100%; }
.sknhd-auth .auth-links{ margin-top:14px; font-size:14px; }
.sknhd-auth .auth-links .auth-switch{ color:var(--accent); font-weight:600; }
.sknhd-auth .auth-links .auth-switch:hover{ color:var(--accent-deep); }
.sknhd-auth .auth-right{ position:relative; background:#111; }
.sknhd-auth .auth-right .auth-media,
.sknhd-auth .auth-right .auth-media-img { inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.sknhd-auth .auth-right .auth-media--placeholder{
  width:100%; height:100%;
  background: linear-gradient(135deg, rgba(123,17,19,.75), rgba(94,13,14,.75)),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800"><rect width="100%" height="100%" fill="%23e6e6e6"/></svg>')
              center/cover no-repeat;
}
@media (max-width:980px){ .sknhd-auth .auth-right{ order:-1; height:38vh; } }
#header-name-container h2 small { float:right; display:block; }

/* WPUM account/password forms */
form:is(#wpum-submit-account-form, #wpum-submit-password-form){
  --field-height: 60px; --field-radius: 12px; --field-pad: 14px 16px;
  --field-bg: #fff; --field-bd: 1px solid rgba(0,0,0,.12);
  --field-bd-focus: 2px solid #111; --label: #111; --muted: #6b7280;
  --shadow: 0 2px 10px rgba(0,0,0,.06); --gap-y: 18px; --gap-x: 18px; --maxw: 860px;
  max-width: var(--maxw); margin: 28px auto 40px; padding: clamp(12px, 2.5vw, 20px); background: transparent;
}
form:is(#wpum-submit-account-form, #wpum-submit-password-form) fieldset{ margin:0 0 22px 0; padding:0; border:0; }
form:is(#wpum-submit-account-form, #wpum-submit-password-form) label{
  display:block; font-size:15px; font-weight:600; color: var(--label);
  margin:0 0 8px; letter-spacing:.2px;
}
form:is(#wpum-submit-account-form, #wpum-submit-password-form) .wpum-required{ color:#d00; margin-left:6px; }
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="text"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="email"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="url"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="password"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="tel"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) select,
form:is(#wpum-submit-account-form, #wpum-submit-password-form) textarea{
  width:100%; box-sizing:border-box; height: var(--field-height);
  padding: var(--field-pad); border-radius: var(--field-radius);
  background: var(--field-bg); border: var(--field-bd); box-shadow: var(--shadow);
  font-size:16px; line-height:1.2; transition: box-shadow .2s, border-color .2s, background .2s; color:#111;
}
form:is(#wpum-submit-account-form, #wpum-submit-password-form) textarea{
  min-height:140px; height:auto; resize:vertical; line-height:1.55;
}
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input:focus,
form:is(#wpum-submit-account-form, #wpum-submit-password-form) select:focus,
form:is(#wpum-submit-account-form, #wpum-submit-password-form) textarea:focus{
  outline:none; border: var(--field-bd-focus); box-shadow:0 0 0 0 rgba(0,0,0,0);
}
form#wpum-submit-account-form input[type="file"]{
  width:100%; height: var(--field-height); padding:0 12px; border-radius: var(--field-radius);
  background: var(--field-bg); border: var(--field-bd); box-shadow: var(--shadow); font-size:15px;
}
form#wpum-submit-account-form input[type="file"]::file-selector-button{
  margin:10px 12px 10px 0; padding:10px 14px; border-radius:10px; border:1px solid rgba(0,0,0,.12);
  background: var(--accent); color:#fff; font-weight:600; cursor:pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
form#wpum-submit-account-form input[type="file"]:hover::file-selector-button{ opacity:.9; transform: translateY(-1px); }
form#wpum-submit-account-form input[type="file"]:active::file-selector-button{ transform: translateY(0); }
form#wpum-submit-account-form .wpum-uploaded-files{ margin:8px 0 8px; display:grid; gap:8px; }
form#wpum-submit-account-form .wpum-uploaded-files img{ float:left; height:150px !important; clear:both; }
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="submit"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) .button[type="submit"],
form:is(#wpum-submit-account-form, #wpum-submit-password-form) button[type="submit"]{
  appearance:none; display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px; min-height:52px; border-radius:12px; border:0; background: var(--accent);
  color:#fff; font-weight:700; font-size:16px; letter-spacing:.2px; cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="submit"]:hover{
  opacity:.95; transform: translateY(-1px); box-shadow:0 10px 20px rgba(0,0,0,.14);
}
form:is(#wpum-submit-account-form, #wpum-submit-password-form) input[type="submit"]:active{ transform: translateY(0); }

@media (min-width: 900px){
  form#wpum-submit-account-form{
    display:grid; grid-template-columns:1fr 1fr; gap: var(--gap-y) var(--gap-x);
  }
  form#wpum-submit-account-form .fieldset-user_cover,
  form#wpum-submit-account-form .fieldset-user_avatar,
  form#wpum-submit-account-form .fieldset-user_description,
  form#wpum-submit-account-form .fieldset-user_website,
  form#wpum-submit-account-form .fieldset-user_email,
  form#wpum-submit-account-form input[type="submit"]{ grid-column: 1 / -1; }
  form#wpum-submit-account-form input[type="submit"]{ justify-self: start; margin-top:6px; }

  form#wpum-submit-password-form{
    display:grid; grid-template-columns:1fr 1fr; gap: var(--gap-y) var(--gap-x);
  }
  form#wpum-submit-password-form .fieldset-password,
  form#wpum-submit-password-form .fieldset-password_repeat{ grid-column:auto; }
  form#wpum-submit-password-form input[type="submit"]{
    grid-column:1 / -1; justify-self:start; margin-top:6px;
  }
}

/* Circle crop fix (typo corrected) */
.wpum-uploaded-files img { border-radius: 50%; }

/* =========================================
   18) Contact form styles
   ========================================= */
#fw-f01e861b2-1.f01e861b2-wrp,
form#f01e861b2-1{
  --field-height: 52px; --field-radius: 12px; --field-pad: 14px 16px;
  --field-bg: #fff; --field-bd: 1px solid rgba(0,0,0,.12);
  --field-bd-focus: 2px solid #111; --label: #111; --muted: #6b7280;
  --shadow: 0 2px 10px rgba(0,0,0,.06); --gap-y: 18px; --gap-x: 18px; --maxw: 860px;
}
#fw-f01e861b2-1.f01e861b2-wrp{
  max-width: var(--maxw); margin:28px 0 40px; padding: clamp(12px, 2.5vw, 20px); background:transparent;
}
#fw-f01e861b2-1 .ef-success, #fw-f01e861b2-1 .ef-error{
  border:0; padding:12px 14px; border-radius:12px; font-size:14px; line-height:1.45; box-shadow: var(--shadow); margin-bottom:16px;
}
#fw-f01e861b2-1 .ef-success{ background:#e8f7ee; color:#0f5132; }
#fw-f01e861b2-1 .ef-error{ background:#fdecea; color:#842029; }
#fw-f01e861b2-1 .ef-ctrl-wrp{ margin:0 0 22px 0; }
#fw-f01e861b2-1 label{
  display:block; font-size:15px; font-weight:600; color: var(--label);
  margin:0 0 8px; letter-spacing:.2px;
}
#fw-f01e861b2-1 input[type="text"],
#fw-f01e861b2-1 input[type="email"],
#fw-f01e861b2-1 textarea{
  width:100%; box-sizing:border-box; height: var(--field-height);
  padding: var(--field-pad); border-radius: var(--field-radius);
  background: var(--field-bg); border: var(--field-bd); box-shadow: var(--shadow);
  font-size:16px; line-height:1.2; color:#111;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
#fw-f01e861b2-1 textarea{ min-height:160px; height:auto; resize:vertical; line-height:1.55; }
#fw-f01e861b2-1 input:focus, #fw-f01e861b2-1 textarea:focus{
  outline:none; border: var(--field-bd-focus); box-shadow:0 0 0 0 rgba(0,0,0,0);
}
#fw-f01e861b2-1 input[type="checkbox"]{
  width:18px; height:18px; vertical-align:middle; margin-right:10px; accent-color:#111;
}
#fw-f01e861b2-1 a{ color:#111; text-decoration:underline; }
#fw-f01e861b2-1 a:hover{ opacity:.85; }
#fw-f01e861b2-1 button[type="submit"],
#fw-f01e861b2-1 .button[type="submit"]{
  appearance:none; display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px; min-height:52px; border-radius:12px; border:0; background: var(--accent);
  color:#fff; font-weight:700; font-size:16px; letter-spacing:.2px; cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease, background-position .15s ease;
}
#fw-f01e861b2-1 button[type="submit"]:hover{ opacity:.95; transform: translateY(-1px); box-shadow:0 10px 20px rgba(0,0,0,.14); }
#fw-f01e861b2-1 button[type="submit"]:active{ transform: translateY(0); }
#fw-f01e861b2-1 .f01e861b2.ef-progress button{ background-position:center !important; pointer-events:none !important; }

@media (min-width: 900px){
  #fw-f01e861b2-1 .f01e861b2{
    display:grid; grid-template-columns:1fr 1fr; gap: var(--gap-y) var(--gap-x);
  }
  #fw-f01e861b2-1 .f01e861b2 .f2eb4d221,
  #fw-f01e861b2-1 .f01e861b2 .ff65420f4{ height: var(--field-height); }
  #fw-f01e861b2-1 .f01e861b2 .ef-ctrl-wrp{ margin:0; }
  #fw-f01e861b2-1 .f01e861b2 .ef-ctrl-wrp:nth-of-type(1),
  #fw-f01e861b2-1 .f01e861b2 .ef-ctrl-wrp:nth-of-type(2){ grid-column:auto; }
  #fw-f01e861b2-1 .f01e861b2 .ef-ctrl-wrp:nth-of-type(3){ grid-column:1 / -1; }
  #fw-f01e861b2-1 .f01e861b2 > div:last-of-type{ grid-column:1 / -1; }
  #fw-f01e861b2-1 .f01e861b2 .button[type="submit"],
  #fw-f01e861b2-1 .f01e861b2 button[type="submit"]{ grid-column:1 / -1; justify-self:start; margin-top:6px; }
}

/* ===============================
   Responsive profile table layout
   Target: #profile-tab-content
   =============================== */

/* Base polish */
#profile-tab-content {
  --pf-gap: 12px;
  --pf-radius: 12px;
  --pf-border: 1px solid var(--border, #e6e6e6);
  --pf-muted: var(--muted, #666);
  --pf-pad: 14px;
}

#profile-tab-content .group-title {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.25rem);
  line-height: 1.25;
}

#profile-tab-content .profile-fields-group {
  margin-bottom: 18px;
}

/* Table defaults (desktop-ish) */
#profile-tab-content .profile-fields-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

#profile-tab-content .profile-fields-table tr + tr td {
  border-top: var(--pf-border);
}

#profile-tab-content .profile-fields-table td {
  padding: 12px 10px;
  vertical-align: top;
}

#profile-tab-content .profile-fields-table td.label {
  width: 32%;
  max-width: 280px;
  color: var(--pf-muted);
  font-weight: 600;
  letter-spacing: .2px;
}

#profile-tab-content .profile-fields-table td.data {
  width: 68%;
}

#profile-tab-content .profile-fields-table .data p:last-child {
  margin-bottom: 0;
}

/* Spotify/embed fix: responsive iframe height on narrow screens */
#profile-tab-content .wpumx-spotify-embed iframe {
  width: 100%;
  max-width: 100%;
  display: block;
  border: 0;
  height: 352px; /* desktop default */
}

/* ================
   Small screens
   ================ */
@media (max-width: 720px) {
  /* Turn each row into a card */
  #profile-tab-content .profile-fields-table {
    display: block;
    margin: 0;
    padding: 0;
  }
  #profile-tab-content .profile-fields-table tbody,
  #profile-tab-content .profile-fields-table tr {
    display: block;
  }

  #profile-tab-content .profile-fields-table tr {
    border: var(--pf-border);
    border-radius: var(--pf-radius);
    padding: var(--pf-pad);
    margin: 0 0 var(--pf-gap) 0; /* no extra left margin */
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
  }

  /* Stack label over data */
  #profile-tab-content .profile-fields-table td {
    display: block;
    padding: 0;
    border: 0 !important;
  }

  #profile-tab-content .profile-fields-table td.label {
    width: auto;
    max-width: none;
    margin: 0 0 6px 0;         /* remove left indent */
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pf-muted);
    text-transform: uppercase; /* optional: give "header" vibe */
    letter-spacing: 0.4px;
  }

  #profile-tab-content .profile-fields-table td.data {
    width: auto;
    font-size: 1rem;
    line-height: 1.55;
  }

  #profile-tab-content .profile-fields-table td.data p {
    margin: 0 0 6px;
  }

  /* Spotify/embed: shrink height on phones */
  #profile-tab-content .wpumx-spotify-embed iframe {
    height: 220px;
  }
}

/* ================
   Medium screens
   (nice two-column rhythm)
   ================ */
@media (min-width: 721px) and (max-width: 1024px) {
  #profile-tab-content .profile-fields-table td.label {
    width: 40%;
  }
  #profile-tab-content .profile-fields-table td.data {
    width: 60%;
  }
}

/* Optional: subtle zebra rows on larger screens */
@media (min-width: 721px) {
  #profile-tab-content .profile-fields-table tr:nth-child(odd) td {
    background: color-mix(in srgb, var(--bg, #fff), #000 2%);
  }
  #profile-tab-content .profile-fields-table td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  #profile-tab-content .profile-fields-table td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

/* Respect dark backgrounds if your theme uses them */
.has-dark-background #profile-tab-content .profile-fields-table tr {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}
.has-dark-background #profile-tab-content .profile-fields-table td.label {
  color: rgba(255,255,255,.85);
}




/* =========================================
   19) Captions
   ========================================= */
.wp-element-caption{
  display:block; margin-top:.2rem; padding-top:.2rem;
  font-size:.93rem; line-height:1.45; color: var(--muted);
  text-align:center; letter-spacing:.1px;
}
.wp-element-caption a{ color:inherit; text-decoration:none; border-bottom:1px dotted currentColor; }
.wp-element-caption a:hover{ color: var(--accent); border-bottom-color: var(--accent); }
.alignleft .wp-element-caption{ text-align:left; }
.alignright .wp-element-caption{ text-align:right; }
.aligncenter .wp-element-caption{ text-align:center; }
figure{ margin-bottom:0; }
.has-dark-background .wp-element-caption,
.is-dark .wp-element-caption{ color: rgba(255,255,255,.85); border-top-color: rgba(255,255,255,.25); }
.post-card .wp-element-caption{ margin-top:.5rem; padding-top:.5rem; font-size:.88rem; }

/* =========================================
   20) Lineup (collapsible list)
   ========================================= */
ul.lineup{
  --lineup-collapsed: 400px;
  --lineup-after-content: 'See full lineup';
  margin:0 0 35px 0; padding:0; list-style:none; position:relative;
  max-height: var(--lineup-collapsed); overflow:hidden; transition:max-height .45s ease;
  display:flex; flex-wrap:wrap; justify-content:center; cursor:pointer; outline:none;
}
ul.lineup:focus{ box-shadow:0 0 0 3px color-mix(in srgb, var(--skn-accent), white 35%); border-radius:10px; }
ul.lineup li{
  background-color: var(--skn-accent); color:#fff; font-size:16px; text-align:center;
  height:35px; padding:7px 6px 3px 6px; border-radius:8px;
  margin-right:1%; margin-bottom:8px; width:calc(33.333% - 1%);
  text-transform:capitalize; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
}
ul.lineup li:nth-child(3n){ margin-right:0; }
ul.lineup::before{
  content:""; position:absolute; inset:auto 0 0 0; height:150px;
  background: linear-gradient(to top, color-mix(in srgb, var(--skn-bg), transparent 0%), transparent 70%);
  z-index:0; pointer-events:none;
}
ul.lineup::after{
  content: var(--lineup-after-content);
  position:absolute; inset:auto 0 0 0;
  background-color: var(--skn-accent); color: var(--skn-text); opacity:.95; text-align:center;
  padding:10px; font-size:18px; z-index:1; box-sizing:border-box;
  transform-origin:center; transition: transform .15s ease, background-color .15s ease;
}
ul.lineup:hover::after{ background-color: var(--skn-accent-hover); transform: scale(1.02); }
ul.lineup.expanded{ max-height:10000px; }
ul.lineup.expanded::before, ul.lineup.expanded::after{ display:none; }
@media (prefers-reduced-motion: reduce){
  ul.lineup{ transition:none; }
  ul.lineup:hover::after{ transform:none; }
}
@media (max-width: 900px){
  ul.lineup li{ width: calc(50% - 1%); }
  ul.lineup li:nth-child(3n){ margin-right:1%; }
  ul.lineup li:nth-child(2n){ margin-right:0; }
}
@media (max-width: 524px){
  ul.lineup{ display:block; width:90%; margin-left:auto; margin-right:auto; text-align:center; }
  ul.lineup li{ width:100%; margin-right:0; }
}

/* Legacy ABU-short (optional) */
.abu-short{
  margin:0 auto 12px; background-color: var(--skn-accent);
  border-radius:8px; padding:10px; display:flex; align-items:center; color:#fff; position:relative; width:100%;
}
.abu-short a{ color:inherit; text-decoration:none; }
.abu-short a:hover{ text-decoration:underline; }

/* =========================================
   21) Centered pagination (SKNWRLD)
   ========================================= */
.pagination--centered{
  display:flex; justify-content:center; margin:24px 0 48px;
  font:14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}
.pagination--centered ul{
  list-style:none; display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:0;
}
.pagination--centered li a, .pagination--centered li span{
  --ring: 0 0 0 0 rgba(0,0,0,0);
  display:inline-flex; align-items:center; justify-content:center;
  min-width:36px; height:36px; padding:0 12px;
  border:1px solid rgba(0,0,0,.15); border-radius:999px; background:#fff; color: var(--text);
  text-decoration:none; box-shadow: var(--ring);
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .06s;
}
.pagination--centered li a:hover{ border-color: rgba(0,0,0,.3); background:#f6f6f6; }
.pagination--centered li a:active{ transform: translateY(1px); }
.pagination--centered li .current{ border-color: var(--accent); background: var(--accent); color:#fff; font-weight:600; }
.pagination--centered li span.dots,
.pagination--centered li span.disabled{ border-style:dashed; color:#777; background:#fafafa; }
.pagination--centered li span.disabled{ opacity:.55; }
.pagination--centered li.prev a::before{
  font-family:"Font Awesome 6 Free"; font-weight:900; content:"\f104"; margin-right:6px; display:inline-block;
}
.pagination--centered li.next a::after{
  font-family:"Font Awesome 6 Free"; font-weight:900; content:"\f105"; margin-left:6px; display:inline-block;
}
.pagination--centered li a:focus{ outline:none; box-shadow:0 0 0 3px rgba(176,42,55,.25); border-color:#b02a37; }
@media (prefers-color-scheme: dark){
  .pagination--centered li a, .pagination--centered li span{
    background:#151515; color:#eee; border-color: rgba(255,255,255,.15);
  }
  .pagination--centered li a:hover{ background:#1f1f1f; border-color: rgba(255,255,255,.3); }
  .pagination--centered li span.dots, .pagination--centered li span.disabled{
    background:#101010; color:#aaa; border-color: rgba(255,255,255,.15);
  }
  .pagination--centered li .current{ color:#fff; }
}
@media (max-width: 420px){
  .pagination--centered ul{ gap:8px; }
  .pagination--centered li a, .pagination--centered li span{
    min-width:32px; height:32px; padding:0 10px; font-size:13px;
  }
}

/* =========================================
   Language stuff
   ========================================= */

/* Language switcher */
.skn-lang{ position:relative; display:inline-block; font-size:14px; }
.skn-lang__btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--border, #e5e5e5);
  background:#fff; border-radius:10px; cursor:pointer;
}
.skn-lang__btn .skn-flag{ font-size:16px; line-height:1; }
.skn-lang__menu{
  position:absolute; z-index:50; top:calc(100% + 6px); left:0; min-width:220px;
  background:#fff; border:1px solid var(--border, #e5e5e5); border-radius:12px;
  box-shadow:0 6px 24px rgba(0,0,0,.08);
  padding:6px; margin:0; list-style:none; display:none;
}
.skn-lang__menu.is-open{ display:block; }
.skn-lang__item{ margin:0; }
.skn-lang__link{
  display:flex; align-items:center; gap:10px;
  padding:8px 10px; border-radius:8px; text-decoration:none; color:inherit;
}
.skn-lang__link:hover, .skn-lang__link[aria-current="true"]{
  background:rgba(0,0,0,.04);
}
.skn-flag{ width:1.2em; display:inline-flex; justify-content:center; }
@media (max-width:720px){
  .skn-lang{ display:block; }
  .skn-lang__btn{ width:100%; justify-content:space-between; }
  .skn-lang__menu{ width:100%; }
}


/* =========================================
   22) Messages, banners & small QoL tweaks
   ========================================= */
.succes-message {
  border:0; padding:12px 14px; border-radius:12px; font-size:14px; line-height:1.45;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); margin-bottom:16px; background:#e8f7ee; color:#0f5132;
}

.wpumx-hint.ok{
  border:0; padding:12px 14px; border-radius:12px; font-size:14px; line-height:1.45;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); margin-bottom:5px; margin-top: 10px; background:#e8f7ee; color:#0f5132;
}

.wpumx-hint.err {
  border:0; padding:12px 14px; border-radius:12px; font-size:14px; line-height:1.45;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); margin-bottom:10px;  margin-top: 10px;
  background: color-mix(in srgb, #b02a37 12%, #fff);
  color:#b02a37;
}

.error-message{
  border:0; padding:12px 14px; border-radius:12px; font-size:14px; line-height:1.45;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); margin-bottom:16px;
  background: color-mix(in srgb, #b02a37 12%, #fff);
  color:#b02a37;
}


/* Image gap killers */
.entry-content figure:has(> img):not(:has(> figcaption)){ margin-bottom:0; line-height:0; }
.entry-content p:has(> img){ margin-bottom:0; line-height:0; }
.entry-content a:has(> img){ display:inline-block; line-height:0; }
.entry-content figure > figcaption{ margin-top:6px; line-height:1.35; }

/* Prevent long URLs blowing layout */
.entry-content { overflow-wrap:anywhere; word-break:normal; }

/* Focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:none; box-shadow:0 0 0 3px rgba(123,17,19,.18); border-radius:8px;
}

/* Disabled submit look */
button[disabled],
input[type="submit"][disabled]{
  opacity:.5;
  cursor:not-allowed;
  pointer-events:none;
  filter: grayscale(10%);
}

/* Optional: enabled "pop" for your toolbar buttons */
.section-cta.button.is-enabled{
  transform: translateY(0);
}

/* Anchors offset for sticky header */
:target { scroll-margin-top: 72px; }

/* Safe-area padding small screens */
@media (max-width: 900px){
  .site-header{ padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}

/* Misc */
.wpumx-confirm-wrap{ margin-top:1em; }
.crewpic img{ border-radius:50%; }

/* SKNWRLD Fact Box */
.fact-box{
  background:#fffafa;
  border:2px solid var(--accent, #cc0000);
  border-radius:12px;
  padding:20px;
  margin:32px 0;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.fact-box h3{
  margin-top:0;
  margin-bottom:12px;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  color:var(--accent, #cc0000);
}
.fact-box ul{
  list-style:none;
  margin:0;
  padding:0;
  font-size:14px;
  line-height:1.5;
}
.fact-box li{
  margin:6px 0;
}


/* Glass banner */
.banner{
  --banner-bg: rgba(20,20,22,0.65);
  --banner-text: #ffffff;
  --banner-border: rgba(255,255,255,.15);
  --banner-radius: 14px;
  --banner-pad-y: 20px;
  --banner-pad-x: 22px;
  display:flex; align-items:center; gap:18px;
  margin:35px 0 22px; padding: var(--banner-pad-y) var(--banner-pad-x);
  border-radius: var(--banner-radius);
  color: var(--banner-text); background: var(--banner-bg);
  border:1px solid var(--banner-border);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  line-height:1.5;
}
.banner-content{ flex:1 1 auto; }
.banner-heading{
  margin:0 0 8px; font-size:1.5rem; font-weight:700;
  font-family:"Segoe UI", Roboto, Inter, Arial, sans-serif; color:#fff;
}
.banner .btn{
  text-decoration:none; font-weight:700; padding:10px 16px; border-radius:12px; border:none;
  transition: transform .12s ease, background-color .12s ease;
  background: var(--accent); color:#fff; white-space:nowrap;
}
.banner .btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.banner .btn:active{ transform: translateY(0); }
@media (max-width: 640px){
  .banner{ flex-direction:column; align-items:flex-start; }
  .banner .btn{ width:100%; text-align:center; margin-top:10px; }
}

/* =========================================
   INSTA POPUP BOX STYLES
   ========================================= */

/* Blur only the popup background */
.MediaPopupBox__container {
  border-radius: 25px;
  backdrop-filter: blur(12px);      /* blur what's behind */
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.4);      /* add semi-transparent layer */
  overflow: hidden;                 /* keep corners rounded */
}

/* Keep the image sharp with rounded corners */
.MediaPopupBoxImage__container,
.MediaPopupBoxImage__image {
  border-radius: 25px;
  filter: none !important;          /* make sure image is not blurred */
}

#sknhd-slider-image-wrap .sknhd-mask-preview{
  width:100%;
  aspect-ratio:1032/387;
  overflow:hidden;
  border:1px solid #e6e6e6;
  border-radius:8px;
  position:relative;
}
#sknhd-slider-image-wrap .sknhd-mask-preview img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;          /* crucial */
  /* object-position is set by JS from sliders */
  display:block;
}
