/* ============================================================
   SINGLE-COLUMN CONTACT PAGE STYLES
   New layout focused on scheduling and form contact
   ============================================================ */

/* Simple Header (no banner) */
.contact-simple-header {
  padding: 3rem 1rem 2rem;
  background: #f8fafe;
  border-bottom: 1px solid #e5e7eb;
}

.contact-simple-header .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-simple-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #16324f;
}

.contact-simple-header .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #5d7288;
  margin: 0;
}

/* Calendly Section */
.calendly-section {
  padding: 3rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.calendly-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.calendly-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #16324f;
}

.calendly-subtext {
  font-size: 1.1rem;
  color: #5d7288;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.calendly-cta {
  margin-top: 2rem;
}

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.calendly-note {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0.75rem 0 0 0;
  font-style: italic;
}

/* Single Contact Form Section */
.single-contact-form-section {
  padding: 3rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.single-contact-form-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #16324f;
}

.form-subtext {
  font-size: 1.1rem;
  color: #5d7288;
  margin: 0;
  line-height: 1.6;
}

.form-wrapper {
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 1.5rem 2rem;
    border-radius: 12px;
  }
}

/* Contact Methods Simple */
.contact-methods-simple {
  padding: 3rem 1rem;
  background: #f8fafe;
}

.contact-methods-simple .container {
  max-width: 900px;
  margin: 0 auto;
}

.methods-header {
  text-align: center;
  margin-bottom: 2rem;
}

.methods-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #16324f;
}

.methods-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.method-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  aspect-ratio: 2.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.method-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.method-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #16324f;
  margin-bottom: 0.25rem;
}

.method-value a {
  color: #2f80ed;
  text-decoration: none;
}

.method-value a:hover {
  text-decoration: underline;
}

.method-note {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0.5rem;
  font-style: italic;
}

