/* LAYOUT 2: Toni Hasenbeck Campaign - Blue & Red */
:root { --blue: #002868; --blue-dark: #001a3d; --red: #BF0A30; --red-dark: #9a0826; --white: #fff; --gray-light: #f8f9fa; }

* { box-sizing: border-box; }
body { font-family: 'Libre Franklin', sans-serif; margin: 0; color: #222; }

/* ============================================
   Image Placeholders
   ============================================ */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px dashed;
  font-weight: 600;
}
.img-placeholder span { font-size: 1rem; }
.img-placeholder small { font-size: 0.8rem; opacity: 0.7; margin-top: 0.25rem; }
.img-placeholder-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
}
.img-placeholder-gray {
  background: #e8ecf0;
  border-color: #b0b8c0;
  color: #667;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 60px);
}
@media (max-width: 900px) {
  .hero-2 { grid-template-columns: 1fr; min-height: auto; }
  .hero-2-left { order: 2; min-height: 50vh; }
  .hero-2-right { order: 1; }
}
@media (max-width: 576px) {
  .nav-2 .container { padding: 0 1rem; }
  .nav-2-links { gap: 0.75rem; }
}

.hero-2-left {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-2-right {
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 3rem;
  justify-content: center;
}
@media (max-width: 900px) { 
  .hero-2-right { padding: 3rem 1.5rem; align-items: center; }
  .hero-2-content { margin: 0 auto; text-align: center; }
  .hero-2-name { text-align: center; }
  .hero-2-tag { text-align: center; }
  .hero-2 h1 { text-align: center; }
  .hero-2-tagline { text-align: center; }
  .hero-2 p { text-align: center; }
  .hero-2-buttons { justify-content: center; }
}

.hero-2-content { max-width: 600px; }
.hero-2-name {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #002868 !important;
  margin: 0 0 0.1rem !important;
  line-height: 1;
}
.hero-2-tag {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 1.25rem;
}
.hero-2 h1 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--blue); margin: 0.5rem 0 0.25rem; line-height: 1.15; }
.hero-2-tagline { font-size: 1.1rem; font-weight: 600; color: var(--blue); margin-bottom: 1rem; }
.hero-2 p { color: #444; margin-bottom: 1.5rem; line-height: 1.6; }
.hero-2 p.hero-2-name { color: #002868; margin-bottom: 0.1rem; line-height: 1; }
.hero-2-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================
   Video Section
   ============================================ */
.video-section {
  background: var(--gray-light);
  padding: 3rem 0;
}
.video-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .video-section {
    padding: 2rem 0;
  }
  .video-wrapper {
    border-radius: 0;
    margin: 0 -15px;
  }
}

/* ============================================
   Sticky Navigation
   ============================================ */
.nav-2 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-2 .container {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
.nav-2-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-2-logo {
  height: 45px;
  width: auto;
}
.nav-2-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
  line-height: 1.2;
}
.nav-2-subtitle {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .nav-2-logo { height: 36px; }
  .nav-2-title { font-size: 0.95rem; }
  .nav-2-subtitle { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .nav-2-subtitle { font-size: 0.6rem; }
}

.nav-2-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Toggle */
.nav-2-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--blue);
  cursor: pointer;
  padding: 0.25rem;
}
@media (max-width: 768px) {
  .nav-2-toggle { display: block; }
  .nav-2-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 0.75rem;
    align-items: flex-start;
  }
  .nav-2-links.open { display: flex !important; }
  .nav-2-links .nav-2-link { padding: 0.5rem 0; }
  .nav-2-links .nav-2-cta { margin-top: 0.5rem; padding: 0.5rem 2rem; }
  .nav-2 .container { position: relative; }
}
.nav-2-link {
  color: #555;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-2-link:hover { color: var(--red); }
.nav-2-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
}
.nav-2-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

