/* Blog Page */
.blog-search-form-container {
  background-color: #007AA5;
  margin-bottom: calc(calc((30 * 1px) + (45 - 30) * ((100vw - 320px) / (1920 - 320))) * .8);
}
.blog-search-form-inner {
  max-width: 1010px;
  width: 100%;
  padding: 2rem 0;
  margin: 0 auto;
}
.blog-search-form-inner h1 {
  font-family: 'Nunito', serif;
  font-size: 1.444rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.blog-post-container {
  max-width: 1010px;
  width: 100%;
  margin: 0 auto;
}

/* post list */
.blog-post-list {
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 12px));
  justify-content: space-between;
  gap: 20px 0;
}
.sgl-post {
  border: 2px solid #ebf7f8;
  display: flex;
}
  .post-infos {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
.post-infos img {
  aspect-ratio: 525/274;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.post-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.post-date {
  font-weight: 300;
  letter-spacing: 0.10em;
  margin-bottom: 10px;
}
.post-title {
  font-family: 'Nunito', serif;
  font-size: 1.111rem;
  letter-spacing: 0.00em;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
}
.post-title span {
  font-size: .9rem;
}
.sgl-post-content {
  font-size: 0.833em !important;
  margin: 15px 0;
  
}

.sgle-post-btn {
  margin-top: 20px;
}

.sgle-post-btn a {
  border-radius: 10px;
  border: 3px solid #007AA5;
  color: #007AA5;
  background-color: #FFFFFF;
  padding: calc(0.9rem * 0.5) calc(2rem * 0.5) calc(0.9rem * 0.5) calc(2rem * 0.5);
  font-size: .9rem;
  text-decoration: none;
}

.sgle-post-btn a:hover {
  border-color: #28C4D8;
}

/* Load more */
.blog-post-ld-btn a {
  background: #007aa5 !important;
  color: #fff !important;
  padding: 0.9rem 2rem 0.9rem 2rem;
  margin: 30px 0;
  font-size: .8rem;
  line-height: 1;
}


/* blog filter */
.search-filter form > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: flex-end;
  gap: 0 15px;  
}
.search-filter form > ul h4 {
  font-family: 'Nunito', serif;
  letter-spacing: 0.00em;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1rem;
  padding: 5px 0;
  color: #fff;
}
.search-filter .search-filter-reset {
  color: #fff !important;
  text-decoration: unset;
  font-weight: 500 !important;
}
.search-filter .sf-field-reset {
  grid-column: span 3;
  text-align: end;
  padding-top: 0;
}
.search-filter .search-filter-reset:hover {
  color: #000 !important;
}
.search-filter label {
  width: 100%;
}
.search-filter select {
  padding: 8px;
  border-radius: 8px;
  border: 2px solid #fff;
  width: 100%;
}
.search-filter input {
  padding: 10px;
  border-radius: 8px;
  width: 100%;
}








/* single page style */
.single-post-container {
  padding: 2rem 0;
}
.blue-title-container h1 {
  font-size: 2.5em;
  margin: 0 auto;
  color: #FFFFFF;
  padding: 0.6em 3%;
  text-align: center;
  max-width: 80%;
  position: relative;
  z-index: 2;
  background-color: #007AA5;
  line-height: 1;
  font-weight: 900;
}
.ft-img-con {
  display: block !important;
}
.ft-img-con img {
  width: 100%;
  margin-top: -1.5em;
}
.all-category-list {
  position: relative;
  height: 2rem;
}
.category-list-container {
  position: absolute;
  right: 0;
  min-width: 22em;
}
.blog-list-toggle {
  background-color: #F6A01A;
  color: #FFFFFF;
  padding: 1.111em 1.389em 1.111em 2.889em;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 1.333em;
  font-weight: 700;
  cursor: pointer;
  gap: 1rem;
}
.cat-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-toggle span {
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.category-list {
  display: none;
}
.category-list-inner {
  background-color: #007AA5;
  padding: 1.5em 0;
  max-height: 23.889em;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.category-list a {
  color: #fff !important;
  padding: 0.5em 2.389em 0.5em 2.778em;
  background-color: #007AA500;
  transition: background-color .3s ease-in-out 0s, color .3s ease-in-out 0s;
  font-weight: 400 !important;
  text-decoration: none !important;
}
.category-list a:hover {
  background-color: #000;
}

/* content */
.post-content {
  margin-top:  calc(calc((30 * 1px) + (45 - 30) * ((100vw - 320px) / (1920 - 320))) * 1.6);
}
.post-content p, .post-content div {
  font-size: 1.111rem;
}
.post-content img {
  margin: 0 auto;
  width: 100%;
}

/* Scroll Bar */
.category-list-inner::-webkit-scrollbar {
  width: 10px;
}

.category-list-inner::-webkit-scrollbar-track {
  background: #0000; 
}
  
.category-list-inner::-webkit-scrollbar-thumb {
  background: #2489ad; 
  border-radius: 10px;
}






/* Related Post */
.related-post-container h2 {
  text-align: center;
  color: #007AA5!important;
}
.related-post-container .post-title {
  color: #faba4e;
}



/* socail link */
.blog-social-likns-container ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
.blog-social-likns-container svg {
  height: 1em;
  width: 1em;
}
.blog-social-likns-container a:hover svg path {
  fill: #000 !important;
}







/* Archive -category page */
.cat-body-inner {
  padding: 3rem 0;
}
.cat-body-inner .ft-img-con {
  position: relative;
}
.blog-page-link a {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5em 2em;
  background-color: #F6A01A;
  color: #FFFFFF;
  transition: 0.5s ease;
  font-weight: 500;
  text-decoration: none;
}
.pagination {
  margin-top: 50px;
}
.pagination-list {
  display: flex;
  gap: 15px;
  font-size: 1.111rem !important;
}
.pagination-list a {
  text-decoration: unset;
}







/* CPT: In the News */
/* Archive Page */
.sgle-press-btn  a {
  background: #007aa5 !important;
  color: #fff !important;
  padding: 0.9rem 2rem 0.9rem 2rem;
  font-size: .8rem;
  line-height: 1;
  margin-top: 1rem;
}
.img-holder {
  text-decoration: none;
}
.img-holder span {
  width: 100%;
  aspect-ratio: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: unset !important;
  background: #ccc;
  font-size: 1.5rem;
}
.img-holder img {
  width: 100%;
  aspect-ratio: 2;
}

/* search filter */
.press-search-filter form > ul  {
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.press-search-filter .sf-field-reset {
  grid-column: span 2;
}

/* single press center */
.related-post-container .press-related-p-title {
  color: #007aa5;
}
.related-press-excerpt {
  font-size: 0.8em !important;
  margin: 15px 0;
}

.press-social-links ul {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
.press-social-links svg {
  height: .9em;
  width: .9em;
}
.press-share {
  color: #f6a01a;
  font-weight: 900;
  display: block;
  margin-top: 7px;
}

/* Archive Franchise Blog */
.franchisee-blog-template {
  padding-bottom: 3rem;
}
.related-post-container .frn-blog-rel-title {
  color: #007aa5;
}
.related-fran-blog-container {
  padding-bottom: 4rem;
}

/* Category List */
.cat-list-post-inner {
  padding-bottom: 2rem;
}
.sgl-cat-name {
  margin: 0;
  padding: 1em;
  background-color: #E1F7FA;
  font-weight: bold;
  font-size: 1em;
}


@media only screen and (max-width: 1024px) {
  .blog-search-form-inner, .blog-post-container {
    width: calc(100% - 3rem) !important;
  } 
  .press-center-template-default .single-post-body .mn_tn {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}



@media only screen and (max-width: 900px) { 
  .blog-post-list {
    grid-template-columns: repeat(2, calc(50% - 12px)) !important;
  }

}

@media only screen and (max-width: 600px) { 
  .blog-post-list {
    grid-template-columns: 100% !important;
    gap: 50px;
  }
  .search-filter form > ul {
    display: block !important;
  }
  .blue-title-container h1 {
    font-size: 2em;
    max-width: 100%;
    text-align: left;
    background: unset;
    color: #000;
    padding: 0;
  }
  .ft-img-con img {
    margin-top: 2rem;
  }
  .category-list-container {
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
  }
  .blog-list-toggle {
    padding: 1em 1.389em !important;
  }

}
/*# sourceMappingURL=blog.css.map */