/*
Theme Name: OTC Magazine
Theme URI: https://offthecuff.nz
Author: Aotearoa Media Ltd
Author URI: https://offthecuff.nz
Description: Official theme for Off The Cuff Magazine — New Zealand's Voice. Our Stories. Our Future. Bold editorial design in red, black and white for offthecuff.nz.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://offthecuff.nz
Text Domain: otc-magazine
Tags: news, magazine, blog, custom-colors, custom-logo, custom-menu, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* ==========================================================================
   OTC MAGAZINE — MASTER STYLESHEET
   Brand: Red #B22222, Black #0A0A0A, Off-white #F5F3EE
   ========================================================================== */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

/* CSS VARIABLES */
:root {
  --otc-red: #B22222;
  --otc-red-dark: #8B0000;
  --otc-black: #0A0A0A;
  --otc-off-white: #F5F3EE;
  --otc-warm-gray: #E8E4DC;
  --otc-text: #1A1A1A;
  --otc-muted: #6B6460;
  --otc-max-width: 1200px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', Georgia, serif;
  background: #fff;
  color: var(--otc-text);
  font-size: 17px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--otc-red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4,h5,h6 { line-height: 1.15; }

/* CONTAINER */
.otc-container {
  max-width: var(--otc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.otc-topbar {
  background: var(--otc-black);
  color: #aaa;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 0;
}
.otc-topbar .otc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.otc-topbar a { color: #aaa; }
.otc-topbar a:hover { color: var(--otc-red); text-decoration: none; }
.otc-topbar-right { display: flex; gap: 20px; }

/* ==========================================================================
   HEADER / MASTHEAD
   ========================================================================== */
.otc-header {
  background: #fff;
  border-bottom: 3px solid var(--otc-black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.otc-header-inner {
  display: flex;
  align-items: stretch;
  min-height: 72px;
}
.otc-logo-wrap {
  display: flex;
  align-items: center;
  padding: 10px 28px 10px 0;
  border-right: 2px solid var(--otc-black);
  margin-right: 0;
  text-decoration: none;
}
.otc-logo-otc {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 54px;
  color: var(--otc-red);
  line-height: 1;
  letter-spacing: -.02em;
  display: block;
}
.otc-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--otc-black);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}
.otc-logo-wrap:hover { text-decoration: none; }

/* PRIMARY NAV */
.otc-nav {
  display: flex;
  align-items: center;
  flex: 1;
}
.otc-nav ul {
  list-style: none;
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
}
.otc-nav ul li { height: 100%; }
.otc-nav ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--otc-black);
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid #e0ddd6;
  transition: background .15s, color .15s;
}
.otc-nav ul li a:hover,
.otc-nav ul li.current-menu-item a {
  background: var(--otc-black);
  color: #fff;
  text-decoration: none;
}
.otc-nav ul li.current-menu-item a { background: var(--otc-red); }

/* HEADER CTA */
.otc-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 20px;
}
.otc-btn-login {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--otc-black);
  border: 2px solid var(--otc-black);
  padding: 8px 14px;
  transition: all .15s;
  background: none;
  cursor: pointer;
}
.otc-btn-login:hover { background: var(--otc-black); color: #fff; text-decoration: none; }
.otc-btn-subscribe {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--otc-red);
  padding: 10px 20px;
  transition: background .15s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.otc-btn-subscribe:hover { background: var(--otc-red-dark); color: #fff; text-decoration: none; }

/* MOBILE TOGGLE */
.otc-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* ==========================================================================
   BREAKING NEWS TICKER
   ========================================================================== */
.otc-ticker {
  background: var(--otc-red);
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.otc-ticker-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--otc-red-dark);
  padding: 4px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 24px;
}
.otc-ticker-track {
  overflow: hidden;
  flex: 1;
  padding: 0 20px;
}
.otc-ticker-inner {
  display: flex;
  gap: 60px;
  animation: otcTicker 25s linear infinite;
  white-space: nowrap;
}
.otc-ticker-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  letter-spacing: .04em;
  flex-shrink: 0;
}
@keyframes otcTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION LABELS
   ========================================================================== */
