/* [project]/src/styles/BlogHeader.module.css [client] (css) */
.BlogHeader-module__qpyaCG__header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px #0000000d;
  z-index: 100;
  transition: all .3s;
  padding: 20px 0;
}

.BlogHeader-module__qpyaCG__header.BlogHeader-module__qpyaCG__scrolled {
  padding: 12px 0;
}

.BlogHeader-module__qpyaCG__headerContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.BlogHeader-module__qpyaCG__logoContainer {
  flex: none;
  z-index: 102;
}

.BlogHeader-module__qpyaCG__logo {
  display: block;
}

.BlogHeader-module__qpyaCG__desktopNav {
  display: none;
}

.BlogHeader-module__qpyaCG__navList {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.BlogHeader-module__qpyaCG__navList li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color .2s;
  position: relative;
  padding-bottom: 5px;
}

.BlogHeader-module__qpyaCG__navList li a:hover {
  color: #1c6161;
}

.BlogHeader-module__qpyaCG__navList li.BlogHeader-module__qpyaCG__active a {
  color: #1c6161;
  font-weight: bold;
}

.BlogHeader-module__qpyaCG__navList li.BlogHeader-module__qpyaCG__active a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff843c;
}

.BlogHeader-module__qpyaCG__headerActions {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 102;
}

.BlogHeader-module__qpyaCG__searchToggle, .BlogHeader-module__qpyaCG__menuToggle {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #333;
  display: none;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}

.BlogHeader-module__qpyaCG__searchToggle:hover, .BlogHeader-module__qpyaCG__menuToggle:hover {
  color: #0070f3;
}

.BlogHeader-module__qpyaCG__menuToggle {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.BlogHeader-module__qpyaCG__menuToggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all .3s;
}

.BlogHeader-module__qpyaCG__menuToggle.BlogHeader-module__qpyaCG__open span:first-child {
  transform: translateY(9px)rotate(45deg);
}

.BlogHeader-module__qpyaCG__menuToggle.BlogHeader-module__qpyaCG__open span:nth-child(2) {
  opacity: 0;
}

.BlogHeader-module__qpyaCG__menuToggle.BlogHeader-module__qpyaCG__open span:nth-child(3) {
  transform: translateY(-9px)rotate(-45deg);
}

.BlogHeader-module__qpyaCG__mobileNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: #fff;
  padding: 80px 30px 30px;
  transition: right .3s;
  z-index: 101;
  box-shadow: -5px 0 15px #0000001a;
  overflow-y: auto;
}

.BlogHeader-module__qpyaCG__mobileNav.BlogHeader-module__qpyaCG__open {
  right: 0;
}

