/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for HiddenTalks with dynamic Red & White editorial magazine layout.
Author: HiddenTalks Team
Author URI: http://localhost/hiddentalks/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

:root {
  --ht-red: #e11d48;
  --ht-red-dark: #be123c;
  --ht-red-light: #fff1f2;
  --ht-red-border: #fecdd3;
  --ht-red-gradient: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  --ht-white: #ffffff;
  --ht-bg-light: #f8fafc;
  --ht-bg-card: #ffffff;
  --ht-text-dark: #0f172a;
  --ht-text-body: #334155;
  --ht-text-muted: #64748b;
  --ht-border: #e2e8f0;
  --ht-border-light: #f1f5f9;
  --ht-card-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  --ht-card-hover-shadow: 0 22px 40px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(225, 29, 72, 0.12);
  --ht-book-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.22), 0 2px 8px rgba(15, 23, 42, 0.08);
  --ht-radius-sm: 6px;
  --ht-radius-md: 12px;
  --ht-radius-lg: 16px;
  --ht-radius-full: 9999px;
  --ht-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ht-font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --ht-font-serif: 'Playfair Display', Georgia, serif;
  --ht-transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
body {
  background-color: var(--ht-white);
  color: var(--ht-text-body);
  font-family: var(--ht-font-sans);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ht-font-display);
  font-weight: 800;
  color: var(--ht-text-dark);
  letter-spacing: -0.025em;
}

a {
  color: var(--ht-text-dark);
  text-decoration: none;
  transition: var(--ht-transition);
}

a:hover {
  color: var(--ht-red);
}

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

/* Container */
.ht-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Red Accent Category Badge */
.ht-category-badge {
  display: inline-block;
  background-color: var(--ht-red);
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--ht-radius-sm);
  transition: var(--ht-transition);
  margin-bottom: 12px;
}

.ht-category-badge:hover {
  background-color: var(--ht-red-dark);
  color: #ffffff !important;
}

/* Blog Page Header */
.ht-blog-hero-header {
  padding: 48px 0 32px 0;
  border-bottom: 1px solid var(--ht-border);
  margin-bottom: 36px;
}

.ht-blog-hero-header .ht-page-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ht-red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ht-blog-hero-header .ht-page-eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: var(--ht-red);
}

.ht-blog-hero-header h1.ht-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ht-blog-hero-header p.ht-page-subtitle {
  color: var(--ht-text-muted);
  font-size: 1.1rem;
  margin: 0;
  max-width: 650px;
}

/* Category Filter Bar */
.ht-filter-nav-wrap {
  margin-bottom: 40px;
}

.ht-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ht-border-light);
}

.ht-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 9999px;
  background-color: var(--ht-bg-light);
  border: 1px solid var(--ht-border);
  color: var(--ht-text-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--ht-transition);
}

.ht-filter-pill:hover {
  background-color: var(--ht-white);
  border-color: var(--ht-red);
  color: var(--ht-red);
}

.ht-filter-pill.is-active {
  background-color: var(--ht-red);
  border-color: var(--ht-red);
  color: var(--ht-white) !important;
}

.ht-filter-pill .ht-pill-count {
  font-size: 0.72rem;
  opacity: 0.8;
}

/* Featured / Hero Article on Blog Page */
.ht-featured-article {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: center;
  background-color: var(--ht-white);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--ht-card-shadow);
  transition: var(--ht-transition);
}

.ht-featured-article:hover {
  box-shadow: var(--ht-card-hover-shadow);
  border-color: var(--ht-red-border);
}

.ht-featured-thumb {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  background-color: var(--ht-bg-light);
}

.ht-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ht-featured-article:hover .ht-featured-thumb img {
  transform: scale(1.03);
}

.ht-featured-info {
  padding: 36px;
}

.ht-featured-info h2.ht-featured-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0 0 14px 0;
  line-height: 1.25;
}

.ht-featured-info h2.ht-featured-title a:hover {
  color: var(--ht-red);
}

.ht-featured-excerpt {
  color: var(--ht-text-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ht-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ht-text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.ht-post-meta .ht-meta-author {
  font-weight: 600;
  color: var(--ht-text-dark);
}

.ht-post-meta .ht-meta-dot {
  width: 4px;
  height: 4px;
  background-color: var(--ht-red);
  border-radius: 50%;
}

.ht-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ht-red);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--ht-radius-sm);
  transition: var(--ht-transition);
}

.ht-btn-primary:hover {
  background-color: var(--ht-red-dark);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.ht-btn-primary svg {
  transition: transform 0.2s ease;
}

.ht-btn-primary:hover svg {
  transform: translateX(3px);
}

/* Blog Cards Grid */
.ht-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Card Component */
.ht-card {
  display: flex;
  flex-direction: column;
  background-color: var(--ht-white);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  box-shadow: var(--ht-card-shadow);
  transition: var(--ht-transition);
  position: relative;
}

.ht-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ht-card-hover-shadow);
  border-color: var(--ht-red-border);
}

.ht-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--ht-bg-light);
}

.ht-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ht-card:hover .ht-card-media img {
  transform: scale(1.05);
}

/* Fallback cover if post has no thumbnail yet */
.ht-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
}

.ht-card-placeholder::after {
  content: "HiddenTalks";
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--ht-radius-sm);
}

.ht-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ht-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ht-text-dark);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.ht-card-title a {
  color: var(--ht-text-dark);
}

.ht-card-title a:hover {
  color: var(--ht-red);
}

.ht-card-excerpt {
  color: var(--ht-text-body);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ht-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ht-border-light);
  color: var(--ht-text-muted);
  font-size: 0.8rem;
}

.ht-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ht-red);
  font-weight: 700;
  font-size: 0.85rem;
}

.ht-card-read-more svg {
  transition: transform 0.2s ease;
}

.ht-card:hover .ht-card-read-more svg {
  transform: translateX(3px);
}

/* Pagination */
.ht-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 40px 0 60px 0;
}

.ht-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--ht-radius-sm);
  background-color: var(--ht-white);
  border: 1px solid var(--ht-border);
  color: var(--ht-text-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--ht-transition);
}

.ht-pagination .page-numbers:hover {
  border-color: var(--ht-red);
  color: var(--ht-red);
}

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

/* Empty State */
.ht-empty-state {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--ht-bg-light);
  border: 1px dashed var(--ht-border);
  border-radius: var(--ht-radius-md);
  margin: 30px 0 60px 0;
}

.ht-empty-state h3 {
  color: var(--ht-text-dark);
  font-size: 1.4rem;
  margin: 0 0 8px 0;
}

.ht-empty-state p {
  color: var(--ht-text-muted);
  margin: 0;
}

/* ===================================================
   SINGLE BLOG POST STYLING
   =================================================== */
.ht-single-article {
  padding: 40px 0 60px 0;
}