.otc-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--otc-red);
  border-left: 4px solid var(--otc-red);
  padding-left: 10px;
  margin-bottom: 24px;
  display: block;
}
.otc-section-bar {
  background: var(--otc-black);
  padding: 8px 24px;
  margin-bottom: 0;
}
.otc-section-bar .otc-section-label {
  color: var(--otc-red);
  border-color: var(--otc-red);
  margin-bottom: 0;
}

/* ==========================================================================
   HERO / FRONT PAGE LAYOUT
   ========================================================================== */
.otc-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  border-bottom: 3px solid var(--otc-black);
}
.otc-hero-main {
  background: var(--otc-black);
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  overflow: hidden;
}
.otc-hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  z-index: 1;
}
.otc-hero-main .otc-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.otc-hero-content { position: relative; z-index: 2; }
.otc-hero-issue {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--otc-red);
  margin-bottom: 14px;
  display: block;
}
.otc-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: .95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.otc-hero-headline span { color: var(--otc-red); }
.otc-hero-deck {
  font-size: 15px;
  color: #bbb;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.otc-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.otc-cat-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--otc-red);
  color: #fff;
  padding: 4px 10px;
  display: inline-block;
}
.otc-cat-tag.dark {
  background: var(--otc-black);
  border: 1px solid #333;
}
.otc-hero-byline { color: #888; font-size: 13px; }
.otc-hero-read {
  margin-left: auto;
  color: var(--otc-red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* HERO SIDEBAR */
.otc-hero-sidebar {
  border-left: 3px solid var(--otc-black);
  display: flex;
  flex-direction: column;
}
.otc-sidebar-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--otc-black);
  color: #fff;
  padding: 10px 18px;
}
.otc-sidebar-item {
  padding: 16px 18px;
  border-bottom: 1px solid #ddd;
  transition: background .12s;
  cursor: pointer;
}
.otc-sidebar-item:hover { background: var(--otc-off-white); }
.otc-sidebar-item:last-child { border-bottom: none; }
.otc-si-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--otc-red);
  margin-bottom: 4px;
  display: block;
}
.otc-si-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  color: var(--otc-black);
}
.otc-si-meta {
  font-size: 12px;
  color: var(--otc-muted);
  margin-top: 5px;
}
.otc-si-title a { color: var(--otc-black); }
.otc-si-title a:hover { color: var(--otc-red); text-decoration: none; }

/* ==========================================================================
   CONTENT GRID
   ========================================================================== */
.otc-content-section { padding: 44px 0; }
.otc-content-section + .otc-content-section {
  border-top: 1px solid var(--otc-warm-gray);
}

.otc-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}
.otc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.otc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* FEATURED ARTICLE (large) */
.otc-article-featured .otc-art-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--otc-red);
  margin-bottom: 10px;
  display: block;
}
.otc-article-featured h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--otc-black);
  margin-bottom: 14px;
}
.otc-article-featured p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4540;
  margin-bottom: 16px;
}
.otc-article-featured .otc-read-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--otc-red);
  border-bottom: 2px solid var(--otc-red);
  padding-bottom: 2px;
}
.otc-article-featured .otc-read-more:hover { text-decoration: none; color: var(--otc-red-dark); }

/* STACKED ARTICLES */
.otc-article-stack { display: flex; flex-direction: column; gap: 22px; }
.otc-article-stack-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--otc-warm-gray);
}
.otc-article-stack-item:last-child { border-bottom: none; padding-bottom: 0; }
.otc-art-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--otc-red);
  display: block;
  margin-bottom: 4px;
}
.otc-art-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.15;
  color: var(--otc-black);
  margin-bottom: 6px;
}
.otc-art-title a { color: var(--otc-black); }
.otc-art-title a:hover { color: var(--otc-red); text-decoration: none; }
.otc-art-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--otc-muted);
  margin-bottom: 6px;
}
.otc-art-byline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #aaa;
}

/* ==========================================================================
   REGULAR COLUMNS STRIP
   ========================================================================== */
