/* ==========================================================================
   CompleteSEOTools (CET) — Exact Search Engine Journal (SEJ) Layout
   Optimized Mobile & Desktop Production Stylesheet
   ========================================================================== */

/* SEJ Root Variables */
:root {
  --theme-color-primary: #5ec92a;
  --theme-color-hover: #3EAC08;
  --tea-green-color: #CDF0C8;
  --honey-dev-color: #E6F5E4;
  --black-color: #252525;
  --black-color-50: #25252550;
  --ind-color: #425067;
  --cultured-color: #F5F7F7;
  --border-color-primary: #dedede;
  --cst-font-main: 'Inter', Arial, Helvetica, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body.cst-sej-theme {
  font-family: var(--cst-font-main);
  font-weight: 400;
  line-height: 1.725;
  font-size: 17px;
  background-color: #ffffff;
  color: var(--black-color);
  overflow-wrap: break-word;
  letter-spacing: -0.2px;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

#page.cst-site-wrapper {
  margin: 0;
  padding: 0;
}

#primary.cst-site-main {
  margin: 0;
  padding: 0;
}

.cst-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ==========================================================================
   1. MAIN STICKY HEADER
   ========================================================================== */
.cst-main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.cst-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.cst-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cst-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--theme-color-primary);
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.cst-logo-text {
  font-family: var(--cst-font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--black-color);
  letter-spacing: -0.5px;
}
.cst-logo-text span {
  color: var(--theme-color-primary);
}

/* DESKTOP MENU */
.cst-desktop-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cst-desktop-menu li a {
  font-family: var(--cst-font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--black-color);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}
.cst-desktop-menu li a:hover,
.cst-desktop-menu li.current-menu-item a {
  color: var(--theme-color-primary);
}
.cst-desktop-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--theme-color-primary);
  transition: width 0.2s ease;
}
.cst-desktop-menu li a:hover::after,
.cst-desktop-menu li.current-menu-item a::after {
  width: 100%;
}

/* HEADER ACTIONS */
.cst-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cst-search-btn-toggle {
  background: var(--cultured-color);
  border: 1px solid #dedede;
  color: #555555;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cst-search-btn-toggle:hover {
  background: #e5e7eb;
  color: #000000;
}
.cst-btn-subscribe {
  background: var(--theme-color-primary);
  color: #ffffff !important;
  font-family: var(--cst-font-main);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.cst-btn-subscribe:hover {
  background: var(--theme-color-hover);
}
.cst-mobile-menu-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  color: var(--black-color);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* MOBILE DRAWER STYLES */
.cst-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  backdrop-filter: blur(3px);
}
.cst-drawer-panel {
  background: #111111;
  width: 290px;
  max-width: 85%;
  height: 100%;
  padding: 22px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 4px 0 25px rgba(0,0,0,0.5);
}
.cst-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #222222;
  padding-bottom: 14px;
}
.cst-drawer-close-btn {
  background: #1e293b;
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cst-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cst-mobile-menu-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 4px;
  background: #181818;
  transition: all 0.2s ease;
}
.cst-mobile-menu-list a:hover {
  background: #252525;
  color: #ffffff;
}
.cst-mobile-menu-list a i {
  color: var(--theme-color-primary);
  margin-right: 8px;
}
.cst-drawer-count {
  font-size: 11px;
  background: #2b2b2b;
  color: #a8a8a8;
  padding: 2px 7px;
  border-radius: 10px;
}

/* SEARCH OVERLAY MODAL */
.cst-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cst-search-box {
  background: #ffffff;
  border-radius: 6px;
  width: 100%;
  max-width: 560px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.cst-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  color: #757575;
  cursor: pointer;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.cst-hero-section {
  padding: 24px 0 28px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color-primary);
  margin: 0;
}
.cst-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 44px;
  align-items: start;
}

