/* Typography CSS for The She Approach[](https://thesheapproach.com/) */

/* Global font settings */
body {
  font-size: 18px; /* Base font size for readability */
  line-height: 1.6; /* Comfortable line spacing for body text */
  color: #333; /* Dark text for contrast */
  text-align: left; /* Default text alignment */
}

/* Headings */
h1 {
  font-size: 36px; /* Large heading for main titles */
  line-height: 1.3; /* Tighter line spacing for headings */
  font-weight: 700; /* Bold weight for emphasis */
  color: #222; /* Slightly darker for headings */
}

h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
}

h3 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: #222;
}

/* Paragraphs */
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px; /* Spacing between paragraphs */
}

/* Links */
a {
  color: #d81b60; /* Pinkish color for links, matching siteâ€™s branding */
  text-decoration: none; /* No underline for clean look */
  transition: color 0.3s ease; /* Smooth hover effect */
}

a:hover {
  color: #b0003a; /* Darker pink on hover */
  text-decoration: underline; /* Underline on hover for clarity */
}

/* Blockquotes */
blockquote {
  font-size: 20px;
  line-height: 1.65;
  color: #555;
  border-left: 4px solid #d81b60; /* Accent color for quotes */
  padding-left: 20px;
  margin: 20px 0;
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
  body {
    font-size: 16px; /* Slightly smaller for mobile */
    line-height: 1.5;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  blockquote {
    font-size: 18px;
  }
}