@import url('https://fonts.googleapis.com/css2?family=Gantari:wght@100;300;400;700&family=Anton&family=Antonio:wght@100;300;400;700&display=swap');
/* BBH Sans Hegarty – Headlines & sublines (Brand Book) */
@font-face {
  font-family: 'BBH Sans Hegarty';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../BBHHegarty-JLR-Regular.woff2') format('woff2');
}
/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  min-height: 100%;
}
body {
  font-family: 'Gantari', sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', 'Noto Sans', Arial, sans-serif;
  color: #f5f5f7;
  background: radial-gradient(1200px 400px at 30% -10%, rgba(255, 255, 255, 0.05), transparent 60%), radial-gradient(800px 400px at 80% 10%, rgba(255, 255, 255, 0.04), transparent 60%), linear-gradient(180deg, #0c1b57, #07103a 35%, #020826 100%);
  line-height: 1.6;
}
.typography-anton .title,
.typography-anton h1,
.typography-anton h2,
.typography-anton h3,
.typography-anton h4,
.typography-anton h5,
.typography-anton h6 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.typography-anton body,
.typography-anton p,
.typography-anton .subtitle {
  font-family: 'Antonio', sans-serif;
  font-weight: 300;
}
/* ============================
   Header & Navigation
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, #3b0005, #8a0a0f);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
}
.brand {
  order: 1;
}
.main-navigation {
  order: 2;
}
.menu-toggle {
  order: 3;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f5f5f7;
}
.brand .lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 1em;
}
@media (max-width: 720px) {
  .brand .lockup {
    top: 0.5em;
    left: 0.5em;
  }
}
.brand span {
  font-weight: 400;
  letter-spacing: 0.2px;
}
.site-title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin: 0;
}
.site-description {
  font-family: 'Gantari', sans-serif;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.2px;
  margin: 0;
}
.main-navigation {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.search-toggle {
  flex-shrink: 0;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.main-navigation a {
  color: #f5f5f7;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 4px;
  opacity: 0.9;
  transition: all 0.2s;
}
.main-navigation a:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}
.main-navigation a.active {
  background: #a71016;
}
/* Search Toggle Button (inside menu, same style as nav links) */
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  z-index: 100;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  color: #f5f5f7;
  font-size: 18px;
  transition: opacity 0.2s ease, background 0.2s ease;
  margin: 0;
  opacity: 0.9;
  border-radius: 4px;
}
.search-toggle:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.search-toggle:hover {
  opacity: 0.8;
}
.search-toggle:focus {
  outline: 2px solid #c3131f;
  outline-offset: 2px;
  border-radius: 4px;
}
/* Menú Hamburguesa */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 100;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
}
.menu-toggle__icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #f5f5f7;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.active .menu-toggle__icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-modal[aria-hidden="false"] {
  display: block;
  opacity: 1;
  visibility: visible;
}
.search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.search-modal__content {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20% auto 0;
  padding: 0 20px;
  z-index: 1001;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-modal__close {
  position: absolute;
  top: -40px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s ease;
  z-index: 1002;
}
.search-modal__close:hover {
  opacity: 0.7;
}
.search-modal__close:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}
.search-modal__form {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.search-modal__input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Gantari', sans-serif;
  color: #333;
  background: transparent;
  outline: none;
}
.search-modal__input::placeholder {
  color: #999;
}
.search-modal__submit {
  background: #c3131f;
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
  margin-right: 4px;
}
.search-modal__submit:hover {
  background: #950e18;
}
.search-modal__submit:focus {
  outline: 2px solid #c3131f;
  outline-offset: 2px;
}
body.search-modal-open {
  overflow: hidden;
}
/* ============================
   Hero Section
   ============================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0em -2em 1em -1.7em inset #0000005c;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Use hero-back image with a soft brightness veil to make it more gray */
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../imgs/hero-back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(2.92) saturate(0.5);
  opacity: 0.2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(600px 300px at 50% 50%, rgba(30, 43, 120, 0.48), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}
.hero-inner {
  max-width: 900px;
  padding: 54px 24px;
}
.logo-big {
  width: 112px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}
.hero .title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #ffffff;
}
.hero .subtitle {
  margin: 0;
  font-family: 'Gantari', sans-serif;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.2px;
  font-size: 1.1rem;
}
/* ============================
   Post Sections
   ============================ */