.ht-breadcrumbs {
  font-size: 0.85rem;
  color: var(--ht-text-muted);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ht-breadcrumbs a {
  color: var(--ht-text-muted);
}

.ht-breadcrumbs a:hover {
  color: var(--ht-red);
}

.ht-breadcrumbs .ht-bc-sep {
  opacity: 0.5;
}

.ht-single-header {
  max-width: 860px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.ht-single-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  line-height: 1.2;
  margin: 16px 0 20px 0;
  letter-spacing: -0.02em;
}

.ht-single-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--ht-text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

.ht-single-meta .ht-author-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ht-single-meta .ht-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.ht-single-featured-media {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  box-shadow: var(--ht-card-shadow);
}

.ht-single-featured-media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

/* Single Content Body */
.ht-single-content-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.ht-single-body {
  font-family: var(--ht-font-sans);
  font-size: 1.125rem;
  line-height: 1.85;
  color: #334155;
  letter-spacing: -0.011em;
}

.ht-single-body p {
  margin-bottom: 26px;
}

.ht-single-body h2,
.ht-single-body h3,
.ht-single-body h4 {
  font-family: var(--ht-font-sans);
  color: var(--ht-text-dark);
  font-weight: 800;
  margin: 40px 0 16px 0;
  line-height: 1.3;
}

.ht-single-body h2 {
  font-size: 1.85rem;
  border-left: 4px solid var(--ht-red);
  padding-left: 14px;
}

.ht-single-body h3 {
  font-size: 1.45rem;
}

.ht-single-body blockquote {
  font-family: var(--ht-font-sans);
  font-style: normal;
  font-weight: 500;
  border-left: 4px solid var(--ht-red);
  margin: 32px 0;
  padding: 18px 24px;
  background-color: var(--ht-bg-light);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--ht-red);
  color: var(--ht-text-dark);
  border-radius: 0 var(--ht-radius-sm) var(--ht-radius-sm) 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.ht-single-body ul,
.ht-single-body ol {
  margin: 0 0 28px 24px;
  padding: 0;
}

.ht-single-body li {
  margin-bottom: 8px;
}

.ht-single-body img {
  border-radius: var(--ht-radius-sm);
  margin: 30px auto;
}

/* Post Tags */
.ht-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 36px 0 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--ht-border);
}

.ht-post-tags .ht-tags-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ht-text-dark);
}

.ht-tag-link {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--ht-bg-light);
  border: 1px solid var(--ht-border);
  color: var(--ht-text-muted);
  font-size: 0.8rem;
  border-radius: 9999px;
  transition: var(--ht-transition);
}

.ht-tag-link:hover {
  background-color: var(--ht-red-light);
  color: var(--ht-red);
  border-color: var(--ht-red-border);
}

/* Social Sharing Bar */
.ht-social-share-bar {
  margin: 36px 0;
  padding: 24px;
  background-color: var(--ht-bg-light);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ht-share-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ht-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ht-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ht-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--ht-radius-sm);
  color: #ffffff !important;
  cursor: pointer;
  border: none;
  transition: var(--ht-transition);
  text-decoration: none;
}

.ht-share-linkedin {
  background-color: #0a66c2;
}

.ht-share-linkedin:hover {
  background-color: #004182;
}

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

.ht-share-facebook:hover {
  background-color: #0d65d9;
}

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

.ht-share-twitter:hover {
  background-color: #222222;
}

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

.ht-share-whatsapp:hover {
  background-color: #1ebe5d;
}

.ht-share-copy {
  background-color: var(--ht-red);
  position: relative;
}

.ht-share-copy:hover {
  background-color: var(--ht-red-dark);
}

.ht-copy-tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111827;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
}

.ht-copy-tooltip.show {
  opacity: 1;
  visibility: visible;
}

/* Author Bio Box */
.ht-author-bio-box {
  display: flex;
  gap: 20px;
  padding: 28px;
  background-color: var(--ht-white);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  margin: 40px 0;
}

.ht-author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--ht-red-border);
}

.ht-author-bio-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--ht-text-dark);
}

.ht-author-bio-info p {
  color: var(--ht-text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

/* Related Blogs Section */
.ht-related-posts-section {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 2px solid var(--ht-border);
}

.ht-related-header {
  margin-bottom: 30px;
}

.ht-related-eyebrow {
  color: var(--ht-red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.ht-related-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0;
}

/* ===================================================
   MAGAZINE SYSTEM STYLING
   =================================================== */
.ht-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

/* Reading Progress Bar */
.ht-reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--ht-red-gradient);
  width: 0%;
  z-index: 999999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.7);
}

.ht-magazine-card {
  display: flex;
  flex-direction: column;
  background-color: var(--ht-white);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  box-shadow: var(--ht-card-shadow);
  transition: var(--ht-transition);
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.ht-magazine-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ht-card-hover-shadow);
  border-color: var(--ht-red-border);
}

.ht-magazine-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 480px;
  overflow: hidden;
  background-color: #0f172a;
}

/* 3D Realistic Magazine Spine Shadow */
.ht-magazine-card-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(255, 255, 255, 0.15) 75%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Ambient Top Sheen */
.ht-magazine-card-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.ht-magazine-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.ht-magazine-card:hover .ht-magazine-card-media img {
  transform: scale(1.05);
}

.ht-mag-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #090d16 0%, #1e293b 60%, #334155 100%);
  color: #ffffff;
  position: relative;
}

.ht-mag-badge-overlay {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: var(--ht-radius-full);
}

.ht-magazine-card-body-clean {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.ht-magazine-card-clean .ht-mag-title {
  font-family: var(--ht-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.34;
  letter-spacing: -0.015em;
  color: var(--ht-text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ht-magazine-card-clean .ht-mag-title a:hover {
  color: var(--ht-red);
}

.ht-mag-card-actions-clean {
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
}

.ht-btn-read-magazine {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--ht-radius-full);
  background: var(--ht-red-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.28);
  transition: var(--ht-transition);
  box-sizing: border-box;
}

.ht-btn-read-magazine:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(225, 29, 72, 0.45);
}

.ht-btn-read-magazine svg {
  transition: transform 0.25s ease;
}

.ht-btn-read-magazine:hover svg {
  transform: translateX(4px);
}

/* ===================================================
   SINGLE MAGAZINE PREVIEW PAGE & EDITORIAL EXPERIENCE
   =================================================== */
/* Breadcrumb Navigation */
.ht-breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ht-text-muted);
  margin-bottom: 30px;
  padding: 8px 18px;
  background: var(--ht-bg-light);
  border-radius: var(--ht-radius-full);
  border: 1px solid var(--ht-border);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.02);
}

.ht-bc-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ht-text-dark) !important;
  font-weight: 700;
  transition: color 0.2s ease;
}

.ht-bc-home:hover {
  color: var(--ht-red) !important;
}

.ht-breadcrumbs a {
  color: var(--ht-text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.ht-breadcrumbs a:hover {
  color: var(--ht-red);
}

.ht-bc-sep {
  color: #94a3b8;
  font-size: 0.95rem;
  user-select: none;
}

.ht-bc-current {
  color: var(--ht-text-dark);
  font-weight: 700;
}

.ht-single-magazine-page {
  padding: 36px 0 90px 0;
  background-color: #fafbfd;
}

/* 2-Column Hero Grid */
.ht-single-mag-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 56px;
  align-items: start;
}

/* Left Column: 3D Magazine Cover Presentation */
.ht-single-mag-cover-wrap {
  position: sticky;
  top: 90px;
}

.ht-single-mag-cover-container {
  display: flex;
  flex-direction: column;
}

.ht-single-mag-cover-link {
  display: block;
  text-decoration: none;
  border-radius: var(--ht-radius-md);
}

.ht-single-mag-cover-shadow {
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  box-shadow: 0 24px 55px -12px rgba(15, 23, 42, 0.26), 0 0 0 1px rgba(0, 0, 0, 0.06);
  position: relative;
  background-color: #0f172a;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.ht-single-mag-cover-shadow:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 36px 70px -15px rgba(15, 23, 42, 0.34), 0 0 0 1px rgba(225, 29, 72, 0.25);
}

/* 3D Realistic Spine on Preview Page */
.ht-single-mag-cover-shadow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 26px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(255, 255, 255, 0.22) 72%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.ht-cover-spine-highlight {
  position: absolute;
  top: 0;
  left: 26px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 3;
  pointer-events: none;
}

.ht-cover-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, transparent 48%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
  z-index: 2;
}

