
/* Top Navigation and Header */



body {
  font-family: "ParangoOtw01Bold-Regular", sans-serif;
  background: #fff;
  color: #000;
}
				












/* Animation when "open" class is applied */








/* Sidebar menu */











      .blog {
        background: #ffffff;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .blog-entry {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .blog-image {
        width: 100%;
        max-width: 540px;
        height: auto;
        border: 1px solid #707070;
        object-fit: cover;
      }

      .blog-title {
        font-family: "ParangoOtw01Bold-Regular", sans-serif;
        font-size: 2rem;
        color: #000;
      }

      .blog-subtitle,
      .blog-author {
        font-family: "TimesNewRoman-Regular", sans-serif;
        font-size: 1.25rem;
        color: #000;
      }

      .author-box {
        display: flex;
        align-items: center;
        gap: 1rem;
		padding-top: 7rem;
      }

      .author-image {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 1px solid #707070;
        object-fit: cover;
      }

      hr {
        border: none;
        border-top: 1px solid #707070;
        margin: 2rem 0;
      }

      .gallery-text {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-top: 0.5rem;
   display: none;
  margin-left: auto;
  z-index: 100;
}

      @media (min-width: 768px) {
          
        .blog-entry {
          flex-direction: row;
          align-items: flex-start;
        }
        .entry-content {
          margin-left: 2rem;
          flex: 1;
        }
        .gallery-text {
          display: block;
        }
      }
	  