.post {
  padding: 30px 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.post::after {
  content: '';
  margin: 0 auto;
  height: 5px;
  bottom: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 50%;
}
.post-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 40px;
}
.post.reverse .post-inner {
  grid-template-columns: 60% 40%;
}
.post.reverse .post-text {
  order: 2;
}
.post.reverse .post-image {
  order: 1;
}
.post-text h2 {
  font-family: 'BBH Sans Hegarty', sans-serif;
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.post-text p {
  font-family: 'Gantari', sans-serif;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #ddd;
  font-weight: 400;
  text-align: justify;
}
.btn {
  font-family: 'Gantari', sans-serif;
  display: inline-block;
  padding: 0.8em 3em;
  border-radius: 4em;
  background: #c3131f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  border: 3px solid #ffffff;
}
.btn:hover {
  background: #e11;
  color: #fff;
  transform: scale(1.02);
  transition: all 0.4s;
}
.post-image {
  aspect-ratio: 1400 / 800;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
/* ============================
   Content Area
   ============================ */
.site-main {
  margin-bottom: 9em;
}
.content-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.post-title,
.post-title a {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-decoration: none;
}
.entry-content {
  background: #07103a;
  padding: 40px 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: #ffffff;
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.entry-content p {
  font-family: 'Gantari', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1.25em;
}
.entry-content p:last-of-type {
  margin-bottom: 0;
}
/* ============================
   Sidebar
   ============================ */
.sidebar {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.widget {
  margin-bottom: 2rem;
}
.widget-title {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
}
.widget ul {
  list-style: none;
  padding: 0;
}
.widget a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}
.widget a:hover {
  color: #c3131f;
}
/* ============================
   Footer
   ============================ */
.site-footer {
  background: #fff;
  padding: 30px 20px 20px;
  color: #B22222;
}
.site-footer .footer-main {
  max-width: 1100px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
  gap: 20px;
}
.site-footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.site-footer .footer-logo img {
  height: 200px;
  width: auto;
}
.site-footer .footer-logo svg .sun {
  fill: #B22222;
}
.site-footer .footer-logo svg .j-stroke {
  stroke: #000;
  stroke-width: 14;
}
.site-footer .footer-logo svg .jp {
  fill: #000;
}
.site-footer .footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.site-footer .footer-right {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.site-footer .footer-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #B22222;
  padding-bottom: 20px;
  padding-left: 20px;
}
.site-footer .footer-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-nav a {
  color: #B22222;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer .footer-nav a:hover {
  opacity: 0.7;
}
.site-footer .footer-social {
  display: flex;
  gap: 16px;
  font-size: 18px;
}
.site-footer .footer-social a {
  color: #B22222;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer .footer-social a:hover {
  opacity: 0.7;
}
.site-footer .footer-social .icon-substack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-social .icon-substack svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.site-footer .footer-copy {
  font-size: 14px;
  text-align: center;
  color: #B22222;
}
/* ============================
   Substack signup CTA (fixed)
   ============================ */
.substack-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 320px;
  padding: 18px 20px 20px;
  background: #07103a;
  border: 2px solid #c3131f;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.substack-cta.substack-cta--dismissed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.substack-cta .substack-cta__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.substack-cta .substack-cta__close:hover {
  color: #ffffff;
}
.substack-cta .substack-cta__title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 6px 0;
  padding-right: 28px;
}
.substack-cta .substack-cta__text {
  font-family: 'Gantari', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px 0;
  line-height: 1.4;
}
.substack-cta .substack-cta__btn {
  display: inline-block;
  padding: 0.5em 1.2em;
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: #c3131f;
  border: 2px solid #c3131f;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.substack-cta .substack-cta__btn:hover {
  background: #a7101b;
  border-color: #a7101b;
  color: #ffffff;
}
.substack-float-btn {
  display: none;
}
/* ============================
   Divider (Homepage section header)
   ============================ */
.divider {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 15px auto  0 auto;
  padding: 0 20px;
}
.divider > span {
  color: #ffffff;
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-right: 20px;
}
.divider > div {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
/* ============================
   SVG Tweaks
   ============================ */
svg .j-stroke {
  fill: none;
  stroke: #ffffff;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.35));
}
svg .sun {
  fill: #c3131f;
}
svg .jp {
  fill: #ffffff;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}
/* ============================
   Single Post - Light Theme Overrides
   ============================ */
.single-post,
.single-post body {
  background: #ffffff;
  color: #1b1b1f;
}
.single-post .site-main {
  background: #ffffff;
}
.single-post .post {
  background: #ffffff;
  padding: 30px 20px;
}
.single-post .entry-content {
  background: #ffffff;
}
.single-post .entry-content p {
  color: #292929;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1.25em;
  text-align: justify;
}
.single-post .entry-content p:last-of-type {
  margin-bottom: 0;
}
.single-post .post-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 40px;
}
.single-post .post-text h1,
.single-post .entry-content h1,
.single-post .post-text h2,
.single-post .entry-content h2,
.single-post .post-text h3,
.single-post .entry-content h3,
.single-post .post-text h4,
.single-post .entry-content h4,
.single-post .post-text h5,
.single-post .entry-content h5,
.single-post .post-text h6,
.single-post .entry-content h6 {
  color: #535364;
}
.single-post .post-text h3,
.single-post .entry-content h3 {
  font-size: 1.6rem;
}
.single-post .post-text h4,
.single-post .entry-content h4 {
  font-size: 1.7rem;
  margin: 1em 0;
  line-height: 1.4em;
}
.single-post .post-text p,
.single-post .entry-content p,
.single-post .post-text .entry-content p,
.single-post .entry-content .entry-content p,
.single-post .post-text .post-meta,
.single-post .entry-content .post-meta,
.single-post .post-text .entry-content,
.single-post .entry-content .entry-content {
  color: #292929;
  background: transparent;
  font-size: 1.2rem;
}
.single-post .post-text a,
.single-post .entry-content a {
  color: #c3131f;
  text-decoration: none;
  border-bottom: 1px dotted #c3131f;
  font-weight: 700;
}
.single-post .post-text blockquote,
.single-post .entry-content blockquote {
  font-size: 1.2rem;
  margin-bottom: 1.4em;
  margin-top: 1.4em;
  line-height: 1.4rem;
  font-style: italic;
  border-left: 4px solid #c3131f;
  color: #555;
}
.single-post .post-text a:hover,
.single-post .entry-content a:hover {
  opacity: 0.85;
}
.single-post .post-text iframe,
.single-post .entry-content iframe {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.single-post .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.single-post .btn {
  background: #c3131f;
  color: #fff;
  border: 3px solid #111;
}
.single-post .btn:hover {
  background: #e11;
}
/* ============================
   Single Post Layout
   ============================ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.single-post .single-sidebar {
  background: rgba(12, 27, 87, 0.04);
  border: 1px solid rgba(12, 27, 87, 0.08);
  color: #1b1b1f;
}
.single-post .sidebar-title {
  color: #0e0e12;
}
.single-post .right-popular .popular-link {
  background: rgba(12, 27, 87, 0.04);
  color: #1b1b1f;
}
.single-post .right-popular .popular-link:hover {
  background: rgba(12, 27, 87, 0.08);
}
.author-sidebar {
  display: none;
}
.single-post .right-popular .popular-title {
  color: #0e0e12;
}
.single-sidebar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.author-avatar {
  margin-bottom: 12px;
}
.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}
.author-name {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.author-name a {
  color: #f5f5f7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.author-name a:hover {
  color: #c3131f;
}
.author-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.post-meta-sidebar {
  margin-bottom: 24px;
}
.post-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-weight: 500;
}
.post-category {
  font-size: 14px;
}
.post-category a {
  color: #c3131f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.post-category a:hover {
  color: #ffffff;
}
.share-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.share-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f5f7;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}
.share-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #c3131f;
  color: #c3131f;
}
.single-main {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 32px;
}
.left-related .related-left-link {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  text-decoration: none;
  color: #f5f5f7;
  align-items: center;
}
.left-related .related-left-image img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.left-related .related-left-title {
  font-weight: 700;
  line-height: 1.3;
}
.sidebar-title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}
.right-popular .popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.right-popular .popular-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  color: #f5f5f7;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  border-radius: 8px;
  transition: transform 0.15s, background 0.2s;
}
.right-popular .popular-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.right-popular .popular-thumb img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.right-popular .popular-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
/* Inline popular posts in content (mobile) */
.jlr-inline-popular-posts {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 12px;
  margin: 32px 0;
}
.jlr-inline-popular-posts .popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.jlr-inline-popular-posts .popular-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  color: #f5f5f7;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.15s, background 0.2s;
}
.jlr-inline-popular-posts .popular-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.jlr-inline-popular-posts .popular-thumb img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.jlr-inline-popular-posts .popular-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.jlr-inline-popular-posts.preferred-tag + .jlr-inline-popular-posts.secondary-tag {
  margin-top: 24px;
}
/* Bloque inline en mitad del post */
.inline-asides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.inline-asides .inline-left {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 10px;
}
.inline-asides .inline-right {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 10px;
}
/* Mid inserts in sidebars via spacer */
.sidebar-spacer {
  height: 0;
}
.sidebar-insert {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 10px;
}
/* ============================
   Single Hero (featured img)
   ============================ */
.single-title-bar {
  position: fixed;
  top: calc(var(--single-title-offset, 0px) - 1px);
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0c1b57, #07103a 50%, #020826 100%);
  color: #ffffff;
  z-index: 8;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.single-title-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 32px;
  padding-left: calc(var(--single-title-left, 32px) + 4em);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 54px;
  text-align: left;
}
.single-title-bar__title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
}
.single-title-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.single-hero {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1400 / 800;
  display: grid;
  place-items: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25));
}
.single-hero__inner {
  position: relative;
  z-index: 1;
  padding: 54px 24px;
  max-width: 900px;
}
.single-hero__title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ffffff;
  font-size: 80px;
  line-height: 1.1;
  margin: 0 0 10px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  display: inline-block;
}
.single-hero__meta {
  color: #f3f3f3;
  opacity: 0.95;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.single-hero__meta a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.single-hero__meta a:hover {
  opacity: 0.85;
}
/* ============================
   Responsive video embeds
   ============================ */
/* Article body images: full width, visible like on home */
.single-post .entry-content img,
.single-post .entry-content .wp-block-image img,
.single-post .entry-content figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em 0;
  border-radius: 8px;
}
.single-post .entry-content .wp-block-image,
.single-post .entry-content figure {
  margin: 1.5em 0;
}
.single-post .entry-content .wp-block-image figcaption,
.single-post .entry-content figure figcaption {
  margin-top: 0.5em;
  font-size: 0.95em;
  color: #555;
}
/* Table of contents (single post) */
.entry-toc {
  margin-bottom: 2em;
  padding: 1.25em 1.5em;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.single-post .entry-toc {
  background: rgba(12, 27, 87, 0.05);
  border-color: rgba(12, 27, 87, 0.1);
}
.entry-toc__title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: 1rem;
  margin: 0 0 0.75em;
  color: inherit;
}
.entry-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.entry-toc__item {
  margin: 0.35em 0;
}
.entry-toc__item--h3 {
  padding-left: 1em;
}
.entry-toc__link {
  color: #c3131f;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s;
}
.entry-toc__link:hover {
  border-bottom-color: #c3131f;
}
/* Scroll margin so TOC targets aren't hidden under fixed header */
.single-post .entry-content h2[id],
.single-post .entry-content h3[id] {
  scroll-margin-top: 80px;
}
.entry-content iframe,
.wp-block-embed__wrapper iframe,
.wp-block-embed.is-type-video iframe,
.wp-has-aspect-ratio iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}
.wp-block-embed.is-type-video .wp-block-embed__wrapper,
.wp-block-video,
.wp-has-aspect-ratio {
  position: relative;
  width: 100%;
}
/* ============================
   Related posts (cards grid)
   ============================ */
