* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: radial-gradient(1200px 500px at 50% -100px, #fce8ef, #f7f8f6) fixed;
  color: #1f2a37;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3 {
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 246, 0.95);
  border-bottom: 1px solid rgba(31, 42, 55, 0.1);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.site-header .site-logo {
  display: inline-block;
  text-decoration: none;
  color: #1f2a37;
  line-height: 1;
}

.site-header .site-logo:hover {
  text-decoration: none;
  color: #1f2a37;
  opacity: 0.85;
}

.site-logo__text {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 18px 60px;
}

.about {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 8px;
}

.about__header {
  margin-bottom: 28px;
}

.about__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.about__tagline {
  font-size: 1.1rem;
  color: rgba(31, 42, 55, 0.68);
  margin: 0;
  line-height: 1.5;
}

.about__figure {
  margin: 0 0 28px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
  border: 1px solid rgba(31, 42, 55, 0.1);
}

.about__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about__body {
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(31, 42, 55, 0.92);
}

.about__body p {
  margin: 0 0 1.25rem;
}

.about__body p:last-child {
  margin-bottom: 0;
}

.about__lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #1f2a37;
}

.about__cta {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.about__cta-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.about__cta-desc {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(31, 42, 55, 0.68);
}

.about__cta-link {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #5c8fc9;
  text-decoration: none;
}

.about__cta-link:hover {
  text-decoration: underline;
}

.about__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 42, 55, 0.1);
}

.site-footer {
  border-top: 1px solid rgba(31, 42, 55, 0.1);
  background: rgba(247, 248, 246, 0.72);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 18px 20px;
  display: grid;
  gap: 20px;
}

.site-footer__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-card {
  padding: 14px 0 14px 14px;
  border-left: 3px solid #3d8b74;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 10px 10px 0;
  color: #1f2a37;
  text-decoration: none;
  display: block;
}

.footer-card--link:hover {
  text-decoration: none;
  border-left-color: #5c8fc9;
  background: rgba(255, 255, 255, 0.85);
}

.footer-card__title {
  display: block;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.footer-card__desc {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(31, 42, 55, 0.68);
  line-height: 1.5;
}

.footer-card__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5c8fc9;
}

.site-footer__copyright {
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.9rem;
  padding-top: 8px;
  border-top: 1px solid rgba(31, 42, 55, 0.1);
}

@keyframes hero-pan {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-search {
  position: relative;
  background-image: url("../images/photos/hero-laundry-flowing-linens.jpg");
  background-size: 120% 120%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  animation: hero-pan 30s ease-in-out infinite;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
  padding: 48px 18px;
  overflow: hidden;
}

.hero-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 248, 246, 0.88) 0%, rgba(247, 248, 246, 0.82) 50%, rgba(247, 248, 246, 0.88) 100%);
  border-radius: inherit;
  z-index: 0;
}

.hero-search__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-search__header {
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.4s ease, padding 0.4s ease;
}

.hero-search__inner:has(.search-results--visible) .hero-search__header {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.hero-search__title {
  font-family: "Dancing Script", cursive;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1f2a37;
  margin: 0 0 8px;
}

.hero-search__subtitle {
  margin: 0 auto 24px;
  max-width: 560px;
  color: rgba(31, 42, 55, 0.78);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .hero-search {
    animation: none;
  }
  .hero-search__header,
  .search-results-wrapper,
  .search-results {
    transition: none;
  }
  .hero-search__inner:has(.search-results--visible) .hero-search__header {
    transition: none;
  }
}
.search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}

.search__input {
  border: 1px solid rgba(31, 42, 55, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
}

.search__input:focus {
  border-color: rgba(47, 128, 237, 0.45);
  box-shadow: 0 0 0 5px rgba(47, 128, 237, 0.14);
}

.search__button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: #c77b9a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 128, 237, 0.18);
}

.search__button:hover {
  filter: brightness(0.98);
}

.search-results-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  transition: grid-template-rows 0.4s ease, margin 0.4s ease;
}

.search-results-wrapper:has(.search-results--visible) {
  grid-template-rows: 1fr;
}