/* Left Hero Feature */
.cst-hero-left {
  display: flex;
  flex-direction: column;
}
.cst-hero-cover-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
  margin-bottom: 16px;
  border-radius: 2px;
}
.cst-hero-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cst-hero-headline {
  font-family: var(--cst-font-main);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--black-color);
  text-align: center;
  margin: 0 auto 8px;
  letter-spacing: -0.4px;
}
.cst-hero-headline a {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cst-hero-headline a:hover {
  color: var(--theme-color-primary);
}
.cst-hero-byline {
  font-family: var(--cst-font-main);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--theme-color-primary);
  text-align: center;
  margin: 0 0 10px 0;
}
.cst-hero-byline a {
  color: var(--theme-color-primary);
  text-decoration: none;
}
.cst-hero-byline a:hover {
  text-decoration: underline;
}
.cst-hero-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ind-color);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

/* Right Tabbed List */
.cst-hero-right {
  border-left: 1px solid var(--border-color-primary);
  padding-left: 40px;
}
.cst-tab-header {
  display: flex;
  font-size: 15px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 16px;
}
.cst-tab-btn {
  flex: auto;
  padding: 14px 18px 12px;
  border: none;
  border-bottom: 3.5px solid transparent;
  font-family: var(--cst-font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  background-color: var(--honey-dev-color);
  color: var(--black-color);
}
.cst-tab-btn.active {
  background-color: #ffffff;
  border-color: var(--theme-color-primary);
  color: var(--black-color);
}
.cst-tab-btn:hover {
  background-color: var(--tea-green-color);
}

.cst-tab-panel {
  display: flex;
  flex-direction: column;
}
.cst-hero-list-item {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}
.cst-hero-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cst-hero-list-cat {
  font-family: var(--cst-font-main);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--theme-color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
  text-decoration: none;
}
.cst-hero-list-title {
  font-family: var(--cst-font-main);
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black-color);
  margin: 0 0 5px 0;
}
.cst-hero-list-title a {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cst-hero-list-title a:hover {
  color: var(--theme-color-primary);
  text-decoration: underline;
}
.cst-hero-list-meta {
  font-size: 13px;
  color: #757575;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ==========================================================================
   3. TOPIC HASH CAROUSEL
   ========================================================================== */
.cst-topics-bar {
  background: var(--cultured-color);
  border-top: 1px solid var(--border-color-primary);
  border-bottom: 1px solid var(--border-color-primary);
  padding: 10px 0;
  margin-bottom: 28px;
}
.cst-topics-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cst-topics-inner::-webkit-scrollbar {
  display: none;
}
.cst-topics-label {
  font-family: var(--cst-font-main);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cst-topic-tag {
  background: #ffffff;
  color: #334155;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid var(--border-color-primary);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.cst-topic-tag:hover {
  background: var(--black-color);
  color: #ffffff;
  border-color: var(--black-color);
}

/* ==========================================================================
   4. FEATURED CATEGORY 2x2 GRID (SEJ Layout Match)
   ========================================================================== */
.cst-category-grid-section {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-color-primary);
  margin-bottom: 32px;
}
.cst-category-main-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.cst-cats-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
}
.cst-cat-block {
  display: flex;
  flex-direction: column;
}
.cst-cat-block-title {
  font-family: var(--cst-font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--black-color);
  margin: 0 0 16px 0;
  line-height: 1.2;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border-color-primary);
  display: block;
}
.cst-cat-block-title::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 46px;
  height: 3.5px;
  background: linear-gradient(90deg, #5ec92a 0%, #3aa32c 100%);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}
.cst-cat-block:hover .cst-cat-block-title::after {
  width: 76px;
  background: linear-gradient(90deg, #5ec92a 0%, #2e8b20 100%);
}
.cst-cat-block-title a {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cst-cat-block-title a:hover {
  color: var(--theme-color-primary);
}
.cst-cat-feat-post {
  margin-bottom: 10px;
}
.cst-cat-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  background: #eee;
  margin-bottom: 10px;
}
.cst-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cst-cat-feat-title {
  font-family: var(--cst-font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black-color);
  margin: 0 0 10px 0;
}
.cst-cat-feat-title a {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cst-cat-feat-title a:hover {
  color: var(--theme-color-primary);
  text-decoration: underline;
}
.cst-cat-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cst-cat-sub-item {
  border-top: 1px solid #e5e7eb;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.cst-cat-sub-item a {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cst-cat-sub-item a:hover {
  color: var(--theme-color-primary);
  text-decoration: underline;
}

/* Category Sidebar Promos */
.cst-promo-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border: 1px solid #d0dcff;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.cst-promo-badge {
  display: inline-block;
  font-family: var(--cst-font-main);
  font-size: 11px;
  font-weight: 800;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.cst-promo-title {
  font-family: var(--cst-font-main);
  font-size: 22px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
.cst-promo-subtitle {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.45;
  margin: 0 0 16px 0;
}
.cst-promo-btn {
  display: inline-block;
  background: #4338ca;
  color: #ffffff !important;
  font-family: var(--cst-font-main);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cst-promo-btn:hover {
  background: #3730a3;
}

/* Google News Preferred Box */
.cst-google-source-box {
  border: 1.5px solid #dedede;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  text-decoration: none;
  transition: all 0.2s ease;
}
.cst-google-source-box:hover {
  border-color: var(--black-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.cst-google-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.cst-google-text {
  font-family: var(--cst-font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.25;
}
.cst-google-text span {
  color: var(--theme-color-primary);
}

/* ==========================================================================
   5. MAIN EDITORIAL CONTENT SECTION
   ========================================================================== */
.cst-main-content-section {
  margin: 0 0 32px 0;
  padding: 0;
}
.cst-main-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  margin-bottom: 0;
}
.cst-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--black-color);
}
.cst-section-title {
  font-family: var(--cst-font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cst-section-title i {
  color: var(--theme-color-primary);
}

.cst-post-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cst-feed-card {
  background: #ffffff;
  border: 1px solid var(--border-color-primary);
  border-radius: 4px;
  padding: 18px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cst-feed-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}
.cst-feed-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  background: #eee;
}
.cst-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cst-feed-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cst-feed-cat {
  font-family: var(--cst-font-main);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--theme-color-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
  text-decoration: none;
}
.cst-feed-title {
  font-family: var(--cst-font-main);
  font-size: 19px;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.3;
  margin: 0 0 6px 0;
}
.cst-feed-title a {
  color: inherit;
  text-decoration: none;
}
.cst-feed-title a:hover {
  color: var(--theme-color-primary);
  text-decoration: underline;
}
.cst-feed-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ind-color);
  margin-bottom: 10px;
}
.cst-feed-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #757575;
}

/* PAGINATION */
.cst-pagination {
  margin-top: 24px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cst-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--border-color-primary);
  color: var(--black-color);
  font-family: var(--cst-font-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cst-pagination .page-numbers:hover,
.cst-pagination .page-numbers.current {
  background: var(--theme-color-primary);
  color: #ffffff;
  border-color: var(--theme-color-primary);
}

/* SIDEBAR */
.cst-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cst-widget-card {
  background: #ffffff;
  border: 1px solid var(--border-color-primary);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.cst-widget-header {
  border-bottom: 2px solid var(--black-color);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.cst-widget-title {
  font-family: var(--cst-font-main);
  font-size: 17px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cst-trending-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cst-trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cst-rank-num {
  font-family: var(--cst-font-main);
  font-size: 20px;
  font-weight: 700;
  color: #cbd5e1;
  line-height: 1;
  min-width: 22px;
}
.cst-trending-item:nth-child(1) .cst-rank-num { color: var(--theme-color-primary); }
.cst-trending-item:nth-child(2) .cst-rank-num { color: #3aa32c; }
.cst-trending-item:nth-child(3) .cst-rank-num { color: #84cc16; }
.cst-trending-body h4 {
  font-family: var(--cst-font-main);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.3;
  margin: 0 0 4px 0;
}
.cst-trending-body a {
  color: inherit;
  text-decoration: none;
}
.cst-trending-body a:hover {
  color: var(--theme-color-primary);
  text-decoration: underline;
}
.cst-trending-meta {
  font-size: 12px;
  color: #757575;
}

.cst-tool-pill {
  background: var(--cultured-color);
  border: 1px solid var(--border-color-primary);
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--black-color);
  transition: all 0.2s ease;
}
.cst-tool-pill:hover {
  background: #ffffff;
  border-color: var(--theme-color-primary);
  color: var(--theme-color-primary);
}
.cst-tool-pill i {
  color: var(--theme-color-primary);
}

.cst-newsletter-widget {
  background: linear-gradient(145deg, #111111 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 4px;
  padding: 22px;
}
.cst-news-badge {
  background: var(--theme-color-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}
.cst-newsletter-widget h3 {
  font-family: var(--cst-font-main);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #ffffff;
}
.cst-newsletter-widget p {
  font-size: 13px;
  color: #a8a8a8;
  line-height: 1.5;
  margin: 0 0 14px 0;
}
.cst-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cst-newsletter-input {
  background: #000000;
  border: 1px solid #334155;
  border-radius: 4px;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
}
.cst-newsletter-input:focus {
  border-color: var(--theme-color-primary);
}
.cst-newsletter-btn {
  background: var(--theme-color-primary);
  color: #ffffff;
  font-family: var(--cst-font-main);
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cst-newsletter-btn:hover {
  background: var(--theme-color-hover);
}

/* ==========================================================================
   6. MEGA FOOTER
   ========================================================================== */
.cst-footer {
  background: #111111;
  color: #a8a8a8;
  padding: 42px 0 24px;
  border-top: 1px solid #222222;
  margin-top: 0;
}
.cst-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}
.cst-footer-col h4 {
  font-family: var(--cst-font-main);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  letter-spacing: 0.5px;
}
.cst-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cst-footer-links a {
  color: #a8a8a8;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease;
}
.cst-footer-links a:hover {
  color: var(--theme-color-primary);
}
.cst-footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #777777;
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .cst-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cst-hero-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-color-primary);
    padding-top: 24px;
  }
  .cst-category-main-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cst-main-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cst-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .cst-desktop-menu {
    display: none !important;
  }
  .cst-mobile-menu-btn {
    display: inline-flex !important;
  }
  .cst-btn-subscribe {
    display: none !important;
  }
  .cst-nav-wrapper {
    height: 60px;
  }
  .cst-logo-text {
    font-size: 22px;
  }
  
  /* Hero Section on Mobile */
  .cst-hero-section {
    padding: 18px 0 22px;
  }
  .cst-hero-headline {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin: 0 0 8px 0;
  }
  .cst-hero-byline {
    font-size: 13.5px;
    margin-bottom: 8px;
  }
  .cst-hero-excerpt {
    font-size: 14px;
    line-height: 1.5;
  }
  .cst-tab-btn {
    padding: 12px 14px 10px;
    font-size: 14px;
  }
  .cst-hero-list-title {
    font-size: 16.5px;
  }
  
  /* 2x2 Grid collapses to 1 column on mobile */
  .cst-cats-2x2-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .cst-cat-block-title {
    font-size: 22px;
  }
  .cst-cat-feat-title {
    font-size: 17px;
  }

  /* Feed Cards on Mobile */
  .cst-feed-card {
    grid-template-columns: 1fr !important;
    padding: 16px;
    gap: 14px;
  }
  .cst-feed-title {
    font-size: 17.5px;
    margin-bottom: 4px;
  }
  .cst-feed-excerpt {
    font-size: 13.5px;
    margin-bottom: 8px;
  }
  
  /* Footer on Mobile */
  .cst-footer {
    padding: 32px 0 20px;
  }
  .cst-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .cst-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.cst-breadcrumbs {
  font-size: 13px;
  color: #64748b;
  margin: 16px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.cst-breadcrumbs a {
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.cst-breadcrumbs a:hover {
  color: var(--theme-color-primary);
}
.cst-sep {
  font-size: 10px;
  color: #94a3b8;
}
.cst-crumb-current {
  color: #64748b;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   SINGLE POST & ARTICLE TEMPLATE STYLES
   ========================================================================== */
.cst-single-article {
  padding-bottom: 50px;
}
.cst-single-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 44px;
  align-items: start;
}
.cst-single-main-col {
  display: flex;
  flex-direction: column;
}
.cst-article-header {
  margin-bottom: 24px;
}
.cst-article-cat-badge {
  display: inline-block;
  font-family: var(--cst-font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 8px;
}
.cst-article-cat-badge:hover {
  text-decoration: underline;
}
.cst-article-title {
  font-family: var(--cst-font-main);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--black-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.cst-article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  margin-bottom: 18px;
}
.cst-meta-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cst-author-avatar {
  border-radius: 50%;
  border: 2px solid var(--theme-color-primary);
}
.cst-author-info-text {
  display: flex;
  flex-direction: column;
}
.cst-byline-text {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black-color);
}
.cst-author-name {
  color: var(--theme-color-primary);
  text-decoration: none;
}
.cst-author-name:hover {
  text-decoration: underline;
}
.cst-post-date {
  font-size: 12px;
  color: #757575;
}
.cst-meta-read-stats {
  font-size: 13px;
  color: #757575;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* SOCIAL SHARE BAR */
.cst-social-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.cst-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black-color);
  margin-right: 4px;
}
.cst-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cst-share-btn:hover { opacity: 0.85; }
.cst-share-x { background: #000000; }
.cst-share-in { background: #0a66c2; }
.cst-share-fb { background: #1877f2; }
.cst-share-copy { background: #475569; }

/* COVER IMAGE */
.cst-article-cover {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #eee;
}
.cst-article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* ENTRY CONTENT FORMATTING (SEJ STANDARD TYPOGRAPHY) */
.cst-article-content {
  font-family: var(--cst-font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--black-color);
}
.cst-article-content p {
  margin: 0 0 24px 0;
}
.cst-article-content h2 {
  font-family: var(--cst-font-main);
  font-size: 28px;
  font-weight: 800;
  color: var(--black-color);
  margin: 40px 0 16px 0;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.cst-article-content h3 {
  font-family: var(--cst-font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--black-color);
  margin: 32px 0 14px 0;
  line-height: 1.3;
}
.cst-article-content h4 {
  font-family: var(--cst-font-main);
  font-size: 19px;
  font-weight: 700;
  color: var(--black-color);
  margin: 24px 0 12px 0;
}
.cst-article-content blockquote {
  border-left: 4px solid var(--theme-color-primary);
  background: #f8fafc;
  padding: 16px 22px;
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: #334155;
}
.cst-article-content ul, .cst-article-content ol {
  margin: 0 0 24px 0;
  padding-left: 28px;
}
.cst-article-content li {
  margin-bottom: 8px;
}
.cst-article-content a {
  color: var(--black-color);
  border-bottom: 2px solid var(--theme-color-primary);
  text-decoration: none;
  transition: all 0.2s;
}
.cst-article-content a:hover {
  color: var(--theme-color-primary);
}
.cst-article-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border: 1px solid #dedede;
  font-size: 15px;
}
.cst-article-content th, .cst-article-content td {
  padding: 12px 16px;
  border: 1px solid #dedede;
  text-align: left;
}
.cst-article-content th {
  background: #f1f5f9;
  font-weight: 700;
}

/* POST TAGS */
.cst-article-tags-wrap {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 16px 0;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cst-tags-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black-color);
}
.cst-tags-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cst-article-tag {
  background: var(--cultured-color);
  border: 1px solid #dedede;
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black-color);
  text-decoration: none;
  transition: all 0.2s;
}
.cst-article-tag:hover {
  background: var(--black-color);
  color: #ffffff;
  border-color: var(--black-color);
}

/* AUTHOR BIO CARD */
.cst-author-bio-card {
  background: var(--cultured-color);
  border: 1.5px solid #dedede;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.cst-bio-avatar {
  border-radius: 50%;
  border: 3px solid var(--theme-color-primary);
  flex-shrink: 0;
}
.cst-bio-body {
  display: flex;
  flex-direction: column;
}
.cst-bio-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cst-bio-name {
  font-family: var(--cst-font-main);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.cst-bio-name a {
  color: var(--black-color);
  text-decoration: none;
}
.cst-bio-name a:hover {
  color: var(--theme-color-primary);
}
.cst-bio-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--theme-color-primary);
  text-transform: uppercase;
}
.cst-bio-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ind-color);
  margin: 0 0 10px 0;
}
.cst-bio-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--theme-color-primary);
  text-decoration: none;
}
.cst-bio-link:hover { text-decoration: underline; }

/* RELATED POSTS SECTION */
.cst-related-posts-section {
  margin-bottom: 40px;
  border-top: 2px solid var(--black-color);
  padding-top: 20px;
}
.cst-related-title {
  font-family: var(--cst-font-main);
  font-size: 20px;
  font-weight: 800;
  color: var(--black-color);
  text-transform: uppercase;
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cst-related-title i { color: var(--theme-color-primary); }
.cst-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cst-related-card {
  display: flex;
  flex-direction: column;
}
.cst-related-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 10px;
}
.cst-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cst-related-content h4 {
  font-family: var(--cst-font-main);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.35;
  margin: 0 0 6px 0;
}
.cst-related-content a {
  color: inherit;
  text-decoration: none;
}
.cst-related-content a:hover {
  color: var(--theme-color-primary);
}
.cst-related-meta {
  font-size: 12px;
  color: #757575;
}

/* ==========================================================================
   ARCHIVE & CATEGORY BANNER
   ========================================================================== */
.cst-archive-header-section {
  background: var(--cultured-color);
  border-bottom: 1px solid var(--border-color-primary);
  padding: 24px 0 28px;
}
.cst-archive-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.cst-archive-main-title {
  font-family: var(--cst-font-main);
  font-size: 34px;
  font-weight: 800;
  color: var(--black-color);
  margin: 0;
  letter-spacing: -0.5px;
}
.cst-archive-count-badge {
  background: var(--honey-dev-color);
  color: #15803d;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.cst-archive-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ind-color);
  max-width: 800px;
  margin-top: 10px;
}

/* ==========================================================================
   AUTHOR PROFILE HERO SECTION
   ========================================================================== */
.cst-author-header-section {
  background: var(--cultured-color);
  border-bottom: 1px solid var(--border-color-primary);
  padding: 28px 0 32px;
}
.cst-author-profile-card {
  background: #ffffff;
  border: 1.5px solid #dedede;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.cst-author-card-avatar {
  flex-shrink: 0;
}
.cst-profile-img {
  border-radius: 50%;
  border: 4px solid var(--theme-color-primary);
}
.cst-author-card-info {
  display: flex;
  flex-direction: column;
}
.cst-author-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cst-author-profile-name {
  font-family: var(--cst-font-main);
  font-size: 28px;
  font-weight: 800;
  color: var(--black-color);
  margin: 0;
}
.cst-author-verified-badge {
  background: var(--honey-dev-color);
  color: #15803d;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.cst-author-profile-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ind-color);
  margin: 0 0 12px 0;
  max-width: 750px;
}
.cst-author-stats-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
}

@media (max-width: 768px) {
  .cst-single-layout {
    grid-template-columns: 1fr !important;
  }
  .cst-article-title {
    font-size: 26px !important;
  }
  .cst-author-bio-card {
    flex-direction: column;
  }
  .cst-related-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .cst-author-profile-card {
    flex-direction: column;
    text-align: center;
  }
  .cst-author-name-row {
    flex-direction: column;
    gap: 6px;
  }
}


/* ==========================================================================
   EXACT MOBILE MENU (MATCHING REFERENCE SCREENSHOT)
   ========================================================================== */
.cst-mob-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cst-mob-drawer-content {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 20px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  box-sizing: border-box;
}

/* 1. Top Drawer Header */
.cst-mob-drawer-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.cst-mob-close-icon {
  background: none;
  border: none;
  font-size: 24px;
  color: #000000;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.cst-mob-drawer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* 2. Sub-Heading: THE GUIDES 101 */
.cst-mob-section-label {
  font-family: var(--cst-font-main);
  font-size: 16px;
  font-weight: 800;
  color: #3b49df;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 24px 0 12px 0;
}

/* 3. Menu Links List with Plus [+] */
.cst-mob-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cst-mob-menu-links li {
  margin: 0;
  padding: 0;
}
.cst-mob-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-family: var(--cst-font-main);
  font-size: 17.5px;
  font-weight: 800;
  color: #0b132a;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.15s ease;
}
.cst-mob-menu-links a:hover {
  color: #3b49df;
}
.cst-mob-plus {
  font-size: 22px;
  font-weight: 800;
  color: #3b49df;
  line-height: 1;
}

/* 4. Bottom Search Pill Bar */
.cst-mob-search-container {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}
.cst-mob-search-pill-form {
  border: 1.5px solid #000000;
  border-radius: 28px;
  padding: 8px 16px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}
.cst-mob-search-pill-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  font-family: var(--cst-font-main);
  color: #334155;
  background: transparent;
}
.cst-mob-search-pill-input::placeholder {
  color: #94a3b8;
}
.cst-mob-search-pill-btn {
  background: none;
  border: none;
  font-size: 17px;
  color: #000000;
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ==========================================================================
   MOBILE OPTIMIZATIONS FOR SINGLE POST PAGE (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Layout & Container */
  .cst-single-article {
    padding-bottom: 32px;
  }
  .cst-single-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  /* Breadcrumbs on Mobile */
  .cst-breadcrumbs {
    font-size: 12px;
    margin: 12px 0 16px 0;
    gap: 4px;
  }
  .cst-crumb-current {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Article Header & Typography */
  .cst-article-header {
    margin-bottom: 18px;
  }
  .cst-article-cat-badge {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .cst-article-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: -0.3px;
  }

  /* Meta Bar Stack on Mobile */
  .cst-article-meta-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 12px 0 !important;
    margin-bottom: 16px !important;
  }
  .cst-meta-author-wrap {
    gap: 10px;
  }
  .cst-byline-text {
    font-size: 13.5px;
  }
  .cst-post-date {
    font-size: 11.5px;
  }
  .cst-meta-read-stats {
    font-size: 12px;
    gap: 6px;
  }

  /* Social Share Bar */
  .cst-social-share-bar {
    margin-bottom: 20px;
    gap: 8px;
  }
  .cst-share-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  /* Cover Image */
  .cst-article-cover {
    margin-bottom: 20px;
    border-radius: 4px;
  }

  /* Entry Content on Mobile */
  .cst-article-content {
    font-size: 16.5px !important;
    line-height: 1.7 !important;
  }
  .cst-article-content p {
    margin-bottom: 18px !important;
  }
  .cst-article-content h2 {
    font-size: 23px !important;
    line-height: 1.28 !important;
    margin: 30px 0 12px 0 !important;
  }
  .cst-article-content h3 {
    font-size: 19px !important;
    line-height: 1.3 !important;
    margin: 24px 0 10px 0 !important;
  }
  .cst-article-content h4 {
    font-size: 17px !important;
    margin: 20px 0 8px 0 !important;
  }
  .cst-article-content blockquote {
    font-size: 15.5px !important;
    padding: 12px 16px !important;
    margin: 20px 0 !important;
    border-left-width: 3px !important;
  }
  .cst-article-content ul, .cst-article-content ol {
    padding-left: 20px !important;
    margin-bottom: 18px !important;
  }
  .cst-article-content li {
    margin-bottom: 6px !important;
  }
  
  /* Tables Fluid Scroll on Mobile */
  .cst-article-content table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    font-size: 13.5px !important;
    margin: 18px 0 !important;
  }
  .cst-article-content th, .cst-article-content td {
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  /* Responsive Media / Iframes */
  .cst-article-content img {
    max-width: 100% !important;
    height: auto !important;
  }
  .cst-article-content iframe {
    max-width: 100% !important;
  }

  /* Post Tags on Mobile */
  .cst-article-tags-wrap {
    padding: 12px 0;
    margin: 24px 0;
    gap: 6px;
  }
  .cst-article-tag {
    font-size: 11.5px;
    padding: 4px 10px;
  }

  /* Author Bio Box on Mobile */
  .cst-author-bio-card {
    flex-direction: column !important;
    padding: 18px !important;
    gap: 14px !important;
    margin-bottom: 28px !important;
    text-align: left !important;
  }
  .cst-bio-avatar {
    width: 60px !important;
    height: 60px !important;
  }
  .cst-bio-name {
    font-size: 17px !important;
  }
  .cst-bio-desc {
    font-size: 13.5px !important;
  }

  /* Related Posts Grid on Mobile */
  .cst-related-posts-section {
    margin-bottom: 28px;
    padding-top: 16px;
  }
  .cst-related-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .cst-related-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Comments Form on Mobile */
  .comment-respond {
    margin-top: 24px;
  }
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
    width: 100% !important;
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
    padding: 10px 12px !important;
    border-radius: 4px !important;
    border: 1px solid #dedede !important;
    box-sizing: border-box !important;
  }
  .comment-form .form-submit input[type="submit"] {
    width: 100% !important;
    padding: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: var(--theme-color-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
  }
}