.ht-single-mag-cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.ht-single-mag-placeholder {
  aspect-ratio: 3 / 4;
  height: 520px;
}

/* Floating Hover Overlay on Cover */
.ht-cover-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 4;
}

.ht-single-mag-cover-shadow:hover .ht-cover-hover-overlay {
  opacity: 1;
}

.ht-cover-hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--ht-radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(8px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ht-single-mag-cover-shadow:hover .ht-cover-hover-btn {
  transform: translateY(0);
}

/* Under-Cover Actions Card */
.ht-cover-under-card {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ht-cover-status-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--ht-radius-full);
  padding: 7px 16px;
}

.ht-status-indicator-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: ht-pulse-dot 2s infinite;
}

@keyframes ht-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.75; }
}

.ht-btn-block {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}

.ht-btn-read-now {
  padding: 14px 22px;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: var(--ht-radius-md);
  background: var(--ht-red-gradient);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.38);
  transition: var(--ht-transition);
}

.ht-btn-read-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.55);
}

.ht-btn-pdf-download {
  padding: 10px 18px;
  font-size: 0.88rem;
  border-radius: var(--ht-radius-md);
  color: var(--ht-text-dark) !important;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  transition: var(--ht-transition);
}

.ht-btn-pdf-download:hover {
  border-color: var(--ht-red);
  color: var(--ht-red) !important;
  background: var(--ht-red-light);
}

/* Right Column: Magazine Details & CTAs */
.ht-single-mag-content {
  padding-top: 4px;
}

.ht-preview-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.ht-mag-single-edition-badge {
  display: inline-flex;
  align-items: center;
  background: var(--ht-red-light);
  color: var(--ht-red) !important;
  border: 1px solid var(--ht-red-border);
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--ht-radius-full);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.ht-preview-digital-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ht-text-muted);
  border: 1px solid var(--ht-border);
  padding: 4px 12px;
  border-radius: var(--ht-radius-full);
  background: #ffffff;
}

.ht-preview-access-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  padding: 4px 12px;
  border-radius: var(--ht-radius-full);
}

.ht-single-mag-title {
  font-family: var(--ht-font-display);
  font-size: 2.65rem;
  font-weight: 900;
  color: var(--ht-text-dark);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
}

/* 4-Column Quick Specs Row */
.ht-preview-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.ht-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ht-spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ht-text-muted);
  font-weight: 700;
}

.ht-spec-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ht-text-dark);
}

.ht-spec-val-accent {
  color: var(--ht-red) !important;
}

/* Description / Excerpt Box */
.ht-preview-excerpt-box {
  background-color: #ffffff;
  border: 1px solid var(--ht-border);
  border-left: 4px solid var(--ht-red);
  padding: 24px 28px;
  border-radius: var(--ht-radius-md);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.ht-excerpt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ht-excerpt-icon {
  color: var(--ht-red);
  display: flex;
  align-items: center;
}

.ht-preview-excerpt-box h3 {
  font-family: var(--ht-font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--ht-red);
}

.ht-preview-excerpt-text {
  font-size: 1.1rem;
  line-height: 1.74;
  color: var(--ht-text-body);
  margin: 0;
}

/* Primary CTA Box */
.ht-preview-cta-box {
  background: linear-gradient(145deg, #090e17 0%, #172033 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 32px;
  border-radius: var(--ht-radius-lg);
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.45);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.ht-preview-cta-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.ht-cta-title {
  font-family: var(--ht-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.ht-cta-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.ht-cta-actions-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.ht-btn-read-full {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--ht-radius-full);
  background: var(--ht-red-gradient);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
  transition: var(--ht-transition);
}

.ht-btn-read-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.65);
}

.ht-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--ht-radius-full);
  background: rgba(255, 255, 255, 0.06);
  transition: var(--ht-transition);
}

.ht-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.ht-cta-perks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 14px;
}

.ht-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.ht-perk-item svg {
  color: #34d399;
}

/* Social Sharing Bar */
.ht-mag-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.ht-mag-share-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ht-text-muted);
}

/* ===================================================
   MAGAZINE PREVIEW: INSIDE THIS EDITION (CHAPTERS)
   =================================================== */
.ht-mag-chapters-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--ht-border);
}

.ht-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.ht-section-title {
  font-family: var(--ht-font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--ht-text-dark);
  letter-spacing: -0.02em;
  margin: 6px 0 8px 0;
}

.ht-section-subtitle {
  font-size: 1rem;
  color: var(--ht-text-muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

.ht-chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ht-chapter-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  transition: var(--ht-transition);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.ht-chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -8px rgba(15, 23, 42, 0.1);
  border-color: var(--ht-red-border);
}

.ht-chapter-num {
  font-family: var(--ht-font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ht-red);
  line-height: 1;
  padding: 10px 14px;
  background: var(--ht-red-light);
  border-radius: var(--ht-radius-sm);
  flex-shrink: 0;
}

.ht-chapter-body {
  flex: 1;
}

.ht-chapter-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.ht-chapter-desc {
  font-size: 0.92rem;
  color: var(--ht-text-body);
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.ht-chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ht-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.2s ease;
}

.ht-chapter-link:hover {
  gap: 10px;
  color: #b91c1c;
}

/* ===================================================
   MAGAZINE PREVIEW: EDITORIAL VALUE PILLARS
   =================================================== */
.ht-mag-features-section {
  margin-top: 50px;
}

.ht-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ht-feature-card {
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 30px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  transition: var(--ht-transition);
}

.ht-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -8px rgba(15, 23, 42, 0.08);
}

.ht-feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--ht-red-light);
  color: var(--ht-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ht-feature-title {
  font-family: var(--ht-font-sans);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0 0 8px 0;
}

.ht-feature-desc {
  font-size: 0.9rem;
  color: var(--ht-text-body);
  line-height: 1.6;
  margin: 0;
}

/* ===================================================
   MAGAZINE PREVIEW: RELATED MAGAZINES SECTION
   =================================================== */
.ht-related-magazines-section {
  margin-top: 65px;
  padding-top: 55px;
  border-top: 1px solid var(--ht-border);
}

.ht-card-edition-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--ht-radius-full);
  z-index: 3;
}

.ht-card-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ht-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.ht-mag-related-articles {
  margin-top: 65px;
  padding-top: 55px;
  border-top: 1px solid var(--ht-border);
}

/* ===================================================
   MAGAZINE PREVIEW: VIP NEWSLETTER BANNER
   =================================================== */
.ht-mag-newsletter-banner {
  margin-top: 70px;
  background: linear-gradient(135deg, #090d16 0%, #172033 60%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ht-radius-lg);
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.4);
  text-align: center;
}