.search-results {
  min-height: 0;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  -webkit-overflow-scrolling: touch;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-results:not(.search-results--visible) {
  border-color: transparent;
}

.search-results__item {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(31, 42, 55, 0.1);
}

.search-results__item:last-child {
  border-bottom: 0;
}

.search-results__title {
  font-weight: 700;
}

.search-results__title a {
  color: #5c8fc9;
  text-decoration: none;
}

.search-results__title a:hover {
  text-decoration: underline;
}

.search-results__meta {
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.9rem;
  margin-top: 2px;
}

.search-results__suggest {
  border-top: 1px solid rgba(31, 42, 55, 0.1);
}

.search-results__suggest-link {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5c8fc9;
  text-decoration: none;
}

.search-results__suggest-link:hover {
  text-decoration: underline;
}

.section {
  padding: 34px 0 10px;
}

.section__header {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.section__title {
  font-size: 1.35rem;
}

.section__lede {
  margin: 0;
  color: rgba(31, 42, 55, 0.68);
}

.featured-reads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.featured-reads__card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 180ms ease;
}

.featured-reads__img-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #eef2f3;
  flex-shrink: 0;
}

.featured-reads__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-reads__card > .featured-reads__meta,
.featured-reads__card > .featured-reads__title,
.featured-reads__card > .featured-reads__excerpt {
  padding-left: 16px;
  padding-right: 16px;
}

.featured-reads__card > .featured-reads__meta {
  padding-top: 12px;
  padding-bottom: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.9rem;
}

.featured-reads__card > .featured-reads__excerpt {
  padding-bottom: 14px;
}

.featured-reads__card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(31, 42, 55, 0.08);
}

.featured-reads__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  margin: 0;
  border-radius: 999px;
  background: #e7f5ef;
  color: rgba(31, 42, 55, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(61, 139, 116, 0.18);
}

.featured-reads__title {
  margin: 8px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2a37;
}

.featured-reads__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(31, 42, 55, 0.68);
  line-height: 1.5;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pillar-card {
  display: grid;
  grid-template-rows: 160px auto auto 1fr;
  gap: 8px;
  padding: 0;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
  min-height: 280px;
  overflow: hidden;
}

.pillar-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.pillar-card__img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #eef2f3;
}

.pillar-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pillar-card__kicker,
.pillar-card__title,
.pillar-card__desc {
  padding: 0 18px;
}

.pillar-card__kicker {
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.85rem;
  padding-top: 14px;
}

.pillar-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  padding-bottom: 4px;
}

.pillar-card__desc {
  color: rgba(31, 42, 55, 0.68);
  padding-bottom: 18px;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tip-card {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tip-card--with-image {
  padding: 0;
}

.tip-card__img-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #eef2f3;
  flex-shrink: 0;
}

.tip-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tip-card--with-image .tip-card__meta,
.tip-card--with-image .tip-card__title,
.tip-card--with-image .tip-card__excerpt {
  padding-left: 16px;
  padding-right: 16px;
}

.tip-card--with-image .tip-card__meta {
  padding-top: 12px;
}

.tip-card--with-image .tip-card__excerpt {
  padding-bottom: 14px;
}

.tip-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.9rem;
}

.tip-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e7f5ef;
  color: rgba(31, 42, 55, 0.82);
  border: 1px solid rgba(61, 139, 116, 0.18);
}

.tip-card__title {
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.tip-card__link {
  color: #5c8fc9;
}

.tip-card__link:hover {
  text-decoration: underline;
}

.tip-card__excerpt {
  margin: 0;
  color: rgba(31, 42, 55, 0.68);
}

.tip-card--read-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  min-height: 140px;
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 0.2s ease;
  border-color: rgba(31, 42, 55, 0.14);
}

.tip-card--read-all:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(31, 42, 55, 0.08);
  border-color: #5c8fc9;
}

.tip-card__read-all-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: #5c8fc9;
  margin-bottom: 6px;
}

.tip-card__read-all-desc {
  font-size: 0.9rem;
  color: rgba(31, 42, 55, 0.68);
}

.trust {
  padding-top: 18px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
}