/* Buttons */
.btn-2 { display: inline-block; padding: 0.75rem 1.75rem; font-weight: 700; text-decoration: none; border-radius: 4px; transition: 0.2s; font-size: 0.95rem; text-align: center; }
.btn-2-red { background: var(--red); color: var(--white) !important; border: 2px solid var(--red); }
.btn-2-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white) !important; transform: translateY(-2px); }
.btn-2-blue { background: var(--blue); color: var(--white) !important; border: 2px solid var(--blue); }
.btn-2-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white) !important; transform: translateY(-2px); }
.btn-2-blue-outline { background: transparent; color: var(--blue) !important; border: 2px solid var(--blue); }
.btn-2-blue-outline:hover { background: var(--blue); color: var(--white) !important; transform: translateY(-2px); }
.btn-2-white { background: var(--white) !important; color: var(--red) !important; border: 2px solid var(--white); }
.btn-2-white:hover { background: #f0f0f0 !important; color: var(--red) !important; transform: translateY(-2px); }
.btn-2-outline { background: transparent !important; color: var(--white) !important; border: 2px solid var(--white); }
.btn-2-outline:hover { background: rgba(255,255,255,0.2) !important; color: var(--white) !important; transform: translateY(-2px); }

/* ============================================
   Bio Section
   ============================================ */
.bio-section { padding: 5rem 2rem; background: var(--gray-light); }
.bio-grid { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; max-width: 1300px; margin: 0 auto; align-items: start; }
@media (max-width: 768px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-img-col .img-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: 8px; }
.bio-img { width: 100%; border-radius: 8px; object-fit: cover; }
.bio-content-col h2 { color: var(--blue); font-size: 1.75rem; margin-bottom: 1.25rem; }
.bio-content-col p { line-height: 1.7; margin-bottom: 1rem; }

/* ============================================
   Proven Conservative Section
   ============================================ */
.proven-section { padding: 5rem 2rem; background: var(--white); }
.proven-title {
  text-align: center;
  color: var(--red);
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
}
.proven-intro {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .proven-intro { grid-template-columns: 1fr; }
  .proven-intro-img { max-width: 400px; margin: 0 auto; }
}
.proven-intro-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.proven-header { text-align: left; }
.proven-lead { font-size: 1.15rem; line-height: 1.7; }
.proven-stat { font-size: 1.25rem; color: var(--blue); margin: 1.5rem 0; }
.proven-callout {
  background: var(--blue);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.15rem;
  text-align: center;
  max-width: 1400px;
  margin: 2rem auto 3rem;
  line-height: 1.6;
}

.proven-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1400px; margin: 0 auto; }
@media (max-width: 900px) { .proven-grid { grid-template-columns: 1fr; } }
.proven-card { background: var(--gray-light); padding: 1.75rem; border-radius: 8px; border-left: 4px solid var(--red); }
.proven-card-wide { grid-column: 1 / -1; }
.proven-card-icon { font-size: 1.5rem; color: var(--red); margin-bottom: 0.75rem; }
.proven-card h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 0.75rem; }
.proven-card p { font-size: 0.95rem; line-height: 1.65; margin-bottom: 0.75rem; }
.proven-card ul { margin: 0; padding-left: 1.25rem; font-size: 0.95rem; line-height: 1.65; }
.proven-card li { margin-bottom: 0.5rem; }
.proven-card em { color: var(--red); font-style: normal; font-weight: 600; font-size: 0.85rem; }
.proven-list-cols { column-count: 2; column-gap: 2rem; }
@media (max-width: 700px) { .proven-list-cols { column-count: 1; } }

.proven-footer { max-width: 1000px; margin: 3rem auto 0; text-align: center; }
.proven-footer p { font-size: 1.1rem; line-height: 1.7; }

/* ============================================
   Vote Banner Section
   ============================================ */
