@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
.header_container {
	background-color: #eed1d1;
}
/* Header container */
.header.clearfix {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

/* Logo container - centered layout */
.logo {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  flex: 1;
}

/* Logo h1 container */
.logo h1 {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Main title link - contains both image and text */
.logo h1 a {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: "Merriweather", serif;
  background: -webkit-linear-gradient(#ff0008, #333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  font-weight: bolder;
  font-size: 80px;
  visibility: visible !important;
}

/* Logo image styling - RESPONSIVE FIXED DIMENSIONS */
.logo img,
.logo h1 a img {
  display: inline-block !important;
  visibility: visible !important;
  height: 100px !important;
  width: 100px !important;
  min-width: 100px !important;
  min-height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Tagline styling */
.logo h4 {
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 8px !important;
  font-weight: normal;
  color: #333;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  font-size: 18px;
}

/* Header right sidebar */
.header_top_right_sidebar_container {
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
}

/* Extra small devices (phones, 320px and down) */
@media (max-width: 320px) {
  .logo img,
  .logo h1 a img {
    height: 50px !important;
    width: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
  
  .logo h1 a {
    font-size: 28px;
    gap: 8px;
  }
  
  .logo h4 {
    font-size: 12px;
    margin-top: 4px !important;
  }
}

/* Small devices (phones, 321px to 480px) */
@media (min-width: 321px) and (max-width: 480px) {
  .logo img,
  .logo h1 a img {
    height: 60px !important;
    width: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
  }
  
  .logo h1 a {
    font-size: 34px;
    gap: 10px;
  }
  
  .logo h4 {
    font-size: 13px;
    margin-top: 5px !important;
  }
}

/* Medium devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .logo img,
  .logo h1 a img {
    height: 70px !important;
    width: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
  }
  
  .logo h1 a {
    font-size: 42px;
    gap: 12px;
  }
  
  .logo h4 {
    font-size: 14px;
    margin-top: 6px !important;
  }
}

/* Tablets (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .logo img,
  .logo h1 a img {
    height: 80px !important;
    width: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }
  
  .logo h1 a {
    font-size: 52px;
    gap: 12px;
  }
  
  .logo h4 {
    font-size: 15px;
    margin-top: 7px !important;
  }
}

/* Small desktops (993px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .logo img,
  .logo h1 a img {
    height: 88px !important;
    width: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    max-width: 88px !important;
    max-height: 88px !important;
  }
  
  .logo h1 a {
    font-size: 68px;
    gap: 15px;
  }
  
  .logo h4 {
    font-size: 16px;
    margin-top: 7px !important;
  }
}

/* Large desktops (1201px to 1399px) */
@media (min-width: 1201px) and (max-width: 1399px) {
  .logo img,
  .logo h1 a img {
    height: 92px !important;
    width: 92px !important;
    min-width: 92px !important;
    min-height: 92px !important;
    max-width: 92px !important;
    max-height: 92px !important;
  }
  
  .logo h1 a {
    font-size: 72px;
    gap: 15px;
  }
  
  .logo h4 {
    font-size: 17px;
    margin-top: 8px !important;
  }
}

/* Extra large screens (1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .logo img,
  .logo h1 a img {
    height: 96px !important;
    width: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
  }
  
  .logo h1 a {
    font-size: 76px;
    gap: 15px;
  }
  
  .logo h4 {
    font-size: 18px;
    margin-top: 8px !important;
  }
}

/* Ultra large screens (1600px and above) */
@media (min-width: 1600px) {
  .logo img,
  .logo h1 a img {
    height: 100px !important;
    width: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
  }
  
  .logo h1 a {
    font-size: 80px;
    gap: 15px;
  }
  
  .logo h4 {
    font-size: 19px;
    margin-top: 8px !important;
  }
}

/* Ensure everything is visible and centered */
.logo,
.logo h1,
.logo h1 a,
.logo img,
.logo h1 a img {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Prevent the header from breaking */
.header.clearfix {
  box-sizing: border-box;
}

/* Prevent text wrapping - keep title on one line */
.logo h1 a {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


/* -------------------------------------------------
   1. HIDE THE AUTHOR BOX (absolute-positioned)
   ------------------------------------------------- */
.author_box {
    display: none !important;
}

/* -------------------------------------------------
   2. OVERRIDE THEME'S .content_box STYLES
       (more specific selector = wins)
   ------------------------------------------------- */
.post.single .content_box {
    width: 100% !important;      /* full width */
    min-height: 0 !important;    /* remove the 207px forced gap */
    margin-left: 0 !important;   /* remove left margin if you want full width */
    padding: 20px !important;   /* optional: keep some inner spacing */
    box-sizing: border-box !important;
}

/* -------------------------------------------------
   3. ENSURE PARENT CONTAINER DOES NOT ADD EXTRA SPACE
   ------------------------------------------------- */
.post_content.page_margin_top_section {
    padding-top: 0 !important;
}

/* -------------------------------------------------
   4. OPTIONAL: If the theme wraps everything in a fixed-width container,
       stretch that too (common in many themes)
   ------------------------------------------------- */
.post.single .post_content,
.post.single .content_box,
.post.single .wpb_wrapper {
    max-width: 100% !important;
    width: 100% !important;
}