.trust-card__title {
  font-weight: 700;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.trust-card__desc {
  color: rgba(31, 42, 55, 0.68);
  margin-top: 6px;
}

.trust-card__cta {
  margin-top: 10px;
  color: #c77b9a;
  font-weight: 700;
}

.trust-card--link:hover {
  text-decoration: none;
  border-color: rgba(47, 128, 237, 0.28);
}

.article {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
  padding: 26px 18px;
  max-width: 100%;
  min-width: 0;
}

.article__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.article__inner > div {
  min-width: 0;
}

.article__header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  min-width: 0;
}

.article__header h1 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article__kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e5e6e8;
  border: 1px solid rgba(31, 42, 55, 0.12);
  font-size: 0.92rem;
  color: rgba(31, 42, 55, 0.72);
}

.article__time {
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.95rem;
}

.post-content {
  font-size: 1.06rem;
  color: rgba(31, 42, 55, 0.92);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.post-content p {
  margin: 0 0 1rem;
}

.post-content h2, .post-content h3 {
  margin-top: 1.8rem;
}

.post-content a {
  color: #5c8fc9;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.post-content pre,
.post-content code {
  max-width: 100%;
  overflow-x: auto;
}

.post-content h3.sources-section {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(31, 42, 55, 0.68);
}

.post-content h3.sources-section + ul {
  font-size: 0.85rem;
  color: rgba(31, 42, 55, 0.68);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.post-content h3.sources-section + ul a {
  color: #5c8fc9;
}

.hack-box {
  margin: 18px 0;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(61, 139, 116, 0.22);
  background: #e7f5ef;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hack-box__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.hack-box__body {
  margin: 0;
  color: rgba(31, 42, 55, 0.86);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 921px) {
  .hack-box--content {
    display: none !important;
  }
}
.widget--hack.hack-box-sidebar {
  background: #e7f5ef;
  border-color: rgba(61, 139, 116, 0.22);
}

@media (max-width: 920px) {
  .hack-box-sidebar {
    display: none !important;
  }
}
.article__footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 42, 55, 0.1);
}

.article__footer-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article__footer-search i {
  font-size: 0.9em;
  opacity: 0.9;
}

.secondary-tags {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: rgba(31, 42, 55, 0.68);
  line-height: 1.5;
}

.secondary-tags__label {
  font-weight: 600;
  margin-right: 4px;
}

.secondary-tags__item {
  font-weight: 400;
}

.secondary-tags__sep {
  font-weight: 400;
}

.recommended-posts {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 42, 55, 0.08);
}

.recommended-posts__title {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0 0 10px;
  color: #1f2a37;
}

.recommended-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recommended-posts__item {
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.recommended-posts__item:last-child {
  margin-bottom: 0;
}

.recommended-posts__item a {
  color: #5c8fc9;
  text-decoration: none;
}

.recommended-posts__item a:hover {
  text-decoration: underline;
}

.author-bio {
  margin-top: 20px;
  padding: 14px;
  background: rgba(247, 248, 246, 0.8);
  border-radius: 18px;
  border-left: 3px solid #3d8b74;
  font-size: 0.92rem;
  line-height: 1.5;
}

.author-bio__title {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0 0 6px;
}

.author-bio__text {
  margin: 0 0 8px;
  color: rgba(31, 42, 55, 0.68);
}

.author-bio__link {
  font-weight: 600;
  color: #5c8fc9;
  text-decoration: none;
}

.author-bio__link:hover {
  text-decoration: underline;
}

.sidebar {
  position: sticky;
  top: 60px;
  display: grid;
  gap: 12px;
}

body.sidebar-align-top .sidebar {
  top: 12px;
}

.widget {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
}

.widget__title {
  font-weight: 800;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0 0 8px;
}

.widget__muted {
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.95rem;
  margin: 0 0 8px;
}

.widget--share .share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.widget--share .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(31, 42, 55, 0.1);
  background: #ffffff;
  color: #1f2a37;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.widget--share .share-btn:hover {
  text-decoration: none;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

.widget--share .share-btn--facebook:hover {
  background: #1877f2;
  color: #ffffff;
}

.widget--share .share-btn--x:hover {
  background: #14171a;
  color: #ffffff;
}

.widget--share .share-btn--pinterest:hover {
  background: #bd081c;
  color: #ffffff;
}

.widget--share .share-btn--instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.widget--share .share-copy-hint {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: rgba(31, 42, 55, 0.68);
}

.sidebar-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sidebar-related-item {
  margin: 0;
}

.sidebar-related-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 55, 0.1);
  background: rgba(247, 248, 246, 0.6);
  color: #1f2a37;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sidebar-related-link:hover {
  text-decoration: none;
  color: #1f2a37;
  border-color: rgba(31, 42, 55, 0.18);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(31, 42, 55, 0.06);
}