.vote-banner {
  background: var(--red);
  padding: 3.5rem 2rem;
  text-align: center;
}
.vote-banner .container {
  max-width: 1000px;
}
.vote-banner-text {
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
.vote-banner .btn-2 {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ============================================
   Platform Section
   ============================================ */
.platform-section { padding: 5rem 2rem; background: var(--blue); color: var(--white); }
.platform-header { text-align: center; margin-bottom: 3rem; }
.platform-header h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.platform-subtitle { font-size: 1.15rem; opacity: 0.95; }

.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1400px; margin: 0 auto; }
@media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr; } }
.platform-card { background: rgba(255,255,255,0.08); padding: 1.75rem; border-radius: 8px; position: relative; }
.platform-num { position: absolute; top: -0.75rem; left: 1rem; background: var(--red); color: var(--white); width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.platform-card h3 { color: var(--white); font-size: 1.05rem; margin: 0.5rem 0 0.75rem; padding-right: 1.5rem; }
.platform-card > p { font-size: 0.95rem; opacity: 0.95; margin-bottom: 1rem; }
.platform-card ul { margin: 0; padding-left: 1.25rem; font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }
.platform-card li { margin-bottom: 0.5rem; }

/* ============================================
   Awards Section
   ============================================ */
.awards-2 { background: var(--gray-light); padding: 4rem 2rem; }
.awards-2-title {
  text-align: center;
  font-size: 2.25rem;
  color: var(--blue);
  margin-bottom: 2.5rem;
}
.awards-2-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 900px) {
  .awards-2-grid { grid-template-columns: 1fr; }
  .awards-2-img { order: -1; max-width: 300px; margin: 0 auto; }
}
.awards-2-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.awards-2-content { text-align: left; }
.awards-2-sub { color: #555; margin-bottom: 1.5rem; font-size: 1.1rem; }
.awards-2-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 600px) { .awards-2-strip { grid-template-columns: 1fr; } }
.award-2-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 6px;
  border-top: 4px solid var(--red);
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.award-2-org { display: block; font-weight: 700; color: var(--blue); font-size: 0.95rem; margin-bottom: 0.25rem; }
.award-2-name { font-size: 0.9rem; color: #555; }

/* ============================================
   Experience Section
   ============================================ */
.experience-section { padding: 5rem 2rem; background: var(--white); }
.experience-title {
  text-align: center;
  color: var(--blue);
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.experience-intro {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .experience-intro { grid-template-columns: 1fr; }
  .experience-intro-img { max-width: 400px; margin: 0 auto; }
}
.experience-intro-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.experience-header { text-align: left; }
.experience-lead { font-size: 1.1rem; line-height: 1.7; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
@media (max-width: 700px) { .experience-grid { grid-template-columns: 1fr; } }
.experience-col h3 { color: var(--red); font-size: 1.25rem; margin-bottom: 1.25rem; border-bottom: 2px solid var(--red); padding-bottom: 0.5rem; }
.exp-item { margin-bottom: 1.25rem; line-height: 1.5; }
.exp-item strong { color: var(--blue); }
.exp-item em { font-style: normal; color: #666; font-size: 0.9rem; }

/* CV Sections */
.cv-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}
.cv-section-title {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Coursework Grid */
.coursework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .coursework-grid { grid-template-columns: 1fr; } }
.course-item {
  background: var(--gray-light);
  padding: 1.25rem;
  border-radius: 6px;
  border-left: 3px solid var(--red);
}
.course-item strong {
  color: var(--blue);
  display: block;
  margin-bottom: 0.5rem;
}
.course-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

/* Professional Development Timeline */
.pd-timeline {
  max-width: 900px;
  margin: 0 auto;
}
.pd-year {
  margin-bottom: 2rem;
}
.pd-year h4 {
  color: var(--red);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
}
.pd-item {
  background: var(--gray-light);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.pd-item strong {
  color: var(--blue);
}
.pd-item span {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.25rem;
}

/* Other PD Items */
.pd-other {
  max-width: 900px;
  margin: 0 auto 2rem;
}
.pd-other .pd-item {
  margin-bottom: 1rem;
}

/* Great Expectations Summary */
.ge-summary {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid var(--red);
}
.ge-summary h4 {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.ge-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.ge-locations h5 {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.ge-locations ul {
  margin: 0;
  padding-left: 1.25rem;
}
.ge-locations li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.ge-locations em {
  font-size: 0.85rem;
  color: #666;
}

/* Accomplishments */
.accomplishments-box {
  background: var(--blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.accomplishments-box h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.accomplishments-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  margin: 0;
  padding-left: 1.25rem;
}
@media (max-width: 600px) { .accomplishments-list { grid-template-columns: 1fr; } }
.accomplishments-list li {
  margin-bottom: 0.25rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-2 { background: var(--red); padding: 5rem 2rem; }
.cta-2-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-2-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-2-img { max-width: 280px; margin: 0 auto; }
}
.cta-2-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.cta-2-content { text-align: left; }
@media (max-width: 900px) { .cta-2-content { text-align: center; } }
.cta-2 h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.cta-2-tagline { color: rgba(255,255,255,0.95); font-size: 1.25rem; font-style: italic; margin-bottom: 1.5rem; }
.cta-2-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-2-btns { justify-content: center; } }

/* ============================================
   Contact Section
   ============================================ */
.contact-section { padding: 4rem 2rem; background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-col h3 { color: var(--blue); font-size: 1.25rem; margin-bottom: 1rem; }
.contact-col p { line-height: 1.6; margin-bottom: 0.75rem; }
.contact-col a { color: var(--red); }

/* ============================================
   Footer
   ============================================ */
.footer-2 { background: var(--blue); color: rgba(255,255,255,0.9); }
.footer-2-legal { font-size: 0.85rem; opacity: 0.8; }
@media (max-width: 576px) {
  .footer-2 .container { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   Mobile Optimizations
   ============================================ */
@media (max-width: 576px) {
  .btn-2 { width: 100%; }
  .hero-2-buttons { flex-direction: column; }
  .cta-2-btns { flex-direction: column; align-items: center; }
  .cta-2-btns .btn-2 { width: 100%; max-width: 280px; }
}

/* ============================================
   Signup Page
   ============================================ */
.signup-section {
  background: var(--gray-light);
  min-height: calc(100vh - 60px);
}
.signup-page-title {
  text-align: center;
  color: var(--blue);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.signup-sidebar {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--blue);
}
.signup-sidebar h2 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.signup-sidebar p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.donate-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--red);
}
.donate-card h3 {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.donate-card p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.donate-card a:not(.btn-2) {
  color: var(--red);
}
.signup-image {
  margin-bottom: 1.5rem;
}
.signup-image img {
  width: 100%;
  border-radius: 8px;
}
.signup-form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.signup-form-card h3 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.signup-form-card .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}
.signup-form-card .form-control,
.signup-form-card .form-select {
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 0.6rem 0.75rem;
}
.signup-form-card .form-control:focus,
.signup-form-card .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0,40,104,0.1);
}
.signup-form-card .form-check-label {
  color: #555;
}
.signup-form-card .form-check-input:checked {
  background-color: var(--red);
  border-color: var(--red);
}
.ideas-logo-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.ideas-logo-card img {
  max-width: 250px;
}

/* Event Types List */
.event-types-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-types-list li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.event-types-list i {
  color: var(--red);
}

/* Form Section Titles */
.form-section-title {
  color: var(--blue);
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  margin-bottom: 0.5rem;
}

/* ============================================
   Media Page
   ============================================ */
.media-section {
  background: var(--white);
  min-height: calc(100vh - 200px);
}
.media-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 2rem;
  text-align: center;
}
.press-release {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gray-light);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.press-release-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.press-release-label {
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.press-release-date {
  color: #666;
  font-size: 0.95rem;
}
.press-release-contact {
  margin-bottom: 1.5rem;
  color: #555;
}
.press-release-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.press-release-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #333;
}
.press-release-divider {
  height: 2px;
  background: var(--red);
  margin: 2.5rem 0;
}
.speech-transcript {
  margin-top: 2rem;
}
.speech-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-align: center;
}
.speech-subheader {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  margin-bottom: 0.25rem;
}
.speech-date {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}
.speech-body p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 768px) {
  .press-release {
    padding: 1.5rem;
    border-radius: 0;
    margin: 0 -15px;
  }
  .press-release-title {
    font-size: 1.25rem;
  }
}