.related-posts {
  margin: 50px 0 10px;
}
.related-title {
  color: var(--white);
  font-family: var(--font-headline);
  font-weight: var(--headline-weight);
  text-transform: var(--headline-transform);
  letter-spacing: var(--headline-spacing);
  margin: 0 0 18px;
}
.single-post .related-title {
  color: #0e0e12;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.post-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.single-post .post-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.post-card__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  padding: 12px 12px 14px;
  color: var(--white);
}
.single-post .post-card__title {
  color: #0e0e12;
}
/* ============================
   Comment form + comment list
   ============================ */
.comments-area {
  margin: 40px 0 0;
}
.comments-title,
#reply-title {
  color: var(--white);
  font-family: var(--font-headline);
  font-weight: var(--headline-weight);
  text-transform: var(--headline-transform);
  letter-spacing: var(--headline-spacing);
  margin: 0 0 14px;
}
.single-post .comments-title,
.single-post #reply-title {
  color: #0e0e12;
}
.comment-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.comment-list .comment-body {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.single-post .comment-list .comment-body {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.comment-list .comment-meta {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.single-post .comment-list .comment-meta {
  color: #555;
}
.comment-respond {
  margin: 28px 0 0;
}
.comment-form p {
  margin-bottom: 14px;
}
.comment-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195, 19, 31, 0.25);
}
.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="url"],
.single-post .comment-form textarea {
  background: #fff;
  color: #0e0e12;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.single-post .comment-form input:focus,
.single-post .comment-form textarea:focus {
  border-color: #a71016;
  box-shadow: 0 0 0 3px rgba(167, 16, 22, 0.18);
}
/* ============================
   Comments – submit button
   (grouped overrides)
   ============================ */
.comment-form .form-submit {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-form .form-submit input[type="submit"],
.comment-form .form-submit #submit {
  display: inline-block;
  padding: 0.85em 2.4em;
  border-radius: 4em;
  background: #c3131f;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.comment-form .form-submit input[type="submit"]:hover,
.comment-form .form-submit #submit:hover {
  background: #e11;
  transform: translateY(-1px);
}
.comment-form .form-submit input[type="submit"]:focus-visible,
.comment-form .form-submit #submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 19, 31, 0.25);
}
.comment-form .form-submit input[type="submit"]:disabled,
.comment-form .form-submit #submit:disabled,
.comment-form .form-submit input[type="submit"].disabled,
.comment-form .form-submit #submit.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.single-post .comment-form .form-submit input[type="submit"],
.single-post .comment-form .form-submit #submit {
  border-color: #111;
}
/* ============================
   Infinite Scroll Styles
   ============================ */