.sidebar-related-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef2f3;
}

.sidebar-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sidebar-related-title {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-related-link:hover .sidebar-related-title {
  color: #5c8fc9;
}

.quick-fix {
  display: grid;
  gap: 10px;
}

.quick-fix__item {
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(247, 248, 246, 0.72);
}

.quick-fix__name {
  font-weight: 800;
  margin: 0 0 4px;
}

.quick-fix__steps {
  margin: 0;
  color: rgba(31, 42, 55, 0.84);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #5c8fc9;
  color: #fff;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

.btn--secondary {
  background: rgba(31, 42, 55, 0.06);
  color: #1f2a37;
  border: 1px solid rgba(31, 42, 55, 0.1);
  box-shadow: none;
}

.suggest-guide-form__inner {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggest-guide-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.suggest-guide-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2a37;
}

.suggest-guide-form__required {
  color: #c77b9a;
}

.suggest-guide-form__input,
.suggest-guide-form__textarea {
  padding: 12px 14px;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 10px;
  background: #ffffff;
  color: #1f2a37;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.4;
}

.suggest-guide-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.suggest-guide-form__input:focus,
.suggest-guide-form__textarea:focus {
  outline: none;
  border-color: #5c8fc9;
  box-shadow: 0 0 0 2px rgba(92, 143, 201, 0.2);
}

.suggest-guide-form__input::placeholder,
.suggest-guide-form__textarea::placeholder {
  color: rgba(31, 42, 55, 0.68);
}

.suggest-guide-form__submit {
  align-self: flex-start;
  margin-top: 4px;
}

.suggest-guide-form__placeholder {
  padding: 18px;
  background: #eef2f3;
  border-radius: 18px;
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.95rem;
}

.suggest-guide-form__placeholder a {
  color: #5c8fc9;
}

.suggest-guide-thanks__inner {
  max-width: 520px;
  padding: 24px;
  background: #e7f5ef;
  border: 1px solid rgba(61, 139, 116, 0.2);
  border-radius: 18px;
}

.suggest-guide-thanks__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2a37;
}

.suggest-guide-thanks__text {
  margin: 0;
  color: rgba(31, 42, 55, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}

.suggest-guide-thanks__text a {
  color: #5c8fc9;
}

.thank-you-page__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-page__img-wrap {
  margin-bottom: 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.06);
}

.thank-you-page__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}

.thank-you-page__title {
  margin: 0 0 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2a37;
}

.thank-you-page__text {
  margin: 0 0 20px;
  color: rgba(31, 42, 55, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.thank-you-page__text a {
  color: #5c8fc9;
}

.thank-you-page__btn {
  margin-top: 8px;
}

@media (max-width: 920px) {
  .pillars {
    grid-template-columns: 1fr;
  }
  .featured-reads {
    grid-template-columns: 1fr;
  }
  .latest-grid {
    grid-template-columns: 1fr;
  }
  .trust__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__cards {
    grid-template-columns: 1fr;
  }
  .article__inner {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .sidebar {
    position: static;
    display: grid;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 42, 55, 0.1);
  }
  .sidebar .widget--share {
    order: -1;
  }
  .sidebar .widget--related {
    order: 0;
  }
  .site-main {
    padding-left: 14px;
    padding-right: 14px;
  }
  .article {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media print {
  body {
    background: #fff !important;
  }
  .site-header, .site-footer {
    display: none !important;
  }
  .site-main {
    max-width: none;
    padding: 0;
  }
  .article, .widget, .pillar-card, .tip-card, .trust-card, .featured-reads__card {
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
  }
  .tip-card--read-all {
    min-height: auto;
    padding: 14px;
  }
  .btn {
    display: none !important;
  }
  a {
    text-decoration: none !important;
    color: #000 !important;
  }
}

/*# sourceMappingURL=main.css.map */