/* =============================================================
   MortgageWire — info.css
   Shared styles for info section: About, Advertise, Privacy,
   Terms, Contact
   ============================================================= */


/* --- PAGE WRAPPER --- */
.info-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}


/* --- BACK NAV --- */
.info-nav-back {
  margin-bottom: 28px;
}

.info-nav-back a {
  font-size: 13px;
  color: #2176C7;
  transition: color 0.15s;
}

.info-nav-back a:hover {
  color: #1A5FA0;
}


/* --- PAGE HEADER --- */
.info-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid #E0DDD6;
}

.info-header-eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999490;
  font-weight: 500;
  margin-bottom: 10px;
}

.info-header-hed {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #0C2340;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.info-header-sub {
  font-size: 15px;
  color: #666660;
  line-height: 1.65;
  max-width: 600px;
}


/* --- BODY CONTENT --- */
.info-body {
  color: #2A2A2A;
  line-height: 1.75;
}

.info-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: #0C2340;
  margin: 36px 0 12px;
  letter-spacing: -0.2px;
}

.info-body h2:first-child {
  margin-top: 0;
}

.info-body p {
  font-size: 15px;
  margin-bottom: 16px;
  color: #3A3A3A;
}

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

.info-body a {
  color: #2176C7;
  text-decoration: underline;
  text-decoration-color: rgba(33, 118, 199, 0.3);
  transition: color 0.15s, text-decoration-color 0.15s;
}

.info-body a:hover {
  color: #1A5FA0;
  text-decoration-color: rgba(26, 95, 160, 0.6);
}

.info-body ul,
.info-body ol {
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 16px;
  color: #3A3A3A;
}

.info-body li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.info-body strong {
  font-weight: 600;
  color: #1A1A1A;
}


/* --- CALLOUT BLOCK --- */
.info-callout {
  background: #EAF2FC;
  border-left: 3px solid #2176C7;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.info-callout p {
  font-size: 14px;
  color: #1A5FA0;
  margin: 0;
  line-height: 1.6;
}


/* --- CONTACT FORM --- */
.info-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.info-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.info-field label {
  font-size: 12px;
  font-weight: 500;
  color: #666660;
  letter-spacing: 0.3px;
}

.info-input,
.info-textarea,
.info-select {
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  color: #1A1A1A;
  background: #F7F5F0;
  border: 0.5px solid #D0CCC4;
  border-radius: 8px;
  transition: border-color 0.15s;
  width: 100%;
}

.info-input:focus,
.info-textarea:focus,
.info-select:focus {
  outline: none;
  border-color: #2176C7;
}

.info-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.info-submit {
  display: inline-block;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Source Sans 3', sans-serif;
  background: #2176C7;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}

.info-submit:hover {
  background: #1A5FA0;
}


/* --- ADVERTISE HIGHLIGHT BOXES --- */
.info-ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.info-ad-box {
  background: #F7F5F0;
  border: 0.5px solid #E0DDD6;
  border-radius: 10px;
  padding: 18px;
}

.info-ad-box-hed {
  font-size: 13px;
  font-weight: 600;
  color: #0C2340;
  margin-bottom: 6px;
}

.info-ad-box-sub {
  font-size: 12px;
  color: #888880;
  line-height: 1.6;
  margin: 0;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .info-wrap {
    padding: 28px 16px 48px;
  }

  .info-header-hed {
    font-size: 26px;
  }

  .info-contact-grid {
    grid-template-columns: 1fr;
  }

  .info-ad-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .info-header-hed {
    font-size: 22px;
  }
}