.loading-indicator {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.8);
}
.loading-indicator .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid #c3131f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.loading-indicator p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.end-indicator {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}
.end-indicator p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.end-indicator p::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  right: -50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Fade-in animation for new posts */
.post {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.post.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.post.loaded {
  opacity: 1;
  transform: translateY(0);
}
/* ============================
   Pagination Styles
   ============================ */
.posts-navigation,
.navigation {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}
.pagination-wrapper {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-family: 'Gantari', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  line-height: 1;
}
.page-numbers:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #c3131f;
  color: #ffffff;
  transform: translateY(-2px);
}
.page-numbers.current {
  background: #c3131f;
  border-color: #c3131f;
  color: #ffffff;
  font-weight: 700;
  cursor: default;
}
.page-numbers.current:hover {
  transform: none;
  background: #c3131f;
}
.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.page-numbers.prev,
.page-numbers.next {
  text-transform: uppercase;
  font-size: 14px;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: #c3131f;
  border-color: #c3131f;
}
/* ============================
   Websites Page
   ============================ */
.websites-section {
  margin-top: 40px;
}
.websites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
  padding: 0;
}
.website-card-link {
  display: block;
  height: 100%;
  color: #f5f5f7;
  text-decoration: none;
}
.website-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.website-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.website-card-inner {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  height: 100%;
}
.website-logo {
  width: 100%;
  flex-shrink: 0;
}
.website-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.website-logo.placeholder {
  width: 100%;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.website-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 20px 24px 24px;
}
.website-title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.website-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  flex: 1;
}
.website-description p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.85);
}
.website-description p:last-child {
  margin-bottom: 0;
}
.website-btn {
  margin-top: auto;
  align-self: center;
}
.websites-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
/* ============================
   About Page
   ============================ */
