

/* =====================
   Base
===================== */

    body {
    font-family: 'Article', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #fff;
    }

    .site-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
    }

    @font-face { /* Header */
      font-family: 'Header';
      src: url('/user-fonts/ZT\ Chintzy\ Black.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
    }

    @font-face { /* Post Title */
      font-family: 'Title';
      src: url('/user-fonts/ZTNature-Medium.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
    }


    @font-face { /* article */
      font-family: 'Article';
      src: url('/user-fonts/InterVariable.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
    }

    @font-face { /* article bold */
      font-family: 'Article';
      src: url('/user-fonts/InterVariable.woff2') format('woff2');
      font-weight: bold;
      font-style: normal;
    }


    .mobile-break, .small-break {
      display: none;
    }

    @media (max-width: 500px) {
      .mobile-break {
        display: inline;
      }
    }

    @media (max-width: 450px) {
      .small-break {
        display: inline;
      }
    }



    /* =====================
   Header
===================== */


    header {
      font-family: 'Header', Arial, sans-serif;
      text-align: center;
      font-size: 34px;
      margin-bottom: 60px;
      color: #333;
    }

    header h1 {
      margin-top: -10px;
      margin-bottom: 50px;
      line-height: 1.1;
    }

    .header-frame {
      width: 100%;
      border: none;
      height: 160px; /* match header height */
    }

    
    /* =====================
   Navigation
===================== */
    

.about-toggle {
  font-family: 'Article', Arial, sans-serif;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #555;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.about-toggle:hover {
  color: #777
}

    
    /* =====================
   About
===================== */

  /* 1. Set the container to Flex */
  .post-split {
    display: flex;
    flex-direction: row; /* Side-by-side by default */
    flex-wrap: wrap;     /* Allows jumping to the next line */
    gap: 20px;           /* Adds space between image and text */
    align-items: flex-start;
  }

  /* 2. Keep the image size constant */
  .about-image {
    flex: 0 0 375px;     /* Do not grow, do not shrink, stay at 400px */
  }

  .about-image img {
    width: 100%;         /* Fill the 400px container */
    height: auto;
    border-radius: 2px;
    display: block;
  }

  /* 3. Make the text wrap and fill remaining space */
  .about-text {
    flex: 1;             /* Take up all remaining horizontal space */
    min-width: 160px;    /* Prevents text from getting too skinny */
  }

  /* 4. The Breakpoint: Stack vertically at 420px */
  @media (max-width: 750px) {
    .post-split {
      flex-direction: column; /* Stack vertically */
    }

  .about-image {
    flex: 0 0 auto;         /* Allow image to scale down if screen is < 400px */
    width: 100%;
  }

  .about-image img {
    width: 100%;            /* Image fills the screen width on mobile */
  }
} 

    .about-frog-image {
      margin: 1.5em auto;
      width: 50%;
      border-radius: 2px;
      display: block;
      opacity: 95%;
    }



    /* =====================
   Posts
===================== */


    article {
    font-family: 'Article', Arial, sans-serif;
    text-align: left;
    margin-bottom: 50px;
    color: #414040;
    }

    a {
      color: inherit;
      text-decoration: underline;
    }

    a:hover {
      color: #777
    }
 
    .post-title {
    font-family:  'Title', Helvetica, sans-serif;
    font-size: 32px;
    margin: 10px 0;
    font-weight: normal;
    }

    .post-date {
    color: #777;
    font-size: 14px;
    }

    p {
    margin: 1em 0 1em 0;
    }

    .audio-player {
    width: 100%;
    margin: 12px 0 24px;
    opacity: 0.75;
    }

    .post-split {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 2em;
    }

    .about-text {
      flex: 1;
    }

    .about-text p:first-child {
      margin-top: 0;
    }

    .post-tags {
      list-style: none;
      padding: 0;
      margin: 0 0 12px;
      font-size: 13px;
      color: #777;
    }

    .post-tags li {
      display: inline;
      margin-right: 10px;
    }


    /* Mobile fallback */
    @media (max-width: 420px) {
      .about-split {
        flex-direction: column;
      }
    }

    /* =====================
   Footer
===================== */

    footer {
      font-family: 'ZTTalk', Arial, sans-serif;
      border-top: 1px solid #ddd;
      padding-top: 15px;
      text-align: center;
    }

    footer .copyright {
      color: #777;
      font-size: 14px;
    }

    
    /* =====================
   Boxes
===================== */

/* Toggle this on/off by commenting it out */
/* div, section, article, header, footer {
  outline: 2px dotted red !important;
} */