.ht-mag-newsletter-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.ht-mag-newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.ht-newsletter-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fda4af;
  background: rgba(225, 29, 72, 0.2);
  border: 1px solid rgba(225, 29, 72, 0.35);
  padding: 4px 14px;
  border-radius: var(--ht-radius-full);
  margin-bottom: 14px;
}

.ht-mag-newsletter-title {
  font-family: var(--ht-font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.ht-mag-newsletter-desc {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 28px 0;
}

.ht-mag-newsletter-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ht-btn-newsletter {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ===================================================
   FULL MAGAZINE READER PAGE SPECIFICS
   =================================================== */
.ht-magazine-full-reader-page {
  padding: 30px 0 90px 0;
  background: #ffffff;
}

.ht-mag-reader-header {
  max-width: 820px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.ht-reader-badge-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.ht-mag-reader-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ht-red-gradient) !important;
  color: #ffffff !important;
  font-family: var(--ht-font-sans, inherit);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--ht-radius-full);
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.28);
  margin: 0 !important;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.ht-mag-reader-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--ht-text-dark);
  font-family: var(--ht-font-sans, inherit);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-full);
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  margin: 0 !important;
  box-sizing: border-box;
}

.ht-mag-reader-date-pill svg {
  color: var(--ht-red);
  flex-shrink: 0;
}

.ht-mag-reader-title {
  font-family: var(--ht-font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--ht-text-dark);
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
}

.ht-mag-reader-meta {
  justify-content: center;
  font-size: 0.92rem;
  color: var(--ht-text-muted);
  margin-bottom: 22px;
}

.ht-reader-top-action {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ht-btn-reader-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--ht-radius-full);
  border: 1px solid var(--ht-border);
  background: var(--ht-bg-light);
}

.ht-btn-reader-back:hover {
  border-color: var(--ht-red);
  color: var(--ht-red);
  background: var(--ht-red-light);
}

.ht-mag-reader-cover-media {
  max-width: 480px;
  margin: 0 auto 48px auto;
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.22), 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--ht-border);
  background: #ffffff;
}

.ht-mag-reader-cover-media img {
  width: 100%;
  height: auto;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}

.ht-mag-reader-content-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.ht-magazine-full-body {
  font-family: var(--ht-font-sans);
  font-size: 1.125rem;
  line-height: 1.85;
  color: #334155;
  letter-spacing: -0.011em;
}

/* Drop-cap on first paragraph */
.ht-magazine-full-body > p:first-of-type::first-letter {
  font-family: var(--ht-font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--ht-red);
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 4px;
}

.ht-magazine-full-body p {
  margin-bottom: 26px;
}

.ht-magazine-full-body h2 {
  font-family: var(--ht-font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ht-text-dark);
  margin: 48px 0 20px 0;
  letter-spacing: -0.025em;
  line-height: 1.25;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ht-border);
}

.ht-magazine-full-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--ht-red-gradient);
}

.ht-magazine-full-body h3 {
  font-family: var(--ht-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 38px 0 16px 0;
  letter-spacing: -0.02em;
}

.ht-magazine-full-body blockquote {
  position: relative;
  font-family: var(--ht-font-sans);
  font-style: normal;
  font-weight: 500;
  border-left: 4px solid var(--ht-red);
  margin: 36px 0;
  padding: 22px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--ht-red);
  color: #1e293b;
  border-radius: 0 var(--ht-radius-md) var(--ht-radius-md) 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.ht-magazine-full-body img {
  border-radius: var(--ht-radius-md);
  margin: 36px auto;
  box-shadow: var(--ht-card-shadow);
  max-width: 100%;
  height: auto;
  display: block;
}

.ht-reader-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 2px solid var(--ht-border);
}



/* ===================================================
   LEAD CAPTURE MODAL
   =================================================== */
.ht-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.ht-modal-container {
  position: relative;
  background-color: var(--ht-white);
  width: 100%;
  max-width: 480px;
  border-radius: var(--ht-radius-md);
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--ht-red);
  box-sizing: border-box;
  animation: htModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes htModalPop {
  0% { opacity: 0; transform: scale(0.95) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.ht-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ht-text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--ht-transition);
}

.ht-modal-close:hover {
  color: var(--ht-red);
}

.ht-modal-header {
  margin-bottom: 24px;
}

.ht-modal-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ht-red);
  margin-bottom: 6px;
}

.ht-modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.ht-modal-desc {
  font-size: 0.9rem;
  color: var(--ht-text-muted);
  margin: 0;
  line-height: 1.5;
}

.ht-form-group {
  margin-bottom: 18px;
}

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

.ht-form-group input {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.95rem;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  background-color: var(--ht-bg-light);
  box-sizing: border-box;
  transition: var(--ht-transition);
}

.ht-form-group input:focus {
  outline: none;
  background-color: var(--ht-white);
  border-color: var(--ht-red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

.ht-req {
  color: var(--ht-red);
}

.ht-form-actions {
  margin-top: 24px;
}

.ht-modal-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.ht-spinner-icon {
  animation: htSpin 0.9s linear infinite;
}

@keyframes htSpin {
  100% { transform: rotate(360deg); }
}

.ht-form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--ht-text-muted);
  margin: 16px 0 0 0;
  text-align: center;
}

.ht-form-alert {
  padding: 12px 16px;
  border-radius: var(--ht-radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.45;
}

.ht-alert-error {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.ht-alert-success {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.ht-alert-info {
  background-color: #e0f2fe;
  border: 1px solid #7dd3fc;
  color: #0369a1;
}

/* ===================================================
   SITE HEADER & NAVIGATION
   =================================================== */
.site-header {
  background-color: var(--ht-white);
  border-bottom: 1px solid var(--ht-border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.site-header .site-branding {
  display: flex;
  align-items: center;
}

.site-header .site-title a {
  font-family: var(--ht-font-display);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ht-text-dark);
}

.site-header .site-title a:hover {
  color: var(--ht-red);
}

.site-header .site-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .site-navigation a {
  font-family: var(--ht-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ht-text-dark);
}

.site-header .site-navigation a:hover,
.site-header .site-navigation .current-menu-item > a {
  color: var(--ht-red);
}

/* Site Footer */
.site-footer {
  background-color: #090d16;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer .site-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.site-footer .site-navigation a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-footer .site-navigation a:hover {
  color: #ffffff;
}

/* ===================================================
   HOME PAGE SPECIFIC STYLES
   =================================================== */
.ht-home-page {
  padding-bottom: 20px;
}

/* 1. Hero Section */
.ht-home-hero-section {
  padding: 44px 0 60px 0;
}

.ht-home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.ht-home-hero-media {
  position: relative;
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--ht-card-shadow);
  background-color: #0f172a;
}

.ht-home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.ht-home-hero-media:hover img {
  transform: scale(1.04);
}

.ht-hero-pill-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ht-red-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: var(--ht-radius-full);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
  z-index: 2;
}

.ht-hero-eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.ht-hero-meta-dot {
  width: 4px;
  height: 4px;
  background-color: var(--ht-border);
  border-radius: 50%;
}

.ht-hero-date,
.ht-hero-time {
  font-size: 0.86rem;
  color: var(--ht-text-muted);
  font-weight: 500;
}

.ht-home-hero-title {
  font-family: var(--ht-font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  color: var(--ht-text-dark);
}

.ht-home-hero-title a:hover {
  color: var(--ht-red);
}

.ht-home-hero-excerpt {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--ht-text-body);
  margin: 0 0 26px 0;
}

.ht-btn-hero {
  padding: 13px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--ht-radius-full);
}

/* Home Page Universal Section Layouts */
.ht-home-section {
  padding: 72px 0;
  border-top: 1px solid var(--ht-border);
}

.ht-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.ht-section-header.ht-text-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ht-section-header-left {
  max-width: 680px;
}

.ht-section-eyebrow {
  color: var(--ht-red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 6px;
}

.ht-section-title {
  font-family: var(--ht-font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--ht-text-dark);
  margin: 0 0 8px 0;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.ht-section-subtitle {
  color: var(--ht-text-muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.55;
}

.ht-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ht-red);
  transition: var(--ht-transition);
}

.ht-view-all-link:hover {
  color: var(--ht-red-dark);
  transform: translateX(4px);
}

.ht-section-footer-cta {
  text-align: center;
  margin-top: 44px;
}

.ht-btn-view-all {
  padding: 12px 28px;
  border-radius: var(--ht-radius-full);
  font-weight: 700;
}

/* 4. About Brand Introduction Section */
.ht-about-banner {
  background: var(--ht-bg-light);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.ht-about-title {
  font-family: var(--ht-font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--ht-text-dark);
  line-height: 1.2;
  margin: 10px 0 18px 0;
  max-width: 820px;
}

.ht-about-description {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ht-text-body);
  max-width: 840px;
  margin-bottom: 38px;
}

.ht-about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--ht-border);
}

