/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*color for H2 */
/* ===== No BS Keto Typography System ===== */

/* ===== No BS Keto Typography Override ===== */

html {
  font-size: 100%;
}

body,
button,
input,
select,
textarea {
  font-size: 18px;
  line-height: 1.75;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Main readable content areas */
.single-post .entry-content,
.page .entry-content,
.blog-entry-summary,
.blog-entry-inner,
.oceanwp-theme .entry-content {
  font-size: 1rem;
  line-height: 1.75;
}

/* Paragraphs */
.single-post .entry-content p,
.page .entry-content p,
.blog-entry-summary p,
.blog-entry-inner p,
.oceanwp-theme .entry-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2em;
}

/* Lists */
.single-post .entry-content li,
.page .entry-content li,
.blog-entry-summary li,
.blog-entry-inner li,
.oceanwp-theme .entry-content li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.4em;
}

/* Headings */
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6,
.page .entry-content h1,
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.page .entry-content h5,
.page .entry-content h6,
.oceanwp-theme .entry-content h1,
.oceanwp-theme .entry-content h2,
.oceanwp-theme .entry-content h3,
.oceanwp-theme .entry-content h4,
.oceanwp-theme .entry-content h5,
.oceanwp-theme .entry-content h6 {
  color: #111827;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}

.single-post .entry-content h1,
.page .entry-content h1,
.oceanwp-theme .entry-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.single-post .entry-content h2,
.page .entry-content h2,
.oceanwp-theme .entry-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.single-post .entry-content h3,
.page .entry-content h3,
.oceanwp-theme .entry-content h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.25;
}

.single-post .entry-content h4,
.page .entry-content h4,
.oceanwp-theme .entry-content h4 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.3;
}

.single-post .entry-content h5,
.page .entry-content h5,
.oceanwp-theme .entry-content h5 {
  font-size: 1rem;
  line-height: 1.4;
}

.single-post .entry-content h6,
.page .entry-content h6,
.oceanwp-theme .entry-content h6 {
  font-size: 0.95rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Links */
.single-post .entry-content a,
.page .entry-content a,
.oceanwp-theme .entry-content a {
  text-underline-offset: 2px;
}

/* Images */
.single-post .entry-content img,
.page .entry-content img,
.oceanwp-theme .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Make content width more readable on posts/pages */
.single-post .entry-content,
.page .entry-content {
  max-width: 760px;
}

/* Mobile */
@media (max-width: 768px) {
  body,
  button,
  input,
  select,
  textarea {
    font-size: 17px;
    line-height: 1.7;
  }

  .single-post .entry-content p,
  .page .entry-content p,
  .single-post .entry-content li,
  .page .entry-content li {
    line-height: 1.7;
  }
}


