/* Dr Claire Groark - Activello Theme Replica */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:wght@400;700&family=Maven+Pro:wght@400;700&display=swap');

:root {
  --text: #333;
  --text-light: #777;
  --bg: #fff;
  --content-max: 1170px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  font-size: 16px;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover {
  color: #23527c;
  text-decoration: underline;
}

/* ============ NAVBAR ============ */
.navbar {
  background-color: #333;
  min-height: 50px;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  position: relative;
}

.navbar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  position: relative;
}

.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid #555;
  border-radius: 4px;
  padding: 9px 10px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 8px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #999;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
}

.navbar-nav li a {
  display: block;
  color: #999;
  padding: 15px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s, background-color 0.2s;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

/* ============ SITE BRAND / HEADER ============ */
.site-brand {
  text-align: center;
  padding: 40px 15px 0;
  background: #fff;
}

.site-brand h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.site-brand h1 a {
  color: #333;
  text-decoration: none;
}

.site-brand h1 a:hover {
  text-decoration: none;
  color: #333;
}

.site-brand .tagline {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-bottom: 20px;
}

#line {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: #ddd;
  margin: 0 auto 30px;
}

/* ============ MAIN CONTENT ============ */
.content-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 15px 40px;
}

.content-area {
  max-width: 770px;
  margin: 0 auto;
}

/* Page title */
.entry-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Entry content */
.entry-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
  margin: 25px 0 10px;
  line-height: 1.3;
}

.entry-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.17em;
  font-weight: 400;
  font-style: italic;
  color: #555;
  margin: 0 0 20px;
  line-height: 1.5;
}

.entry-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.entry-content ul {
  margin: 10px 0 20px 25px;
  padding: 0;
}

.entry-content li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* WordPress image alignment classes */
.alignleft {
  float: left;
  margin: 5px 20px 15px 0;
}

.alignright {
  float: right;
  margin: 5px 0 15px 20px;
}

.aligncenter {
  display: block;
  margin: 10px auto;
}

/* Photo on about page */
.entry-content .photo {
  width: 287px;
  height: auto;
}

/* Credentials logos */
.credentials {
  overflow: hidden;
  margin: 20px 0;
  clear: both;
}

.credentials .bps-logo {
  width: 300px;
  height: auto;
}

.credentials .hcpc-logo {
  width: 208px;
  height: auto;
}

/* Contact info */
.contact-info {
  margin: 15px 0;
}

.contact-info p {
  margin-bottom: 8px;
}

/* Difficulties list - two column */
.difficulties-list {
  list-style: disc;
  margin: 10px 0 20px 25px;
  padding: 0;
  columns: 2;
  column-gap: 30px;
}

.difficulties-list li {
  margin-bottom: 4px;
  break-inside: avoid;
}

/* Approaches list */
.approaches-list {
  list-style: disc;
  margin: 10px 0 20px 25px;
  padding: 0;
}

.approaches-list li {
  margin-bottom: 4px;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ============ FOOTER ============ */
footer {
  background: #333;
  color: #999;
  text-align: center;
  padding: 25px 15px;
  font-family: 'Lora', serif;
  font-size: 13px;
  line-height: 1.8;
}

footer .footer-text {
  max-width: var(--content-max);
  margin: 0 auto;
}

footer .credit {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 10px;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .navbar-nav li a {
    padding: 10px 15px;
  }

  .site-brand h1 {
    font-size: 26px;
  }

  .entry-content .photo {
    width: 200px;
  }

  .difficulties-list {
    columns: 1;
  }

  .credentials .bps-logo {
    width: 200px;
  }

  .credentials .hcpc-logo {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .entry-content .photo {
    float: none;
    display: block;
    margin: 0 auto 15px;
    width: 250px;
  }

  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin: 10px auto;
  }
}
