/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap");
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
:root {
  --color-primary: #f58220;
  --color-primary-hover: #d46d13;
  --color-white: #f4f4f4;
  --color-text: #1c1c1c;
  --color-footer-bg: #1c1c1c;
  --color-footer-text: #9ca3af;
  --font-header: "Barlow", sans-serif;
  --font-body: "Janna LT", sans-serif;
  --header-transition: all 0.3s ease-in-out;
  --container-max: 1440px;
  --container-padding: 2rem;
  --container-width: 1440px;
  --content-max-width: 896px;
  --spacing-lg: 8rem;
  --spacing-md: 1.5rem;
  --color-accent-orange: #ea580c;
  --color-accent-pink: #db2777;
  --bg-gradient-primary: linear-gradient(
    to right,
    var(--color-accent-orange),
    var(--color-primary)
  );
  --bg-gradient-hover: linear-gradient(
    to right,
    var(--color-accent-orange),
    var(--color-accent-pink)
  );
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  margin-top: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  padding: 0.75rem 2.5rem;
  transition: var(--header-transition);
  cursor: pointer;
  border: none;
}
.btn--rounded {
  border-radius: 9999px;
}
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn--primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@keyframes pulse-custom {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    transform: scale(0.98);
  }
}
.btn--pulse {
  animation: pulse-custom 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background-color: transparent;
  padding: 2rem var(--container-padding);
  transition: var(--header-transition);
}
.site-nav__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}
.site-nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.5rem;
}
.site-nav.site-nav--scrolled {
  background-color: var(--color-white);
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.site-nav--hidden {
  transform: translateY(-100%);
}
.site-nav__logo-link {
  position: relative;
  display: block;
  flex-shrink: 0;
  height: 70px;
}
.site-nav__logo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.site-nav__logo--white {
  opacity: 1;
  position: relative;
}
.site-nav__logo--color {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-nav--scrolled .site-nav__logo--white {
  opacity: 0;
}
.site-nav--scrolled .site-nav__logo--color {
  opacity: 1;
}
body:not(.home):not(.front-page) .site-nav__logo--white {
  opacity: 0;
}
body:not(.home):not(.front-page) .site-nav__logo--color {
  opacity: 1;
}
@media (min-width: 768px) {
  .site-nav__logo-link {
    width: 210px;
    height: 70px;
  }
}
@media (min-width: 1024px) {
  .site-nav__logo-link {
    width: 230px;
    height: 80px;
  }
}
.site-nav__item-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-nav__menu {
  display: none;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-white);
}
.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.site-nav__link:hover {
  opacity: 0.8;
}
.site-nav__sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 14rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 50;
}
.site-nav__item:hover .site-nav__sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__sub-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.site-nav__sub-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: underline;
}
.site-nav__caret {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  margin-left: 0.25rem;
}
.site-nav__item:hover .site-nav__caret {
  transform: rotate(-90deg);
}
.site-nav__toggle {
  display: none !important;
}
.site-nav--scrolled .site-nav__list {
  color: var(--color-text);
}
.site-nav__cta {
  display: none;
}
.site-nav__toggle-wrapper {
  display: flex;
  align-items: center;
}
.site-nav__toggle-btn {
  padding: 0.5rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  color: var(--color-white);
}
.site-nav--scrolled .site-nav__toggle-btn {
  color: var(--color-text);
}
.site-nav__toggle-btn i {
  font-size: 1.5rem;
}
.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  width: 100%;
}
.mobile-menu__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu__link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  text-decoration: none;
  color: var(--color-text) !important;
}
.mobile-menu__link:hover {
  background-color: #f9fafb;
  color: var(--color-primary) !important;
}
.mobile-menu__sub-menu {
  display: none;
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid rgba(245, 130, 32, 0.2);
}
.mobile-menu__toggle {
  padding: 0.75rem;
  background: transparent;
  border: none;
  color: #4b5563;
  cursor: pointer;
}
.mobile-menu__toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}
.mobile-menu__cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}
body.menu-is-open {
  overflow: hidden;
}
body:not(.home):not(.front-page) .site-nav {
  background-color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body:not(.home):not(.front-page) .site-nav__list {
  color: var(--color-text);
}
body:not(.home):not(.front-page) .site-nav__logo--white {
  opacity: 0;
}
body:not(.home):not(.front-page) .site-nav__logo--color {
  opacity: 1;
}
.site-footer {
  width: 100%;
  padding-top: 3.5rem;
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
}
.site-footer__inner {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-cta {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-cta__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-cta__title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 0;
}
.footer-cta__subtitle {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0;
}
.footer-cta__btn {
  margin-top: 2.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  width: 100%;
  animation: buttonPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes buttonPulse {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 #ffad65;
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 30px #ffad6500;
  }
  100% {
    transform: scale(0.8);
  }
}
.footer-grid {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-widget {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
}
.footer-widget__title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer-widget--brand {
  align-items: center;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.footer-list__item--start {
  align-items: flex-start;
}
.footer-list__item:hover {
  color: var(--color-white);
}
.footer-list__icon {
  color: var(--color-primary);
  margin-top: 0.25rem;
}
.footer-list__link {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}
.footer-widget__brand-link {
  padding: 1rem 0;
  display: block;
}
.footer-widget__logo {
  width: 230px;
  height: 80px;
  object-fit: cover;
}
.footer-widget__desc {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.footer-social__label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.footer-social__icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.footer-social__link {
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: color 0.3s;
}
.footer-social__link:hover {
  color: var(--color-white);
}
.footer-newsletter {
  max-width: 400px;
  width: 100%;
}
.footer-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-newsletter__label {
  display: block;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}
.footer-newsletter__input {
  width: 100%;
  height: 3rem;
  border-radius: 9999px;
  padding: 0 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  outline: none;
}
.footer-newsletter__input:focus {
  box-shadow: 0 0 0 2px var(--color-primary);
}
.footer-newsletter__submit {
  width: 100%;
  height: 3rem;
  justify-content: center;
}
.footer-newsletter__note {
  font-size: 0.75rem;
  color: #d1d5db;
}
.site-info {
  border-top: 1px solid #9ca3af;
}
.site-info__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.site-info__copyright {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 0.5rem;
}
.site-info__links {
  display: flex;
  gap: 1rem;
}
.site-info__links a {
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}
.site-info__links a:hover {
  color: var(--color-white);
}
@media (min-width: 768px) {
  .footer-cta__title {
    font-size: 3rem;
  }
  .footer-cta__subtitle {
    font-size: 2.25rem;
  }
  .footer-cta__btn {
    width: auto;
  }
  .footer-grid {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .footer-widget--brand {
    align-items: flex-start;
  }
  .footer-widget__desc {
    text-align: left;
  }
  .footer-social__label {
    text-align: left;
  }
  .footer-social__icons {
    justify-content: flex-start;
  }
  .site-info__container {
    flex-direction: row;
  }
  .site-info__copyright, .site-info__links a {
    font-size: 0.875rem;
  }
  .site-info__copyright {
    margin-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .site-nav__menu {
    display: flex;
  }
  .site-nav__cta {
    display: inline-flex;
  }
  .site-nav__toggle-wrapper {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
  }
  .footer-widget--brand {
    order: -1;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 2rem 1rem;
  height: 100%;
}
.hero__header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56rem;
  text-align: left;
}
.hero__title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-white);
  text-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);
}
.hero__highlight {
  color: var(--color-primary);
}
.hero__desc {
  font-size: 1rem;
  color: var(--color-white);
  text-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .hero {
    height: 500px;
  }
  .hero__container {
    padding-top: 5rem;
    padding-bottom: 0rem;
  }
  .hero__header {
    text-align: center;
  }
  .hero__title {
    font-size: 3.75rem;
  }
  .hero__desc {
    font-size: 1.125rem;
  }
}
.hero-subscribe {
  position: relative;
  width: 100%;
  max-width: 32rem;
  display: flex;
  padding: 0.5rem;
}
.hero-subscribe__input {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 9999px;
  border: none;
  font-size: 0.875rem;
  background-color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  outline: none;
  transition: box-shadow 0.2s;
}
.hero-subscribe__input::placeholder {
  color: #9ca3af;
}
.hero-subscribe__input:focus {
  box-shadow: 0 0 0 2px var(--color-primary);
}
.hero-subscribe__btn {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.25rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.hero-subscribe__btn:hover {
  opacity: 0.8;
}
.posts-section {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
}
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}
@media (min-width: 640px) {
  .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }
}
.badge--featured {
  background: var(--bg-gradient-primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
.badge--dark {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  color: #fff;
}
.badge--light {
  background-color: #fff7ed;
  color: var(--color-accent-orange);
}
.badge--gradient {
  background: var(--bg-gradient-primary);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.meta-date {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .meta-date {
    font-size: 0.875rem;
  }
}
.meta-date__line {
  width: 2rem;
  height: 2px;
  background: var(--bg-gradient-hover);
}
.meta-date__icon {
  color: var(--color-accent-orange);
}
.meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.75rem;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .meta-info {
    font-size: 0.875rem;
    gap: 1.5rem;
    padding-top: 1rem;
  }
}
.meta-info__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.meta-info__icon {
  color: var(--color-accent-orange);
}
.meta-info__text {
  font-weight: 500;
}
.meta-info__text--truncate {
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-post {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1rem;
}
.featured-post__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .featured-post__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .featured-post__inner {
    gap: 4rem;
  }
}
.featured-post__media-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  order: 2;
}
@media (min-width: 1024px) {
  .featured-post__media-wrapper {
    order: 1;
  }
}
.featured-post__media-link {
  display: block;
  position: relative;
}
.featured-post__img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .featured-post__img {
    height: 20rem;
  }
}
@media (min-width: 1024px) {
  .featured-post__img {
    height: 500px;
  }
}
.featured-post__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.featured-post__media-wrapper:hover .featured-post__overlay {
  opacity: 1;
}
.featured-post__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media (min-width: 640px) {
  .featured-post__badge {
    top: 1.5rem;
    left: 1.5rem;
  }
}
.featured-post__mobile-cat {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 1024px) {
  .featured-post__mobile-cat {
    display: none;
  }
}
.featured-post__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  order: 1;
}
@media (min-width: 640px) {
  .featured-post__content {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .featured-post__content {
    order: 2;
  }
}
.featured-post__meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.featured-post__desktop-cat {
  display: none;
}
@media (min-width: 1024px) {
  .featured-post__desktop-cat {
    display: inline-block;
  }
}
.featured-post__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
}
.featured-post__title a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.featured-post__title a:hover {
  color: var(--color-primary);
}
@media (min-width: 640px) {
  .featured-post__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .featured-post__title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .featured-post__title {
    font-size: 3.75rem;
  }
}
.featured-post__excerpt {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) {
  .featured-post__excerpt {
    font-size: 1.125rem;
    -webkit-line-clamp: 4;
  }
}
@media (min-width: 1024px) {
  .featured-post__excerpt {
    font-size: 1.25rem;
  }
}
.featured-post__cta {
  margin-top: 1rem;
  align-self: flex-start;
}
@media (min-width: 640px) {
  .featured-post__cta {
    margin-top: 1.5rem;
  }
}
.btn--gradient {
  background: var(--bg-gradient-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn--gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.btn--gradient i {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  transition: transform 0.3s;
}
.btn--gradient:hover i {
  transform: translateX(4px);
}
.posts-grid-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1rem;
}
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.post-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (min-width: 640px) {
  .post-card {
    border-radius: 1.5rem;
  }
}
.post-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.post-card__media-wrapper {
  position: relative;
  overflow: hidden;
}
.post-card__media-link {
  display: block;
}
.post-card__img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card__img.post-card__img_placeholder {
  object-fit: contain;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .post-card__img {
    height: 14rem;
  }
}
@media (min-width: 1024px) {
  .post-card__img {
    height: 16rem;
  }
}
.post-card:hover .post-card__img {
  transform: scale(1.05);
}
.post-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent );
  opacity: 0;
  transition: opacity 0.3s;
}
.post-card:hover .post-card__overlay {
  opacity: 1;
}
.post-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}
.post-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 640px) {
  .post-card__body {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .post-card__body {
    padding: 1.75rem;
  }
}
.meta-date--card {
  margin-bottom: 0.75rem;
}
.post-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #111827;
}
@media (min-width: 640px) {
  .post-card__title {
    font-size: 1.25rem;
  }
}
.post-card__title a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s;
}
.post-card:hover .post-card__title a {
  color: var(--color-primary);
}
.post-card__excerpt {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) {
  .post-card__excerpt {
    font-size: 1rem;
  }
}
.post-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.post-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #6b7280;
}
.post-card__meta-right {
  display: flex;
  gap: 0.75rem;
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent-orange);
  text-decoration: none;
  transition: color 0.3s;
}
.post-card__link:hover {
  color: var(--color-accent-pink);
}
.post-card__link i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.post-card__link:hover i {
  transform: translateX(4px);
}
.blog-list {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 4rem;
}
.blog-list__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
.blog-list__decoration {
  display: none;
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(245, 130, 32, 0.1);
  pointer-events: none;
  -webkit-mask-image: radial-gradient( circle at center, black 0%, transparent 70% );
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}
@media (min-width: 768px) {
  .blog-list__decoration {
    display: block;
  }
}
.blog-list__decoration--top {
  top: 0;
  right: 50%;
  transform: translateX(50%);
}
.blog-list__decoration--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.blog-list__decoration--right {
  bottom: -10rem;
  right: 0;
}
.blog-list__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 2rem 0;
}
.blog-list__actions {
  text-align: center;
  margin-top: 2.5rem;
}
.blog-list__pagination {
  margin-top: 2.5rem;
  text-align: center;
}
.post-single {
  width: 100%;
  position: relative;
}
.post-single__container {
  position: relative;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 6rem 1rem;
}
@media (min-width: 768px) {
  .post-single__container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  .post-single__container {
    padding-top: 8rem;
  }
}
.post-single__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .post-single__grid {
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .post-single__grid {
    grid-template-columns: 1fr 460px;
    gap: 3rem;
  }
}
.post-single__main {
  width: 100%;
}
.post-single__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .post-single__wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}
.post-single__share-sticky {
  display: none;
}
@media (min-width: 1024px) {
  .post-single__share-sticky {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 7rem;
    height: fit-content;
    flex-shrink: 0;
  }
}
.share-icon {
  font-size: 1.25rem;
  color: inherit;
  transition: color 0.2s;
}
.share-icon:hover {
  color: var(--color-primary);
}
.post-content {
  flex: 1;
  position: relative;
  max-width: 100%;
}
.post-content__media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media (min-width: 640px) {
  .post-content__media {
    aspect-ratio: 16/9;
  }
}
.post-content__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}
.post-content__img.post-content__img_placeholder {
  object-fit: contain;
  padding: 4rem;
}
.post-content__header {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.post-content__title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .post-content__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .post-content__title {
    font-size: 3rem;
  }
}
.post-content__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.post-content__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}
.post-content__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.post-content__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.chip {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.chip--dark {
  background-color: #374151;
  color: #fff;
}
.chip--dark:hover {
  background-color: var(--color-primary);
}
.chip--light {
  background-color: #f3f4f6;
  color: #374151;
}
.chip--light:hover {
  background-color: rgba(245, 130, 32, 0.1);
  color: var(--color-primary);
}
.rich-text {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}
.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4 {
  color: #1c1c1c;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.rich-text p {
  font-size: 21px;
  margin-bottom: 1.5rem;
}
.rich-text ul, .rich-text ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.rich-text li {
  margin-bottom: 0.5rem;
}
.rich-text a {
  color: var(--color-primary);
  text-decoration: none;
}
.rich-text a:hover {
  text-decoration: underline;
}
.rich-text blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  font-style: italic;
  color: #4b5563;
  margin: 1.5rem 0;
}
.post-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: start;
}
@media (min-width: 1024px) {
  .post-sidebar {
    position: sticky;
    top: 8rem;
    align-self: start;
    height: fit-content;
    z-index: 10;
    transition: top 0.3s ease-in-out;
  }
  body.nav-is-hidden .post-sidebar {
    top: 1rem;
  }
}
.sidebar-widget {
  width: 100%;
}
.sidebar-widget__title {
  background-color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  color: #111827;
}
.sidebar-list, .sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li, .sidebar-tags li {
  margin: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  line-height: 1.25;
}
.chip--light {
  background-color: #f3f4f6;
  color: #374151;
}
.chip--light:hover {
  background-color: rgba( 245, 130, 32, 0.1 );
  color: var(--color-primary);
}
.sidebar-widget--pinterest {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .sidebar-widget--pinterest {
    padding: 1.5rem;
  }
}
.sidebar-widget__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
.sidebar-widget__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 0;
}
.post-content__share-bottom {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .post-content__share-bottom {
    flex-wrap: nowrap;
  }
}
.btn-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, background-color 0.2s;
}
.btn-share--fb {
  background-color: #1877f2;
}
.btn-share--fb:hover {
  background-color: #145dbf;
}
.btn-share--ig {
  background: linear-gradient(to right, #f58529, #dd2a7b, #8134af);
}
.btn-share--ig:hover {
  opacity: 0.9;
}
.btn-share--li {
  background-color: #0077b5;
}
.btn-share--li:hover {
  background-color: #005983;
}
.btn-share--tt {
  background-color: #000;
}
.btn-share--tt:hover {
  background-color: #1f2937;
}
.btn-share--sc {
  background-color: #fffc00;
  color: #000;
}
.btn-share--sc:hover {
  opacity: 0.9;
}
.btn-share--pin {
  background-color: #e60023;
}
.btn-share--pin:hover {
  background-color: #ad0019;
}
.related-posts {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.related-posts__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .related-posts__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.related-posts__blob {
  display: none;
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba( 245, 130, 32, 0.1 );
  pointer-events: none;
  -webkit-mask-image: radial-gradient( circle at center, black 0%, transparent 70% );
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}
@media (min-width: 768px) {
  .related-posts__blob {
    display: block;
  }
}
.related-posts__blob--top {
  top: 0;
  right: 50%;
  transform: translateX(50%);
}
.related-posts__blob--left {
  top: 50%;
  left: 0;
}
.related-posts__blob--right {
  bottom: -10rem;
  right: 0;
}
.related-posts__header {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.related-posts__heading {
  font-family: var(--font-header);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .related-posts__heading {
    font-size: 3rem;
  }
}
.related-posts__header .btn {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.related-posts__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article-card {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.article-card__image-link {
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.article-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.7s ease;
  display: block;
}
.article-card__image.article-card__image_placeholder {
  object-fit: contain;
  padding: 1.5rem;
}
.article-card__image-link:hover .article-card__image {
  transform: scale(1.05);
}
.article-card__date {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6b7280;
  display: block;
}
.article-card__title {
  font-family: var(--font-header);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .article-card__title {
    font-size: 1.25rem;
  }
}
.article-card__title a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.article-card__title a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.article-card__excerpt {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #4b5563;
  flex: 1;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
}
.article-card__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}
.related-posts__actions {
  text-align: center;
  margin-top: 2.5rem;
}
.related-posts__actions .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
.btn__icon {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
.btn:hover .btn__icon {
  transform: rotate(0deg);
}
.error-404 {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-color: var(--color-white);
  text-align: center;
}
.error-404__container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-404__header {
  margin-bottom: 1.5rem;
}
.error-404__code {
  font-family: var(--font-header);
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin: 0 0 0.5rem 0;
  background: -webkit-linear-gradient(45deg, var(--color-primary), #ffad65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 8rem;
  }
}
.error-404__title {
  font-family: var(--font-header);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}
.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.error-404__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}
.error-404 .btn i {
  margin-left: 0.5rem;
}
.archive-section {
  width: 100%;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .archive-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
.archive-section__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
.archive-section__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.archive-section__title {
  font-family: var(--font-header);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .archive-section__title {
    font-size: 3rem;
  }
}
.archive-section__title span {
  opacity: 0.6;
  font-weight: 400;
  font-size: 0.7em;
  display: block;
  margin-bottom: 0.5rem;
}
.archive-section__description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
}
.archive-section__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
  color: #6b7280;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #f9fafb;
  border-radius: 0.5rem;
}
.archive-section__pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.pagination-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.pagination-nav .page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.pagination-nav .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  cursor: default;
}
.pagination-nav .next, .pagination-nav .prev {
  padding: 0 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  gap: 0.5rem;
}
.pagination-nav .next i, .pagination-nav .prev i {
  font-size: 0.75rem;
}
.default-page {
  position: relative;
  width: 100%;
}
.default-page__container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: var(--spacing-lg) var(--page-gutter);
}
@media (max-width: 768px) {
  .default-page__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.default-page__article {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}
.default-page__title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  color: var(--font-color-primary);
}
@media (min-width: 768px) {
  .default-page__title {
    font-size: 3rem;
  }
}
.default-page__body {
  color: var(--font-color-secondary);
}
.entry-content {
  line-height: 1.75;
  font-size: 1.125rem;
}
.entry-content p {
  margin-bottom: 1.5em;
}
.entry-content h2, .entry-content h3 {
  color: var(--font-color-primary);
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 1em;
}
.entry-content a {
  color: #0066cc;
  text-decoration: underline;
}
.search-results {
  width: 100%;
  position: relative;
}
.search-results__container {
  width: 100%;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 4rem 1rem;
}
.search-results__header {
  text-align: center;
  margin-bottom: 3rem;
}
.search-results__title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .search-results__title {
    font-size: 2.25rem;
  }
}
.search-results__title span {
  color: var(--primary, #f58220);
  font-style: italic;
}
.search-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .search-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .search-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.search-results__empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  gap: 1.5rem;
}
.search-results__empty-text {
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
}
.search-results__search-box {
  width: 100%;
  max-width: 500px;
}
.search-results__pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.search-form {
  width: 100%;
}
.search-form__group {
  display: flex;
  position: relative;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-form__group:focus-within {
  border-color: var(--primary, #f58220);
}
.search-form__input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 1rem;
}
.search-form__submit {
  background-color: transparent;
  border: none;
  padding: 0 1.25rem;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s;
}
.search-form__submit:hover {
  color: var(--primary, #f58220);
}