.otc-regulars {
  background: var(--otc-off-white);
  padding: 36px 0;
  border-top: 3px solid var(--otc-black);
  border-bottom: 3px solid var(--otc-black);
}
.otc-regulars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 22px;
}
.otc-reg-item {
  padding: 18px 22px;
  border-right: 1px solid #d0ccc4;
  cursor: pointer;
  transition: background .15s;
}
.otc-reg-item:last-child { border-right: none; }
.otc-reg-item:hover { background: #ede9e0; }
.otc-reg-icon { font-size: 26px; margin-bottom: 8px; }
.otc-reg-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--otc-black);
  line-height: 1.1;
  margin-bottom: 4px;
}
.otc-reg-desc { font-size: 12px; color: var(--otc-muted); }

/* ==========================================================================
   SUBSCRIBE BAND
   ========================================================================== */
.otc-subscribe-band {
  background: var(--otc-black);
  padding: 56px 0;
}
.otc-subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.otc-sub-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--otc-red);
  margin-bottom: 12px;
  display: block;
}
.otc-sub-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  text-transform: uppercase;
  line-height: .95;
  color: #fff;
  margin-bottom: 0;
}
.otc-sub-headline span { color: var(--otc-red); }
.otc-sub-body {
  font-size: 15px;
  color: #aaa;
  margin-top: 18px;
  line-height: 1.65;
}
.otc-sub-perks { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.otc-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
}
.otc-perk-dot { width: 6px; height: 6px; background: var(--otc-red); flex-shrink: 0; }

.otc-sub-box {
  background: #fff;
  padding: 36px;
}
.otc-sub-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 60px;
  color: var(--otc-black);
  line-height: 1;
}
.otc-sub-price span { font-size: 24px; color: var(--otc-muted); }
.otc-sub-period {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--otc-muted);
  margin-top: 4px;
  margin-bottom: 22px;
  display: block;
}

/* ==========================================================================
   ARCHIVE / ISSUES GRID
   ========================================================================== */
.otc-issues { padding: 44px 0; background: var(--otc-off-white); }
.otc-issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.otc-issue-card {
  background: #fff;
  border: 1px solid #ddd;
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
}
.otc-issue-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.otc-issue-cover {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 54px;
  letter-spacing: -.02em;
}
.otc-issue-cover.issue-1 { background: var(--otc-black); color: var(--otc-red); }
.otc-issue-cover.issue-2 { background: #1a2744; color: #8fb3e8; }
.otc-issue-cover.issue-3 { background: #1c3a1c; color: #8fd68f; }
.otc-issue-cover.issue-4 { background: #2d1a00; color: #f5a623; }
.otc-issue-info { padding: 14px; }
.otc-issue-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--otc-muted);
}
.otc-issue-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--otc-black);
  margin-top: 3px;
  line-height: 1.2;
}
.otc-issue-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--otc-red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.otc-issue-lock {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: var(--otc-muted);
  font-size: 14px;
}

/* ==========================================================================
   SINGLE ARTICLE
   ========================================================================== */
.otc-single { padding: 48px 0; }
.otc-single-inner { max-width: 740px; margin: 0 auto; }
.otc-single-header { margin-bottom: 32px; }
.otc-single-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--otc-red);
  margin-bottom: 12px;
  display: block;
}
.otc-single-headline {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--otc-black);
  margin-bottom: 18px;
}
.otc-single-deck {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4540;
  border-left: 4px solid var(--otc-red);
  padding-left: 18px;
  margin-bottom: 20px;
}
.otc-single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--otc-black);
  margin-bottom: 28px;
}
.otc-single-author { color: var(--otc-black); font-weight: 700; }
.otc-single-content { font-size: 17px; line-height: 1.75; }
.otc-single-content p { margin-bottom: 22px; }
.otc-single-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--otc-black);
  margin: 32px 0 14px;
  border-left: 4px solid var(--otc-red);
  padding-left: 12px;
}
.otc-single-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--otc-black);
  margin: 24px 0 10px;
}
.otc-single-content blockquote {
  background: var(--otc-off-white);
  border-left: 5px solid var(--otc-red);
  padding: 20px 24px;
  margin: 28px 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--otc-black);
}