.ht-pillar-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ht-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ht-radius-md);
  background: var(--ht-red-light);
  color: var(--ht-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-pillar-item h4 {
  font-family: var(--ht-font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: var(--ht-text-dark);
}

.ht-pillar-item p {
  font-size: 0.9rem;
  color: var(--ht-text-muted);
  margin: 0;
  line-height: 1.5;
}

.ht-btn-about {
  padding: 12px 26px;
  border-radius: var(--ht-radius-full);
  font-weight: 700;
}

/* 5. Topic / Category Explorer */
.ht-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.ht-topic-card {
  background: var(--ht-white);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 28px 24px;
  box-shadow: var(--ht-card-shadow);
  transition: var(--ht-transition);
  display: block;
}

.ht-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ht-card-hover-shadow);
  border-color: var(--ht-red-border);
}

.ht-topic-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ht-text-muted);
  background: var(--ht-bg-light);
  padding: 4px 10px;
  border-radius: var(--ht-radius-full);
  margin-bottom: 12px;
}

.ht-topic-title {
  font-family: var(--ht-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ht-text-dark);
  margin: 0 0 8px 0;
  transition: var(--ht-transition);
}

.ht-topic-card:hover .ht-topic-title {
  color: var(--ht-red);
}

.ht-topic-desc {
  font-size: 0.9rem;
  color: var(--ht-text-muted);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.ht-topic-link-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ht-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 6. Call to Action Card */
.ht-cta-card {
  background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
  border-radius: var(--ht-radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-cta-eyebrow {
  color: var(--ht-red-border) !important;
}

.ht-cta-title {
  font-family: var(--ht-font-display);
  font-size: 2.65rem;
  font-weight: 900;
  color: #ffffff;
  margin: 10px auto 14px auto;
  max-width: 680px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.ht-cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 34px auto;
  max-width: 620px;
  line-height: 1.65;
}

.ht-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ht-btn-cta-primary {
  padding: 13px 30px;
  border-radius: var(--ht-radius-full);
}

.ht-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--ht-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  background: transparent;
  transition: var(--ht-transition);
}

.ht-btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}


/* ===================================================
   RESPONSIVE MEDIA QUERIES
   =================================================== */
@media (max-width: 1024px) {
  .ht-blog-grid,
  .ht-magazine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-home-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ht-about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-single-mag-grid {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
    text-align: center;
  }

  .site-header .site-branding {
    justify-content: center;
  }

  .site-header .site-navigation ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ht-home-hero-section {
    padding: 28px 0 44px 0;
  }

  .ht-home-hero-title {
    font-size: 1.95rem;
  }

  .ht-home-hero-excerpt {
    font-size: 1rem;
  }

  .ht-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ht-section-title {
    font-size: 1.85rem;
  }

  .ht-about-banner {
    padding: 36px 24px;
  }

  .ht-about-title {
    font-size: 1.8rem;
  }

  .ht-about-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ht-topics-grid {
    grid-template-columns: 1fr;
  }

  .ht-cta-card {
    padding: 44px 24px;
  }

  .ht-cta-title {
    font-size: 1.95rem;
  }

  .ht-featured-article {
    grid-template-columns: 1fr;
  }

  .ht-featured-thumb {
    min-height: 240px;
  }

  .ht-featured-info {
    padding: 24px;
  }

  .ht-blog-hero-header h1.ht-page-title {
    font-size: 2rem;
  }

  .ht-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ht-magazine-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 28px;
  }

  .ht-single-title {
    font-size: 2.1rem;
  }

  .ht-single-body {
    font-size: 1.05rem;
  }

  .ht-social-share-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ht-author-bio-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ht-single-mag-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ht-single-mag-cover-wrap {
    position: static;
    max-width: 340px;
    margin: 0 auto;
  }

  .ht-single-mag-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .ht-filter-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }

  .ht-filter-pill {
    flex-shrink: 0;
  }

  .ht-single-title {
    font-size: 1.75rem;
  }

  .ht-share-buttons {
    width: 100%;
  }

  .ht-share-btn {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .ht-modal-container {
    padding: 28px 20px;
  }

  .ht-single-mag-title {
    font-size: 1.65rem;
  }

  .ht-btn-lg {
    width: 100%;
    justify-content: center;
  }

  .ht-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .ht-cta-buttons a {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   HIDDENTALKS PREMIUM EDITORIAL MAGAZINE FOOTER
   ========================================================================== */

.ht-site-footer {
  background-color: #090d16;
  background-image: radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.04) 0%, transparent 45%),
                    linear-gradient(180deg, #0d1424 0%, #080c16 100%);
  color: #94a3b8;
  font-family: var(--ht-font-sans);
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Main Section */
.ht-footer-main {
  padding: 72px 0 60px 0;
  position: relative;
}

/* Grid Layout: 3 Columns */
.ht-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Section Headings */
.ht-footer-title-wrap {
  margin-bottom: 24px;
}

.ht-footer-title {
  font-family: var(--ht-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin: 0;
  position: relative;
  display: inline-block;
}

.ht-footer-title-bar {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--ht-red-gradient);
  border-radius: 2px;
  margin-top: 8px;
}

/* Column 1: Brand & About */
.ht-footer-brand {
  margin-bottom: 18px;
}

.ht-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ht-footer-brand-link .ht-brand-text {
  font-family: var(--ht-font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
}

.ht-footer-brand-link .ht-brand-accent {
  color: var(--ht-red);
}

.ht-footer-brand-link .ht-brand-badge {
  font-family: var(--ht-font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fda4af;
  background: rgba(225, 29, 72, 0.14);
  border: 1px solid rgba(225, 29, 72, 0.28);
  padding: 3px 8px;
  border-radius: var(--ht-radius-sm);
  vertical-align: middle;
}

.ht-footer-custom-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.ht-footer-desc {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.72;
  margin: 0 0 26px 0;
  max-width: 360px;
}

/* Social Media Section */
.ht-footer-social-wrap {
  margin-top: auto;
}

.ht-footer-social-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 12px;
}

.ht-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ht-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.ht-social-btn:hover {
  background: var(--ht-red);
  border-color: var(--ht-red);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -4px rgba(225, 29, 72, 0.45);
}

/* Column 2: Useful Links */
.ht-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ht-footer-link-item {
  margin: 0;
  padding: 0;
}

.ht-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.ht-link-arrow {
  color: var(--ht-red);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.ht-footer-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.ht-footer-link:hover .ht-link-arrow {
  transform: translateX(3px);
  color: #fda4af;
}

/* Column 3: Featured Stories */
.ht-footer-stories-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ht-footer-story-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ht-footer-story-thumb-link {
  width: 76px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  position: relative;
}

.ht-footer-story-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ht-footer-story-item:hover .ht-footer-story-thumb {
  transform: scale(1.08);
}

.ht-footer-story-info {
  flex: 1;
  min-width: 0;
}

.ht-footer-story-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.71875rem;
  line-height: 1;
  margin-bottom: 6px;
  color: #64748b;
}

.ht-footer-story-cat {
  color: #fda4af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ht-footer-meta-sep {
  color: #475569;
}

.ht-footer-story-date {
  color: #94a3b8;
}

.ht-footer-story-title {
  font-family: var(--ht-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.ht-footer-story-title a {
  color: #e2e8f0;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.ht-footer-story-title a:hover {
  color: var(--ht-red);
}

.ht-footer-empty-text {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* ==========================================================================
   BOTTOM FOOTER BAR
   ========================================================================== */

.ht-footer-bottom-bar {
  background-color: #05080e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}

.ht-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ht-footer-copyright p {
  color: #64748b;
  font-size: 0.8125rem;
  margin: 0;
}

.ht-footer-legal-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.ht-footer-legal-link {
  color: #64748b;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ht-footer-legal-link:hover {
  color: #ffffff;
}

/* Back to Top Button */
.ht-back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-family: var(--ht-font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--ht-radius-sm);
  cursor: pointer;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.ht-back-to-top-btn svg {
  transition: transform 0.24s ease;
}

.ht-back-to-top-btn:hover {
  background: var(--ht-red);
  border-color: var(--ht-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -4px rgba(225, 29, 72, 0.4);
}

.ht-back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 991px) {
  .ht-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ht-footer-col-stories {
    grid-column: 1 / -1;
  }

  .ht-footer-stories-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .ht-footer-main {
    padding: 52px 0 40px 0;
  }

  .ht-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ht-footer-col-stories {
    grid-column: auto;
  }

  .ht-footer-stories-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ht-footer-desc {
    max-width: 100%;
  }

  .ht-footer-link {
    padding: 10px 0;
  }

  .ht-footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .ht-footer-legal-list {
    justify-content: center;
    gap: 16px;
  }

  .ht-back-to-top-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
}

/* ==========================================================================
   ABOUT US EDITORIAL PAGE STYLING
   ========================================================================== */

/* Hero Section */
.ht-about-hero-section {
  padding: 64px 0 54px 0;
  position: relative;
}

.ht-about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.ht-about-hero-title,
.elementor-12 .elementor-element.ht-about-hero-title .elementor-heading-title {
  font-family: var(--ht-font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--ht-text-dark);
  letter-spacing: -0.025em;
  margin: 12px 0 18px 0;
}

.ht-about-hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ht-text-body);
  margin-bottom: 28px;
}

.ht-about-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ht-about-hero-img-wrap img,
.ht-about-who-img-wrap img,
.ht-about-img {
  border-radius: var(--ht-radius-lg);
  box-shadow: var(--ht-card-hover-shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Who We Are Section */
.ht-about-who-section {
  padding: 64px 0;
  border-top: 1px solid var(--ht-border);
}

.ht-about-who-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.ht-about-who-text p,
.elementor-12 .ht-about-who-col-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ht-text-body);
  margin-bottom: 20px;
}

/* Why HiddenTalks / Pillars Section */
.ht-about-pillars-section {
  padding: 64px 0;
  border-top: 1px solid var(--ht-border);
  background-color: var(--ht-bg-light);
}

.ht-about-pillars-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}

/* Editorial Quote Box */
.ht-about-quote-section {
  padding: 60px 0;
  border-top: 1px solid var(--ht-border);
}

.ht-editorial-quote-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--ht-white);
  border-radius: var(--ht-radius-lg);
  border: 1px solid var(--ht-border);
  box-shadow: var(--ht-card-shadow);
  position: relative;
}

.ht-quote-mark {
  font-family: var(--ht-font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--ht-red);
  display: block;
  margin-bottom: -18px;
  opacity: 0.45;
}

.ht-quote-text {
  font-family: var(--ht-font-serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ht-text-dark);
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}

.ht-quote-citation {
  font-family: var(--ht-font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ht-red);
  display: block;
  font-style: normal;
}

/* Topics & Magazine Sections */
.ht-about-topics-section,
.ht-about-magazines-section {
  padding: 64px 0;
  border-top: 1px solid var(--ht-border);
}

.ht-btn-view-magazines {
  margin-top: 32px;
  display: inline-flex;
}

/* CTA Section */
.ht-about-cta-section {
  padding: 64px 0 80px 0;
  border-top: 1px solid var(--ht-border);
}

/* About Us Responsive Breakpoints */
@media (max-width: 991px) {
  .ht-about-hero-grid,
  .ht-about-who-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ht-about-hero-title,
  .elementor-12 .elementor-element.ht-about-hero-title .elementor-heading-title {
    font-size: 2.25rem;
  }

  .ht-about-pillars-full {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ht-quote-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .ht-about-hero-section,
  .ht-about-who-section,
  .ht-about-pillars-section,
  .ht-about-quote-section,
  .ht-about-topics-section,
  .ht-about-magazines-section,
  .ht-about-cta-section {
    padding: 48px 0;
  }

  .ht-about-hero-title,
  .elementor-12 .elementor-element.ht-about-hero-title .elementor-heading-title {
    font-size: 1.85rem;
  }

  .ht-editorial-quote-box {
    padding: 32px 20px;
  }

  .ht-about-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .ht-about-hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   TEXT-FIRST EDITORIAL ABOUT US LAYOUT (CONSISTENT ALIGNMENT & BRAND COLORS)
   ========================================================================== */

/* Outer Page Wrapper & Section */
.page-id-12 .site-main,
.page-id-12 .elementor-12 {
  background-color: var(--ht-white);
}

.ht-about-unified-section,
.elementor-12 .elementor-section.ht-about-unified-section {
  padding: 56px 0 80px 0;
}

.ht-about-unified-section > .elementor-container,
.ht-about-text-only-wrap .ht-container {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box;
}

/* 1. Eyebrow */
.page-id-12 span.elementor-heading-title,
.elementor-12 span.elementor-heading-title,
.elementor-12 .ht-about-eyebrow .elementor-heading-title,
.elementor-12 .elementor-widget-heading.ht-about-eyebrow .elementor-heading-title,
.ht-about-text-header .ht-section-eyebrow,
.ht-section-eyebrow {
  color: var(--ht-red) !important;
  font-family: var(--ht-font-sans) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 10px 0 !important;
}

.page-id-12 span.elementor-heading-title::before,
.elementor-12 span.elementor-heading-title::before,
.elementor-12 .ht-about-eyebrow .elementor-heading-title::before,
.elementor-12 .elementor-widget-heading.ht-about-eyebrow .elementor-heading-title::before,
.ht-about-text-header .ht-section-eyebrow::before,
.ht-section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: var(--ht-red) !important;
  border-radius: 2px;
}

/* 2. Main Page Title "About Us" */
.page-id-12 h1.elementor-heading-title,
.elementor-12 h1.elementor-heading-title,
.page-id-12 .ht-about-title-main .elementor-heading-title,
.elementor-12 .ht-about-title-main .elementor-heading-title,
.elementor-12 .elementor-widget-heading.ht-about-title-main .elementor-heading-title,
.ht-about-title-main,
h1.ht-about-title-main {
  color: var(--ht-text-dark) !important;
  font-family: var(--ht-font-display) !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 18px 0 !important;
}

/* 3. Lead Subtitle */
.ht-about-lead,
.elementor-12 .ht-about-lead-wrap p {
  font-size: 1.25rem !important;
  line-height: 1.7 !important;
  color: var(--ht-text-muted) !important;
  margin: 0 !important;
  padding-bottom: 32px !important;
  border-bottom: 1px solid var(--ht-border) !important;
}

/* 4. Article Editorial Content (Flush Left, Perfectly Aligned) */
.ht-editorial-article-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-top: 36px !important;
}

.ht-editorial-article-content h2,
.elementor-12 .ht-editorial-article-content h2 {
  font-family: var(--ht-font-display) !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: var(--ht-text-dark) !important;
  letter-spacing: -0.02em !important;
  margin: 38px 0 14px 0 !important;
  position: relative !important;
  padding-bottom: 10px !important;
  line-height: 1.25 !important;
}

.ht-editorial-article-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--ht-red) !important;
  border-radius: 2px;
}