.phone-wrapper {
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (min-width: 768px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   ORIGINAL STYLES (for backward compatibility)
   ============================================================ */

/* Minimal, Arcana-friendly blog styles */
.posts-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.25rem; }
@media (max-width: 980px){ .posts-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 640px){ .posts-grid{ grid-template-columns:1fr; } }
.post-card { border:1px solid #e5e7eb; border-radius:12px; overflow:hidden; background:#fff; display:flex; flex-direction:column; --read-more-offset:1.25rem; }
.post-card .image img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.post-card .content { flex:1; display:flex; flex-direction:column; padding:1rem 1rem var(--read-more-offset); }
.post-card h2 {
    margin:.25rem 0 .5rem;
    font-size:clamp(1.25rem,2.4vw,1.5rem);
    line-height:1.3;
}
 
.post-card h2 a,
.post-card h2 a:hover,
.post-card h2 a:focus {
  font-size:inherit;
  text-decoration:none;
  color:rgb(71, 71, 71);
  border-bottom: none;
}
.post-card .meta { color:#6b7280; font-size:.9rem; margin:.25rem 0 .5rem; }
.tags { display:flex; gap:.35rem; flex-wrap:wrap; margin:0 0 .2rem; }
.tag { font-size:.75rem; padding:.15rem .5rem; border:1px solid #e5e7eb; border-radius:999px; background:#fafafa; }
.post-card-summary { font-size:1.1rem; line-height:1.55; margin:.1rem 0 .9rem; font-weight:400; }
.post-card .content .read-more { margin-top:auto; padding-top:.6rem; text-align:center; }
.post .hero-wrap { margin:0 0 1rem; }
.post .hero { width:100%; aspect-ratio:1536/512; object-fit:cover; border:1px solid #e5e7eb; border-radius:12px; }
.post .content img { max-width:100%; border-radius:10px; border:1px solid #e5e7eb; }
.related { margin-top:2rem; padding-top:1rem; border-top:1px solid #e5e7eb; }
.share { margin-top:1.25rem; display:flex; gap:.75rem; align-items:center; }

.post.container {
  max-width: 760px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem 2.5rem;
}

.post.container header {
  margin-bottom: 1.6rem;
}

.post.container header h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.post.container .meta {
  color: #4b5563;
  font-size: 0.95rem;
  margin: 0;
}

.post.container .tags {
  margin: 0.55rem 0 0;
}

.post.container .content > *:first-child {
  margin-top: 0;
}
                    

.wrapper.style1 {
    padding: 0 0 1em 0;
}

header.major {
    margin: 0 0 0 0;
}

.blog-bottom-band {
    background: none;
}

.blog-major h1 {
    font-size: clamp(1rem,3vw,1.5rem);
    margin:  .5em 0 .5em 0;
}

article.post.container h1 {
   font-size: 50px; 
}


.post.container, .post.container .content {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

/* General typography for post body */
.post.container {
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 1.65;
  font-size: 1.15rem; /* normalize text size relative to site */
  font-weight: 400;
}

/* ========================================================================
   CONTACT HEADER STYLES
   ======================================================================== */

.contact-header {
  padding: 4.5rem 0 2rem;
}

.contact-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: end;
}

.contact-header .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color, #2f80ed);
  margin-bottom: 0.9rem;
}

.contact-header h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.contact-header p.lead {
  margin: 0;
  max-width: 60ch;
  color: #5d7288;
  font-size: 1.07rem;
}

.contact-header-note {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(215, 227, 239, 0.9);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 8px 24px rgba(20, 48, 82, 0.06);
  color: var(--text-color, #16324f);
}

.contact-header-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-header {
    padding: 3rem 0 1.5rem;
  }
  
  .contact-header-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  
  .contact-header h1 {
    max-width: none;
  }
}

/* ========================================================================
   CONTACT METHODS (RIGHT PANEL) STYLES
   ======================================================================== */

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-method {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-method__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-method__body {
  flex: 1;
  min-width: 0;
}

.contact-method__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d7288;
  margin: 0 0 0.25rem;
}

.contact-method__value {
  display: block;
  font-weight: 500;
  color: #16324f;
  font-size: 0.95rem;
}

.contact-method__value a {
  color: inherit;
  text-decoration: none;
}

.contact-method__value a:hover {
  color: #2f80ed;
  text-decoration: underline;
}

.contact-method__note {
  display: block;
  font-size: 0.85rem;
  color: #5d7288;
  margin-top: 0.2rem;
}

/* Social methods styling */
.contact-method--social .contact-method__icon svg {
  border-radius: 4px;
}

/* Info panel heading */
.info-panel__heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #16324f;
  letter-spacing: -0.01em;
}

/* ========================================================================
   PROCESS STEPS (RIGHT PANEL) STYLES
   ======================================================================== */

.process-steps-section {
  /* Already inherits from .info-section */
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #2f80ed;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-title {
  display: block;
  font-weight: 600;
  color: #16324f;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.step-text {
  display: block;
  font-size: 0.85rem;
  color: #5d7288;
  line-height: 1.4;
}

/* Info section general styling */
.info-section {
  margin-bottom: 1.5rem;
}

.info-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #16324f;
  letter-spacing: -0.01em;
}

/* ========================================================================
   BASIC CONTACT FORM STYLES (POC-based)
   ======================================================================== */

.basic-contact-section {
  padding: 1.5rem 0 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.82fr);
  gap: 1.5rem;
  align-items: start;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(215, 227, 239, 0.95);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(14, 41, 71, 0.10);
}

.form-card {
  padding: 1.75rem;
}

.card h2,
.card h3 {
  margin: 0 0 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #16324f;
}

.card .subtext {
  margin: 0 0 1.25rem;
  color: #5d7288;
  font-size: 0.97rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Form field spacing and layout */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-group:not(:last-child) {
  margin-bottom: 2rem;
}

/* Single field (full width) */
.field-row .field-group:only-child,
.field-group.full-width {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .field-row .field-group {
    margin-bottom: 1.5rem;
  }
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #123f73;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  padding: 0.9rem 0.95rem;
  font: inherit;
  color: #16324f;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #2f80ed;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #dc3545;
}

/* Error state for validation - red border when has-error class is applied */
.field-input.has-error,
.field-select.has-error, 
.field-textarea.has-error {
  border-color: #dc3545 !important;
  background-color: #fff5f5;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.field-input.has-error:focus,
.field-select.has-error:focus,
.field-textarea.has-error:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.25);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field-error {
  display: none;
  font-size: 0.85rem;
  color: #dc3545;
  margin-top: 0.25rem;
}

/* Sticky Error Banner */
.form-error-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f8d7da;
  border-bottom: 2px solid #dc3545;
  color: #721c24;
  padding: 1rem 1.5rem;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-error-banner.is-visible {
  transform: translateY(0);
}

.form-error-banner .close-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  color: #721c24;
}

.form-error-banner .close-btn:hover {
  background: rgba(114, 28, 36, 0.1);
  border-radius: 50%;
}

/* Error Modal */
.error-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.error-modal {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.error-modal h3 {
  margin: 0 0 1rem 0;
  color: #dc3545;
  font-size: 1.25rem;
  font-weight: 700;
}

.error-modal p {
  margin: 0 0 1rem 0;
  color: #5d7288;
  line-height: 1.5;
}

.error-modal .error-details {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
  font-family: monospace;
  font-size: 0.85rem;
  color: #6c757d;
  max-height: 200px;
  overflow-y: auto;
}

.error-modal .modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.error-modal .btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.error-modal .btn-secondary:hover {
  background: #5a6268;
}

/* Phone in modal styling */
.error-modal .modal-phone {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.error-modal .modal-phone .phone-number {
  justify-content: center;
  font-size: 1.1rem;
}

.form-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #721c24;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}

.btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d5fa7, #2f80ed);
  color: white;
  font: inherit;
  font-weight: 700;
  padding: 0.95rem 1.35rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(29, 95, 167, 0.22);
  transition: transform 0.18s ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.privacy {
  font-size: 0.9rem;
  color: #5d7288;
  max-width: 44ch;
}

/* Success State Styling */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-content {
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #28a745;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.success-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #16324f;
}

.success-body {
  color: #5d7288;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.success-contact {
  margin-bottom: 1rem;
}

.success-phone-label {
  display: block;
  font-size: 0.9rem;
  color: #5d7288;
  margin-bottom: 0.25rem;
}

.success-phone {
  font-weight: 600;
  color: #2f80ed;
  text-decoration: none;
  font-size: 1.1rem;
}

.success-phone:hover {
  text-decoration: underline;
}

.success-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2f80ed;
  text-decoration: none;
  font-weight: 500;
}

.success-link:hover {
  text-decoration: underline;
}

/* Sidebar Styling */
.sidebar {
  display: grid;
  gap: 1rem;
}

.side-card {
  padding: 1.25rem 1.25rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 239, 0.95);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20, 48, 82, 0.08);
}

/* Responsive Design */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card,
  .side-card {
    padding: 1.2rem;
  }
  
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   CONTACT GRID STYLING
   Two-column layout with form on left, info panel on right.
   Stacks at 768px with form on top.
   ============================================================ */
.contact-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================================
   FORM COLUMN
   ============================================================ */
.contact-col--form {
  min-width: 0; /* Prevent grid blowout */
}

.form-col__heading {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.form-col__sub {
  font-size: 0.9375rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* ============================================================
   INFO PANEL (RIGHT COLUMN)
   ============================================================ */
.contact-col--info {
  position: sticky;
  top: 2rem;
}

.info-panel {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.info-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 1.5rem 0;
}

/* ============================================================
   RESPONSIVE BEHAVIOR
   ============================================================ */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-col--info {
    order: 2;
    position: static;
  }

  .contact-section {
    padding: 2rem 0.75rem;
  }
  
  .info-panel {
    padding: 1.5rem;
  }
}

/* ============================================================
   REASSURANCE SECTION
   Dark blue background like banner
   ============================================================ */
.reassurance-section {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.reassurance__heading {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.reassurance__body {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reassurance__cta {
  display: inline-block;
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.0625rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.reassurance__cta:hover,
.reassurance__cta:focus {
  color: #ffffff;
  border-bottom-color: #60a5fa;
  text-decoration: none;
}

.post.container .hero-wrap img {
   border-radius:12px 12px 0  0;
}

/* Headings – ensure predictable scale and spacing */
.post.container h1 { font-size: 2.2rem; line-height: 1.2; margin: .75rem 0 .5rem; }
.post.container h2 { font-size: 1.65rem; line-height: 1.25; margin: 3rem 0 .5rem; }
.post.container h3 { font-size: 1.4rem; line-height: 1.3; margin: 1rem 0 .5rem; }
.post.container h4 { font-size: 1.2rem;  line-height: 1.35; margin: .85rem 0 .35rem; }
.post.container h5, .post.container h6 { font-size: 1.1rem; margin: .75rem 0 .35rem; }

/* Paragraphs and lists – reduce excessive whitespace */
.post.container p { margin: 0 0 1rem; }
.post.container ul, .post.container ol { margin: 0 0 1rem 1.25rem; padding-left: 1rem; }
.post.container li + li { margin-top: .35rem; }

/* Strong tags should remain inline; some themes make strong block-level */
.post.container strong {
  display: inline;
  font-weight: 700; /* or 600 to match brand tone */
  margin: 0; padding: 0; border: 0;
}

/* Safety: if any <br> is injected after strong by content tools, hide it */
.post.container strong + br { display: none; }

/* Inline links inside blog posts */
.post.container a {
  color: #005BFF;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.post.container a:hover,
.post.container a:focus {
  color: #0040b5;
  text-decoration: underline;
}

/* Images and figures */
.post.container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.post.container figure { margin: 1rem 0; }
.post.container figcaption { color: #6b7280; font-size: .9rem; margin-top: .35rem; }

/* Meta row (date / read time) and tags */
.post.container .meta { color: #6b7280; font-size: .95rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.post.container .tags { display: flex; gap: .35rem; flex-wrap: wrap; margin: .35rem 0; }
.post.container .tag { font-size: .75rem; padding: .15rem .5rem; border: 1px solid #e5e7eb; border-radius: 999px; background: #fafafa; }

/* Related section */
.post.container .related { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #e5e7eb; }

/* Hero image aspect normalization (if used) */
.post.container .hero { width: 100%; aspect-ratio: 1536 / 512; object-fit: cover; border-radius: 12px; border: 1px solid #e5e7eb; }

/* Prevent overly wide container rules in main.css from blowing out spacing */
.post.container, .post.container .content {
  box-sizing: border-box;
}

/* Mobile refinements */
@media (max-width: 640px) {
  .post.container { font-size: 1.1rem; }
  .post.container h1 { font-size: 1.85rem; }
  .post.container h2 { font-size: 1.5rem; }
}
/* ========================================================================
   FORM CONFIRMATION STYLES  
   ======================================================================== */

.form-confirmation__content {
  text-align: center;
  padding: 2rem;
}

.form-confirmation__icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.form-confirmation__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #16324f;
  margin: 0 0 1rem 0;
}

.form-confirmation__body {
  color: #5d7288;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.form-confirmation__contact {
  margin: 1.5rem 0;
}

.form-confirmation__phone-label {
  display: block;
  font-weight: 600;
  color: #16324f;
  margin-bottom: 0.5rem;
}

.form-confirmation__actions {
  margin-top: 2rem;
}

.form-confirmation__link {
  display: inline-block;
  color: #1565C0 !important;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.form-confirmation__link:hover {
  color: #0D47A1 !important;
  background-color: rgba(21, 101, 192, 0.1);
  text-decoration: none;
}

/* Make all links in confirmation darker blue */
.form-confirmation__content a {
  color: #1565C0 !important;
  font-weight: 600;
}

.form-confirmation__content a:hover {
  color: #0D47A1 !important;
}