.about-page {
  margin-top: 40px;
}
/* ============================
   Error 404 Page
   ============================ */
.error-404-page {
  margin-top: 40px;
  padding: 0 24px 60px;
}
.error-404-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Gantari', sans-serif;
}
.error-404-content__intro {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}
.error-404-content__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
  display: inline-block;
}
.error-404-content__list li {
  margin: 0 0 8px;
  padding-left: 1.2em;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}
.error-404-content__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c3131f;
}
.error-404-content__search {
  margin: 0 0 28px;
}
.error-404-content__search label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.error-404-content__search .search-field {
  width: 100%;
  max-width: 360px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Gantari', sans-serif;
  font-size: 1rem;
}
.error-404-content__search .search-submit {
  margin-top: 12px;
  font-family: 'Gantari', sans-serif;
  display: inline-block;
  padding: 0.8em 3em;
  border-radius: 4em;
  background: #c3131f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  border: 3px solid #ffffff;
}
.error-404-content__actions {
  margin: 0;
}
.about-main {
  padding: 40px 0 20px;
}
.about-main__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 40px;
  align-items: stretch;
}
.about-main__video-col {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-main__video--mobile {
  display: none;
}
.about-main__video--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
}
.about-main__video {
  position: relative;
}
.about-main__video::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, rgba(195, 19, 31, 0.2) 0%, rgba(12, 27, 87, 0.3) 50%, rgba(7, 16, 58, 0.2) 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-main__video:hover::before {
  opacity: 1;
}
.about-main__video iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-main__video--desktop iframe {
  aspect-ratio: 9/16;
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
}
.about-main__video:hover iframe {
  transform: scale(1.01);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.about-main__video--desktop:hover iframe {
  transform: scale(1.02);
}
.about-video-placeholder {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.about-video-placeholder__frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(195, 19, 31, 0.15) 0%, rgba(12, 27, 87, 0.25) 50%, rgba(7, 16, 58, 0.35) 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
}
.about-video-placeholder__image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 40%, rgba(195, 19, 31, 0.25) 0%, transparent 60%), radial-gradient(circle at 70% 60%, rgba(12, 27, 87, 0.35) 0%, transparent 60%), linear-gradient(135deg, rgba(7, 16, 58, 0.5) 0%, rgba(2, 8, 38, 0.7) 100%);
}
.about-video-placeholder__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}
.about-video-placeholder__play-button {
  position: relative;
  z-index: 2;
  animation: pulse-play 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.about-video-placeholder__play-button svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.about-video-placeholder__play-button svg circle {
  fill: rgba(255, 255, 255, 0.95);
}
.about-video-placeholder__play-button svg path {
  fill: #c3131f;
}
.about-video-placeholder__play-button:hover {
  transform: scale(1.1);
}
@keyframes pulse-play {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
.about-video-placeholder__overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
  opacity: 0.5;
}
.about-video-placeholder__text {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Gantari', sans-serif;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.about-main__text {
  font-family: 'Gantari', sans-serif;
  position: relative;
  padding-left: 24px;
}
.about-main__text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #c3131f, rgba(195, 19, 31, 0.4));
  border-radius: 2px;
}
.about-intro-text {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.about-body-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-body-text p {
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.about-body-text p:last-child {
  margin-bottom: 0;
}
.about-body-text strong {
  color: #ffffff;
  font-weight: 700;
}
.about-more-btn {
  margin-top: 28px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.about-more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #ffffff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: right 0.3s ease;
}
.about-more-btn:hover::after {
  right: 0.8em;
}
.about-gabriele {
  margin-top: 60px;
  padding: 60px 0;
  position: relative;
}
.about-gabriele::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}
.about-gabriele__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.about-gabriele__image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.about-gabriele__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-gabriele__text {
  flex: 1;
}
.about-gabriele__bio {
  font-family: 'Gantari', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.about-gabriele__bio a {
  color: #c3131f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.about-gabriele__bio a:hover {
  color: #e9202d;
  text-decoration: underline;
}
@media (max-width: 980px) {
  .about-gabriele__inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .about-gabriele__image {
    width: 180px;
    height: 180px;
  }
}
.about-social {
  margin-top: 60px;
  padding: 60px 0 40px;
  position: relative;
}
.about-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}
.about-social__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.about-social__title {
  font-family: 'BBH Sans Hegarty', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 0 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.about-social__subtitle {
  font-family: 'Gantari', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.about-social__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.about-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  color: #ffffff;
  font-family: 'Gantari', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-social__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c3131f, #950e18);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-social__link .about-social__icon,
.about-social__link .about-social__label {
  position: relative;
  z-index: 1;
}
.about-social__link:hover {
  border-color: #c3131f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(195, 19, 31, 0.4);
}
.about-social__link:hover::before {
  opacity: 1;
}
.about-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  margin-right: 10px;
  font-size: 1.1rem;
}
.about-social__icon i {
  display: inline-block;
}
.about-social__icon.icon-substack svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.about-social__label {
  font-weight: 700;
}
@media (max-width: 980px) {
  .about-main__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-main__video-col {
    order: -1;
  }
  .about-main__video--mobile {
    display: block;
  }
  .about-main__video--desktop {
    display: none;
  }
  .about-main__video--mobile iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
  .about-main__video-col,
  .about-main__text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-social__link {
    min-width: 130px;
    padding: 0.75em 1.5em;
    font-size: 0.95rem;
  }
}
@media (max-width: 720px) {
  .about-page {
    margin-top: 24px;
  }
  .error-404-page {
    margin-top: 24px;
    padding: 0 16px 40px;
  }
  .error-404-content__search .search-field {
    max-width: 100%;
  }
  .about-main {
    padding: 24px 0 10px;
  }
  .about-main__inner {
    gap: 24px;
  }
  .about-main__text {
    padding-left: 16px;
  }
  .about-main__text::before {
    width: 3px;
  }
  .about-intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .about-body-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .about-video-placeholder__play-button svg {
    width: 48px;
    height: 48px;
  }
  .about-main__video iframe {
    border-radius: 12px;
  }
  .about-social {
    margin-top: 40px;
    padding: 40px 0 20px;
  }
  .about-social__inner {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .about-social__title {
    font-size: 1.5rem;
  }
  .about-social__subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .about-social__list {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .about-social__link {
    width: 100%;
    min-width: auto;
    padding: 0.85em 1.8em;
    font-size: 0.9rem;
  }
}
@media (max-width: 720px) {
  .websites-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
  .website-card-inner {
    padding: 24px 20px;
    min-height: auto;
  }
  .website-logo img {
    max-width: 100px;
    max-height: 60px;
  }
  .website-logo.placeholder {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .website-title {
    font-size: 18px;
  }
  .website-description {
    font-size: 13px;
  }
}
/* ============================
   Media Queries - Tablet
   ============================ */
@media (max-width: 980px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .single-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .single-sidebar {
    position: static;
    order: 2;
  }
  .single-main {
    order: 1;
    padding: 20px;
  }
}
/* ============================
   Media Queries - Mobile
   ============================ */
@media (max-width: 720px) {
  .hero {
    min-height: 280px;
    padding: 20px 0;
  }
  .hero-inner {
    padding: 40px 20px;
  }
  .hero .title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
  }
  .hero .subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }
  .logo-big {
    width: 80px;
    margin-bottom: 16px;
  }
  .brand {
    order: 1;
  }
  .menu-toggle {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
  }
  .main-navigation {
    order: 3;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #3b0005, #8a0a0f);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    margin-left: 0;
    padding: 80px 0 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .main-navigation.active {
    transform: translateX(0);
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }
  .main-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-navigation a {
    display: block;
    padding: 16px 12px;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
  }
  .main-navigation a:hover,
  .main-navigation a:active {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
  .main-navigation a.active {
    background: #a71016;
    border-left: 4px solid #c3131f;
    padding-left: 8px;
  }
  .main-navigation .search-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 16px 12px;
    border-radius: 0;
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    font-size: 16px;
  }
  body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  body.menu-open {
    overflow: hidden;
  }
  .search-modal__content {
    margin: 15% auto 0;
    padding: 0 15px;
  }
  .search-modal__close {
    top: -35px;
    right: 15px;
    font-size: 20px;
  }
  .search-modal__input {
    padding: 14px 16px;
    font-size: 16px;
  }
  .search-modal__submit {
    padding: 10px 16px;
    font-size: 14px;
  }
  .post {
    padding: 0px;
    margin-bottom: 0;
    background: #02002b;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    border-radius: 0;
  }
  .post:active {
    transform: scale(0.98);
  }
  .post.is-primary-view,
  article.post.is-primary-view {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    padding: 28px 20px;
    margin: 0 -4px 0 -4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .post.is-primary-view::after,
  article.post.is-primary-view::after {
    background: rgba(255, 255, 255, 0.25);
    width: 85%;
  }
  .post-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    position: relative;
    height: 400px;
    align-items: baseline;
  }
  .post-text {
    text-align: left;
    order: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 80px;
    z-index: 2;
    pointer-events: none;
  }
  .post-text h2,
  .post-text p {
    pointer-events: auto;
  }
  .post-image {
    order: 1;
    margin: 0;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    aspect-ratio: 1400 / 800;
  }
  .post-image:before {
    height: 100%;
    content: "";
    background: linear-gradient(to top, #02002a 0%, rgba(2, 0, 43, 0) 50%);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
  }
  .post-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0px;
    transition: transform 0.3s ease;
    aspect-ratio: 1400 / 800;
    object-fit: cover;
  }
  .post:hover .post-image img {
    transform: scale(1.02);
  }
  .post-text h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  .post-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .post-text .btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 0.65em 1.8em;
    font-size: 13px;
    width: auto;
    text-align: center;
    display: inline-block;
    border-width: 2px;
    -webkit-tap-highlight-color: rgba(195, 19, 31, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 3;
  }
  .btn:active {
    transform: scale(0.95);
  }
  .post.reverse .post-inner {
    grid-template-columns: 1fr;
  }
  .post.reverse .post-text {
    order: 1;
  }
  .post.reverse .post-image {
    order: 2;
  }
  .divider {
    padding: 0 16px;
    margin: 20px auto 0;
  }
  .divider > span {
    font-size: 1.1rem;
    margin-right: 12px;
    white-space: nowrap;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 0 20px;
  }
  .footer-nav {
    order: 2;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
    border-bottom: none;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .footer-social {
    order: 3;
    justify-content: center;
  }
  .footer-logo {
    order: 1;
    padding: 10px;
  }
  .footer-logo img {
    height: 120px;
  }
  .substack-cta {
    display: none;
  }
  .substack-float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9998;
    padding: 10px 16px;
    background: #07103a;
    border: 2px solid #c3131f;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    text-decoration: none;
    font-family: 'BBH Sans Hegarty', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: background 0.2s, transform 0.15s;
  }
  .substack-float-btn:active {
    transform: scale(0.98);
  }
  .substack-float-btn .substack-float-btn__icon {
    display: inline-flex;
  }
  .substack-float-btn .substack-float-btn__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  .substack-float-btn .substack-float-btn__label {
    white-space: nowrap;
  }
  .site-main {
    margin-bottom: 4em;
  }
  .content-area {
    padding: 0 16px;
  }
  .single-post .post-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .single-post .post-text {
    text-align: left;
  }
  .single-layout {
    padding: 15px;
  }
  .single-sidebar {
    padding: 20px;
  }
  /* Hide right sidebar popular posts on mobile when inline version is shown */
  .right-popular {
    display: none;
  }
  .author-info {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  .author-avatar {
    margin-bottom: 0;
  }
  .author-avatar img {
    width: 60px;
    height: 60px;
  }
  .author-name {
    font-size: 16px;
  }
  .post-meta-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .post-date {
    margin-bottom: 0;
  }
  .single-title-bar__inner {
    padding: 10px 16px;
    padding-left: calc(var(--single-title-left, 24px) + 16px);
    min-height: 48px;
  }
  .single-title-bar__title {
    font-size: 17px;
  }
  .single-hero__title {
    font-size: 25px;
    padding: 16px 24px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comment-form .form-submit {
    justify-content: center;
  }
  .comment-form .form-submit input[type="submit"],
  .comment-form .form-submit #submit {
    width: 100%;
  }
  .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  }
  .nav-links {
    gap: 6px;
  }
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .loading-indicator {
    padding: 30px 20px;
  }
  .loading-indicator .loading-spinner {
    width: 36px;
    height: 36px;
    border-width: 2.5px;
  }
  .loading-indicator p {
    font-size: 15px;
  }
  .end-indicator {
    padding: 30px 20px;
  }
  .end-indicator p {
    font-size: 15px;
  }
  #infinite-scroll-sentinel {
    height: 2px;
  }
  .post-inner {
    position: relative;
  }
  .post::after {
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
  }
  a,
  button,
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  section .cta {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  @supports (padding: max(0px)) {
    .hero-inner {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .post:hover::before {
    opacity: 1;
  }
  .post-image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .container {
    max-width: 100%;
  }
  .content-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .page-header {
    position: relative;
    padding-bottom: 16px;
  }
  .page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c3131f, transparent);
    border-radius: 2px;
  }
  .search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  article.post {
    position: relative;
    overflow: hidden;
  }
  article.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #c3131f;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  article.post:hover::before,
  article.post:active::before {
    opacity: 1;
  }
  .post-meta .posted-on::before {
    content: '📅 ';
    margin-right: 4px;
  }
  .post-meta .byline::before {
    content: '👤 ';
    margin-right: 4px;
  }
  .post-meta .cat-links::before {
    content: '🏷️ ';
    margin-right: 4px;
  }
  .search-results .primary {
    width: 100%;
  }
  .page-header {
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .page-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .page-title span {
    display: block;
    margin-top: 8px;
    color: #c3131f;
    font-size: 20px;
  }
  article.post {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  article.post:active {
    transform: scale(0.98);
  }
  article.post .post-inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  article.post .post-image {
    order: 1;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
  }
  article.post .post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  article.post .post-text {
    order: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
  }
  article.post .post-inner:not(:has(.post-image)) .post-text {
    position: static;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    pointer-events: auto;
    margin-top: 0;
  }
  article.post .post-inner:has(.post-image) .post-text {
    position: absolute;
  }
  article.post .post-text .entry-header,
  article.post .post-text .entry-summary,
  article.post .post-text .btn {
    pointer-events: auto;
  }
  .entry-header {
    margin-bottom: 10px;
  }
  .post-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .post-title a {
    transition: color 0.2s ease;
    display: block;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  .post-title a:active {
    color: #c3131f;
  }
  .post-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }
  .post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .entry-summary {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .entry-summary p {
    margin-bottom: 0;
  }
  article.post .post-text .btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 0.65em 1.8em;
    font-size: 13px;
    width: auto;
    text-align: center;
    display: inline-block;
    border-width: 2px;
    -webkit-tap-highlight-color: rgba(195, 19, 31, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 3;
  }
  .sidebar {
    margin-top: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .widget {
    margin-bottom: 24px;
  }
  .widget:last-child {
    margin-bottom: 0;
  }
  .widget-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .container {
    padding: 0 16px;
  }
  .content-area {
    padding: 0;
  }
  .primary {
    width: 100%;
  }
  .entry-content {
    padding: 0;
    text-align: justify;
  }
  .entry-content p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .search-form {
    width: 100%;
  }
  .search-form input[type="search"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
  }
}
.awards-page .awards-hero,
.awards-detail-page .awards-hero {
  padding: 64px 16px 32px;
}
.awards-page .awards-hero .awards-hero__inner,
.awards-detail-page .awards-hero .awards-hero__inner {
  max-width: 960px;
  margin: 0 auto;
}
.awards-page .awards-hero .title,
.awards-detail-page .awards-hero .title {
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
.awards-page .awards-hero .subtitle,
.awards-detail-page .awards-hero .subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.awards-grid-section {
  padding: 0 0 48px;
}
.awards-grid-section .awards-grid__title {
  font-size: 22px;
  margin-bottom: 20px;
}
.awards-grid-section .awards-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.awards-grid-section .awards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 24px;
}
.awards-grid-section .awards-grid__empty {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.85);
}
.award-card {
  text-align: center;
}
.award-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.award-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 50%), rgba(4, 10, 38, 0.85);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.award-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.award-card__fallback {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.award-card__name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.award-card__link:hover .award-card__icon,
.award-card__link:focus-visible .award-card__icon {
  transform: translateY(-4px);
  border-color: #c3131f;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
}
.awards-detail-section {
  padding: 0 0 56px;
}
.awards-detail-section .awards-detail__empty {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.85);
}
.awards-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.award-year-block {
  padding: 18px 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  margin: 0 0.8em;
}
.award-year-block__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0em;
  margin-left: 0.8em;
}
.award-year-block__year {
  font-size: 2.5em;
  font-weight: 700;
}
.award-year-block__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}
.award-year-block__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.award-winner-card {
  padding: 10px 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.award-winner-card h3 {
  font-size: 2em;
}
.award-winner-card__division {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.award-winner-card__winners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
}
.award-winner-card__winners--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.award-winner-card__winner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 100%;
}
.award-winner-card__winners--horizontal .award-winner-card__winner {
  width: auto;
  min-width: 0;
}
.award-winner-card__avatar {
  margin-bottom: 4px;
}
.award-winner-card__name {
  font-size: 16px;
  font-weight: 600;
}
.award-winner-card__link {
  margin-top: 4px;
}
.award-winner-card__link.btn {
  padding: 0.5em 1.5em;
  font-size: 13px;
}
.award-winner-card__link:hover,
.award-winner-card__link:focus-visible {
  text-decoration: none;
}
.award-winner-card__empty {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.award-winner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.22), transparent 50%), rgba(4, 10, 38, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.65);
  margin: 0 auto;
}
.award-winner-avatar img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.award-winner-avatar__fallback {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 720px) {
  .awards-grid-section .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .award-year-block__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