.ht-editorial-article-content h2:first-of-type {
  margin-top: 0 !important;
}

.ht-editorial-article-content p,
.elementor-12 .ht-editorial-article-content p {
  font-size: 1.0625rem !important;
  line-height: 1.82 !important;
  color: var(--ht-text-body) !important;
  margin: 0 0 24px 0 !important;
}

@media (max-width: 768px) {
  .ht-about-unified-section,
  .elementor-12 .elementor-section.ht-about-unified-section {
    padding: 40px 0 60px 0;
  }

  .elementor-12 .ht-about-title-main .elementor-heading-title,
  .ht-about-title-main {
    font-size: 2.25rem !important;
  }

  .ht-about-lead,
  .elementor-12 .ht-about-lead-wrap p {
    font-size: 1.125rem !important;
    padding-bottom: 24px !important;
  }

  .ht-editorial-article-content h2,
  .elementor-12 .ht-editorial-article-content h2 {
    font-size: 1.35rem !important;
  }
}

/* ==========================================================================
/* ==========================================================================
   HIDDENTALKS CONTACT US PAGE & FORM - PREMIUM EDITORIAL UI
   ========================================================================== */

/* 0. Fix Elementor Heading Color Overrides (Charcoal Black #0f172a instead of Cyan) */
.page-id-14 .elementor-heading-title,
.elementor-14 .elementor-heading-title,
.elementor-14 h1.elementor-heading-title,
.elementor-14 h2.elementor-heading-title,
.elementor-14 h3.elementor-heading-title,
.elementor-14 .elementor-widget-heading .elementor-heading-title {
  color: #0f172a !important;
  font-family: var(--ht-font-display, 'Outfit', serif) !important;
}