.BlogHeader-module__qpyaCG__mobileNavList {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.BlogHeader-module__qpyaCG__mobileNavList li {
  margin-bottom: 20px;
}

.BlogHeader-module__qpyaCG__mobileNavList li a {
  color: #333;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  transition: color .2s;
}

.BlogHeader-module__qpyaCG__mobileNavList li a:hover {
  color: #0070f3;
}

.BlogHeader-module__qpyaCG__mobileSocial {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.BlogHeader-module__qpyaCG__mobileSocial a {
  color: #333;
  transition: color .2s;
}

.BlogHeader-module__qpyaCG__mobileSocial a:hover {
  color: #0070f3;
}

.BlogHeader-module__qpyaCG__searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffffff2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.BlogHeader-module__qpyaCG__searchOverlay.BlogHeader-module__qpyaCG__open {
  opacity: 1;
  visibility: visible;
}

.BlogHeader-module__qpyaCG__searchContainer {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.BlogHeader-module__qpyaCG__searchContainer form {
  display: flex;
  width: 100%;
}

.BlogHeader-module__qpyaCG__searchContainer input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 1.1rem;
  border: none;
  border-bottom: 2px solid #333;
  background: none;
  outline: none;
}

.BlogHeader-module__qpyaCG__searchContainer button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.BlogHeader-module__qpyaCG__closeSearch {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 1.5rem;
  transition: color .2s;
}

.BlogHeader-module__qpyaCG__closeSearch:hover {
  color: #0070f3;
}

@media (width >= 768px) {
  .BlogHeader-module__qpyaCG__desktopNav {
    display: block;
  }

  .BlogHeader-module__qpyaCG__menuToggle {
    display: none;
  }

  .BlogHeader-module__qpyaCG__mobileNav {
    display: none;
  }
}

@media (width <= 767px) {
  .BlogHeader-module__qpyaCG__header {
    padding: 15px 0;
  }

  .BlogHeader-module__qpyaCG__header.BlogHeader-module__qpyaCG__scrolled {
    padding: 10px 0;
  }

  .BlogHeader-module__qpyaCG__closeSearch {
    top: 20px;
    right: 20px;
  }
}


/* [project]/src/styles/BlogFooter.module.css [client] (css) */
.BlogFooter-module__oSFrgW__footer {
  background-color: #1c6161;
  border-top: 1px solid #1c6161;
  color: #fff;
  padding: 3rem 0 2rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

.BlogFooter-module__oSFrgW__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.BlogFooter-module__oSFrgW__topSection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (width >= 768px) {
  .BlogFooter-module__oSFrgW__topSection {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width >= 1024px) {
  .BlogFooter-module__oSFrgW__topSection {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.BlogFooter-module__oSFrgW__brandSection {
  display: flex;
  flex-direction: column;
}

.BlogFooter-module__oSFrgW__logo {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ff843c;
  margin: 0 0 .5rem;
}

.BlogFooter-module__oSFrgW__tagline {
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.BlogFooter-module__oSFrgW__socialLinks {
  display: flex;
  gap: 1rem;
}

.BlogFooter-module__oSFrgW__socialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  color: #64748b;
  transition: all .2s;
  background-color: #f1f5f9;
}

.BlogFooter-module__oSFrgW__socialLink:hover {
  background-color: #e2e8f0;
  color: #ff843c;
  transform: translateY(-2px);
}

.BlogFooter-module__oSFrgW__linksSection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.BlogFooter-module__oSFrgW__linkGroup {
  display: flex;
  flex-direction: column;
}

.BlogFooter-module__oSFrgW__linkGroupTitle {
  font-weight: 600;
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #ff843c;
}

.BlogFooter-module__oSFrgW__linkList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BlogFooter-module__oSFrgW__linkList li {
  margin-bottom: .75rem;
}

.BlogFooter-module__oSFrgW__linkList a {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
  font-size: .875rem;
}

.BlogFooter-module__oSFrgW__linkList a:hover {
  color: #ff843c;
}

.BlogFooter-module__oSFrgW__subscribeSection {
  display: flex;
  flex-direction: column;
}

.BlogFooter-module__oSFrgW__subscribeTitle {
  font-weight: 600;
  margin: 0 0 .5rem;
  font-size: 1rem;
  color: #ff843c;
}

.BlogFooter-module__oSFrgW__subscribeText {
  color: #fff;
  margin: 0 0 1.25rem;
  font-size: .875rem;
  line-height: 1.5;
}

.BlogFooter-module__oSFrgW__subscribeForm {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (width >= 480px) {
  .BlogFooter-module__oSFrgW__subscribeForm {
    flex-direction: row;
  }
}

.BlogFooter-module__oSFrgW__subscribeInput {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: .375rem;
  font-size: .875rem;
  min-width: 0;
  background-color: #fff;
}

.BlogFooter-module__oSFrgW__subscribeInput:focus {
  outline: none;
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px #94a3b81f;
}

.BlogFooter-module__oSFrgW__subscribeButton {
  padding: .75rem 1.25rem;
  background-color: #ff843c;
  color: #fff;
  border: none;
  border-radius: .375rem;
  font-weight: 500;
  font-size: .875rem;
  cursor: pointer;
  transition: background-color .2s;
  white-space: nowrap;
}

.BlogFooter-module__oSFrgW__subscribeButton:hover {
  background-color: #1d4ed8;
}

.BlogFooter-module__oSFrgW__subscribeSuccess {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background-color: #ecfdf5;
  border-radius: .375rem;
  color: #047857;
}

.BlogFooter-module__oSFrgW__subscribeSuccess svg {
  width: 1.25rem;
  height: 1.25rem;
}

.BlogFooter-module__oSFrgW__subscribeSuccess p {
  margin: 0;
  font-size: .875rem;
}

.BlogFooter-module__oSFrgW__divider {
  height: 1px;
  background-color: #e2e8f0;
  margin: 2.5rem 0;
}

.BlogFooter-module__oSFrgW__bottomSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (width >= 768px) {
  .BlogFooter-module__oSFrgW__bottomSection {
    flex-direction: row;
    justify-content: space-between;
  }
}

.BlogFooter-module__oSFrgW__copyright {
  margin: 0;
  font-size: .875rem;
  color: #fff;
}

.BlogFooter-module__oSFrgW__bottomLinks {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.BlogFooter-module__oSFrgW__bottomLinks a {
  color: #fff;
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}

.BlogFooter-module__oSFrgW__bottomLinks a:hover {
  color: #ff843c;
  text-decoration: underline;
}

.BlogFooter-module__oSFrgW__dot {
  color: #ff843c;
  font-size: .875rem;
}


/*# sourceMappingURL=src_styles_e0771c15._.css.map*/