/* SUBSCRIBER GATE */
.otc-paywall {
  margin-top: 24px;
  background: linear-gradient(to bottom, transparent, #fff 40%);
  padding-top: 60px;
  text-align: center;
}
.otc-paywall-box {
  background: var(--otc-black);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}
.otc-paywall-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.otc-paywall-box p { color: #aaa; font-size: 15px; margin-bottom: 20px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.otc-footer {
  background: var(--otc-black);
  color: #fff;
  padding: 48px 0 20px;
}
.otc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #222;
}
.otc-footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--otc-red);
  line-height: 1;
  display: block;
}
.otc-footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-top: 4px;
  margin-bottom: 14px;
}
.otc-footer-about { font-size: 13px; color: #777; line-height: 1.65; }
.otc-footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}
.otc-footer-col ul { list-style: none; }
.otc-footer-col ul li { margin-bottom: 9px; }
.otc-footer-col ul li a {
  color: #777;
  font-size: 13px;
  transition: color .15s;
}
.otc-footer-col ul li a:hover { color: var(--otc-red); text-decoration: none; }
.otc-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  color: #444;
}
.otc-footer-network { color: #555; }
.otc-footer-network span { color: var(--otc-red); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.otc-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: all .15s;
  border: none;
}
.otc-btn-primary { background: var(--otc-red); color: #fff; }
.otc-btn-primary:hover { background: var(--otc-red-dark); color: #fff; text-decoration: none; }
.otc-btn-secondary { background: transparent; color: var(--otc-black); border: 2px solid var(--otc-black); }
.otc-btn-secondary:hover { background: var(--otc-black); color: #fff; text-decoration: none; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.otc-form-group { margin-bottom: 14px; }
.otc-form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--otc-black);
  display: block;
  margin-bottom: 6px;
}
.otc-form-group input,
.otc-form-group select,
.otc-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
  background: #fff;
}
.otc-form-group input:focus,
.otc-form-group select:focus,
.otc-form-group textarea:focus { border-color: var(--otc-red); }

/* ==========================================================================
   UTILITY
   ========================================================================== */
.otc-divider { border: none; border-top: 1px solid var(--otc-warm-gray); margin: 0; }
.otc-divider-heavy { border: none; border-top: 3px solid var(--otc-black); margin: 0; }
.otc-subscriber-only { position: relative; }
.otc-subscriber-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--otc-red);
  color: #fff;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .otc-grid-3 { grid-template-columns: 1fr 1fr; }
  .otc-grid-3 .otc-article-featured { grid-column: 1 / -1; }
  .otc-hero { grid-template-columns: 1fr; }
  .otc-hero-sidebar { border-left: none; border-top: 3px solid var(--otc-black); }
  .otc-regulars-grid { grid-template-columns: repeat(2, 1fr); }
  .otc-footer-grid { grid-template-columns: 1fr 1fr; }
  .otc-issues-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .otc-nav { display: none; }
  .otc-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 2px solid var(--otc-black); z-index: 200; }
  .otc-nav.open ul { flex-direction: column; height: auto; }
  .otc-nav.open ul li { height: auto; }
  .otc-nav.open ul li a { border-right: none; border-bottom: 1px solid #eee; padding: 14px 20px; }
  .otc-menu-toggle { display: block; }
  .otc-hero-main { padding: 28px; min-height: 380px; }
  .otc-hero-headline { font-size: 38px; }
  .otc-subscribe-inner { grid-template-columns: 1fr; }
  .otc-grid-3, .otc-grid-2, .otc-grid-4 { grid-template-columns: 1fr; }
  .otc-regulars-grid { grid-template-columns: 1fr; }
  .otc-footer-grid { grid-template-columns: 1fr; }
  .otc-issues-grid { grid-template-columns: 1fr 1fr; }
  .otc-single-headline { font-size: 28px; }
}