.page-id-14 .site-main,
.elementor-14 .site-main {
  background-color: #ffffff !important;
}

/* 1. Page Wrap & Container */
.ht-contact-page-wrap,
.elementor-14 .elementor-section.ht-contact-page-wrap {
  width: 100% !important;
  padding: 50px 0 90px 0 !important;
  background-color: #ffffff !important;
}

.ht-contact-container,
.elementor-14 .ht-contact-page-wrap > .elementor-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

/* 2. Hero Section */
.ht-contact-hero,
.elementor-14 .ht-contact-hero {
  margin-bottom: 36px !important;
  max-width: 820px !important;
}

/* Eyebrow: "GET IN TOUCH" */
.page-id-14 .ht-contact-eyebrow .elementor-heading-title,
.elementor-14 .ht-contact-eyebrow .elementor-heading-title,
.ht-contact-eyebrow {
  color: var(--ht-red, #e11d48) !important;
  font-family: var(--ht-font-sans, 'Outfit', sans-serif) !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 12px 0 !important;
}

.page-id-14 .ht-contact-eyebrow .elementor-heading-title::before,
.elementor-14 .ht-contact-eyebrow .elementor-heading-title::before,
.ht-contact-eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 20px !important;
  height: 3px !important;
  background-color: var(--ht-red, #e11d48) !important;
  border-radius: 2px !important;
}

/* Main Title: "Let's Start a Conversation." */
.page-id-14 .ht-contact-title .elementor-heading-title,
.elementor-14 .ht-contact-title .elementor-heading-title,
.ht-contact-title {
  font-family: var(--ht-font-display, 'Outfit', serif) !important;
  font-size: 3.25rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  color: #0f172a !important;
  margin: 0 0 16px 0 !important;
}

/* Lead Subtitle */
.ht-contact-lead,
.elementor-14 .ht-contact-hero p.ht-contact-lead {
  font-size: 1.1875rem !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin: 0 0 44px 0 !important;
  max-width: 760px !important;
}

/* 3. Two-Column Inner Layout */
.elementor-14 .elementor-inner-section > .elementor-container,
.ht-contact-grid {
  display: flex !important;
  gap: 36px !important;
  align-items: stretch !important;
}

/* Left Column: Form Card Container */
.elementor-14 .elementor-col-58,
.ht-contact-form-column {
  flex: 1 1 58% !important;
  max-width: 58% !important;
}

.elementor-14 .elementor-col-58 > .elementor-widget-wrap,
.ht-contact-form-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 40px !important;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.02) !important;
  box-sizing: border-box !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Right Column: "Let's Connect" Container */
.elementor-14 .elementor-col-42,
.ht-contact-info-column {
  flex: 1 1 42% !important;
  max-width: 42% !important;
}

.elementor-14 .elementor-col-42 > .elementor-widget-wrap,
.ht-contact-info-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 40px !important;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.03) !important;
  box-sizing: border-box !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

/* 4. Form Card Headings & Content */
.page-id-14 .ht-contact-form-title .elementor-heading-title,
.elementor-14 .ht-contact-form-title .elementor-heading-title,
.ht-contact-form-title {
  font-family: var(--ht-font-display, 'Outfit', serif) !important;
  font-size: 1.625rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 6px 0 !important;
}

.ht-contact-form-subtitle {
  font-size: 0.9375rem !important;
  color: #64748b !important;
  margin: 0 0 28px 0 !important;
  line-height: 1.5 !important;
}

/* Form Fields & Grid */
.ht-contact-form-wrapper {
  width: 100%;
}

.ht-form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.ht-form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.ht-form-label {
  font-family: var(--ht-font-sans, 'Outfit', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #334155;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ht-required {
  color: var(--ht-red, #e11d48);
  font-weight: 800;
}

.ht-form-input,
.ht-form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--ht-font-sans, 'Outfit', sans-serif);
  font-size: 0.9375rem;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.ht-form-textarea {
  resize: vertical;
  min-height: 130px;
}

.ht-form-input::placeholder,
.ht-form-textarea::placeholder {
  color: #94a3b8;
}

.ht-form-input:focus,
.ht-form-textarea:focus {
  background-color: #ffffff;
  border-color: var(--ht-red, #e11d48);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.ht-form-input.ht-input-invalid,
.ht-form-textarea.ht-input-invalid {
  border-color: #ef4444;
  background-color: #fff9f9;
}

.ht-field-error {
  display: none;
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 6px;
  font-weight: 600;
}

/* Submit Button */
.ht-form-submit-row {
  margin-top: 24px;
}

.ht-contact-submit-btn {
  width: 100%;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ht-red-gradient, linear-gradient(135deg, #e11d48 0%, #be123c 100%));
  color: #ffffff;
  font-family: var(--ht-font-sans, 'Outfit', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px -2px rgba(225, 29, 72, 0.4);
  text-decoration: none;
}

.ht-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -2px rgba(225, 29, 72, 0.55);
}

.ht-contact-submit-btn:active {
  transform: translateY(0);
}

.ht-contact-submit-btn:disabled,
.ht-contact-submit-btn.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ht-btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: htSpin 0.75s linear infinite;
}

.ht-contact-submit-btn.is-loading .ht-btn-spinner {
  display: inline-block;
}

/* Alerts */
.ht-contact-alerts {
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.55;
  animation: htFadeIn 0.3s ease-out;
}

.ht-alert-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ht-alert-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.ht-alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.ht-alert-success .ht-alert-icon {
  color: #15803d;
}

.ht-alert-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.ht-alert-error .ht-alert-icon {
  color: #b91c1c;
}

/* 5. Right Column: "Let's Connect" Information Section */
.page-id-14 .ht-contact-info-title .elementor-heading-title,
.elementor-14 .ht-contact-info-title .elementor-heading-title,
.ht-contact-info-title {
  font-family: var(--ht-font-display, 'Outfit', serif) !important;
  font-size: 1.625rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 8px 0 !important;
  position: relative !important;
  display: block !important;
}

.ht-contact-info-desc {
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 0 26px 0 !important;
}

/* Contact Channels Cards */
.ht-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.ht-contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.22s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ht-contact-channel-item:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.ht-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(225, 29, 72, 0.08);
  color: var(--ht-red, #e11d48);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.ht-channel-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ht-red, #e11d48);
}

.ht-channel-body {
  flex: 1;
}

.ht-channel-body h4 {
  font-family: var(--ht-font-sans, 'Outfit', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.ht-channel-body p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0 0 4px 0;
}

.ht-channel-body p:last-child {
  margin-bottom: 0;
}

.ht-channel-body a {
  color: var(--ht-red, #e11d48);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.ht-channel-body a:hover {
  color: #be123c;
  text-decoration: underline;
}

/* Editorial Note Callout Box */
.ht-contact-editorial-note {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid var(--ht-red, #e11d48);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin-top: auto;
}

.ht-contact-editorial-note h5 {
  font-family: var(--ht-font-sans, 'Outfit', sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.ht-contact-editorial-note p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* Google Maps Embed Section */
.ht-contact-map-card {
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
}

.ht-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}

.ht-map-title {
  font-family: var(--ht-font-display, 'Outfit', sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 2px 0;
  letter-spacing: -0.02em;
}

.ht-map-desc {
  color: #64748b;
  font-size: 0.9375rem;
  margin: 0;
}

.ht-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--ht-red, #e11d48);
  border: 1.5px solid var(--ht-red, #e11d48);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.ht-map-directions-btn:hover {
  background: var(--ht-red, #e11d48);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.ht-map-embed-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  background: #f1f5f9;
}

.ht-map-embed-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

@media (max-width: 600px) {
  .ht-contact-map-card {
    padding: 24px 18px;
    margin-top: 36px;
    border-radius: 12px;
  }
  .ht-map-embed-wrapper iframe {
    min-height: 320px;
    height: 320px;
  }
}

/* 6. Responsive Rules (Tablets & Mobiles) */
@media (max-width: 991px) {
  .elementor-14 .elementor-inner-section > .elementor-container,
  .ht-contact-grid {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .elementor-14 .elementor-col-58,
  .elementor-14 .elementor-col-42,
  .ht-contact-form-column,
  .ht-contact-info-column {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .page-id-14 .ht-contact-title .elementor-heading-title,
  .elementor-14 .ht-contact-title .elementor-heading-title,
  .ht-contact-title {
    font-size: 2.5rem !important;
  }

  .elementor-14 .elementor-col-58 > .elementor-widget-wrap,
  .elementor-14 .elementor-col-42 > .elementor-widget-wrap,
  .ht-contact-form-card,
  .ht-contact-info-card {
    padding: 32px 28px !important;
  }
}

@media (max-width: 600px) {
  .ht-contact-page-wrap,
  .elementor-14 .elementor-section.ht-contact-page-wrap {
    padding: 36px 0 60px 0 !important;
  }

  .page-id-14 .ht-contact-title .elementor-heading-title,
  .elementor-14 .ht-contact-title .elementor-heading-title,
  .ht-contact-title {
    font-size: 2rem !important;
  }

  .ht-contact-lead,
  .elementor-14 .ht-contact-hero p.ht-contact-lead {
    font-size: 1.05rem !important;
    margin-bottom: 28px !important;
  }

  .ht-form-fields-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .elementor-14 .elementor-col-58 > .elementor-widget-wrap,
  .elementor-14 .elementor-col-42 > .elementor-widget-wrap,
  .ht-contact-form-card,
  .ht-contact-info-card {
    padding: 24px 20px !important;
    border-radius: 12px !important;
  }

  .ht-contact-submit-btn {
    height: 48px !important;
  }
}

/* ===================================================
   RESPONSIVE ENHANCEMENTS FOR SINGLE MAGAZINE PAGE
   =================================================== */
@media (max-width: 1024px) {
  .ht-single-mag-grid {
    grid-template-columns: 340px 1fr !important;
    gap: 36px !important;
  }
  .ht-preview-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ht-features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 860px) {
  .ht-single-mag-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .ht-single-mag-cover-wrap {
    position: static !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }
  .ht-features-grid {
    grid-template-columns: 1fr !important;
  }
  .ht-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
}

@media (max-width: 600px) {
  .ht-single-mag-title {
    font-size: 2rem !important;
  }
  .ht-preview-specs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 12px 14px !important;
  }
  .ht-preview-excerpt-box {
    padding: 20px 18px !important;
  }
  .ht-preview-cta-box {
    padding: 24px 20px !important;
  }
  .ht-cta-actions-wrap {
    flex-direction: column !important;
    width: 100% !important;
  }
  .ht-cta-actions-wrap a {
    width: 100% !important;
    justify-content: center !important;
  }
  .ht-cta-perks {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .ht-mag-share-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .ht-share-buttons {
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .ht-share-btn {
    flex: 1 1 calc(50% - 8px) !important;
    justify-content: center !important;
  }
  .ht-mag-newsletter-banner {
    padding: 36px 20px !important;
  }
  .ht-mag-newsletter-title {
    font-size: 1.6rem !important;
  }
  .ht-mag-newsletter-cta {
    flex-direction: column !important;
    width: 100% !important;
  }
  .ht-mag-newsletter-cta a {
    width: 100% !important;
    justify-content: center !important;
  }
}


