* {
  box-sizing: border-box; }

body.blog {
  margin: 0;
  background: #14091a;
  color: #faf6f0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem; }

.accent {
  color: #D4A857; }

.btn-cta {
  display: inline-block;
  background: #D4A857;
  color: #14091a;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  transition: transform .12s ease, background .12s ease; }
  .btn-cta:hover {
    color: #14091a;
    background: #d8b067;
    transform: translateY(-1px); }
  .btn-cta--lg {
    padding: 0.8rem 1.6rem;
    font-size: 1.05rem; }

.blog-hero {
  text-align: center;
  padding: 5rem 0 3rem;
  background: radial-gradient(1100px 380px at 50% -8%, rgba(212, 168, 87, 0.14), transparent 70%), linear-gradient(180deg, #251131 0%, #14091a 100%);
  border-bottom: 1px solid rgba(182, 133, 168, 0.16); }

.blog-hero__title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 5rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em; }

.blog-hero__sub {
  color: #dbb8d0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  max-width: 40rem;
  margin: 0 auto; }

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent, #D4A857);
  color: var(--accent, #D4A857);
  background: transparent; }

.pill--filter {
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 0.45rem 1rem;
  border-color: rgba(182, 133, 168, 0.16);
  color: #dbb8d0;
  background: #241326;
  transition: all .12s ease; }

.pill--filter:hover {
  color: #faf6f0;
  border-color: var(--accent, #D4A857); }

.pill--filter.is-active {
  color: #14091a;
  background: var(--accent, #D4A857);
  border-color: var(--accent, #D4A857); }

.pill--on-banner {
  background: rgba(20, 9, 26, 0.6);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 2.4rem; }

.post-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 4rem; }

.post-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #241326;
  border: 1px solid rgba(182, 133, 168, 0.16);
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
  .post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 87, 0.55);
    box-shadow: 0 8px 30px rgba(212, 168, 87, 0.12);
    color: inherit; }
  .post-card:hover .post-card__watermark {
    transform: scale(1.04); }

.post-card__banner {
  position: relative;
  min-height: 300px;
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  background: radial-gradient(600px 220px at 78% 0%, rgba(255, 255, 255, 0.1), transparent 60%), linear-gradient(135deg, var(--accent, #D4A857) 0%, color-mix(in srgb, var(--accent, #D4A857) 30%, #14091a) 100%); }

.post-card__banner-title {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  max-width: 80%; }

.post-card__banner-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600; }

.post-card__watermark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 240px;
  height: auto;
  color: #fff;
  opacity: 0.14;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }

.pill--on-banner {
  position: relative;
  z-index: 1; }

.post-card__body {
  padding: 1.4rem 1.6rem 1.7rem; }

.post-card__title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15; }

.post-card__excerpt {
  color: #dbb8d0;
  margin: 0 0 0.9rem;
  font-size: 1.02rem; }

.post-card__meta {
  color: #b685a8;
  font-size: 0.85rem;
  margin: 0; }

.post .wrap {
  max-width: 800px; }

.post__hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  background: radial-gradient(900px 340px at 70% -10%, rgba(var(--accent-rgb, 212, 168, 87), 0.1), transparent 70%), linear-gradient(180deg, #251131 0%, #14091a 100%);
  border-bottom: 1px solid rgba(182, 133, 168, 0.16); }

.post__watermark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 380px;
  height: auto;
  color: #D4A857;
  opacity: 0.07;
  pointer-events: none; }

.post__hero-inner {
  position: relative; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.6rem; }
  .breadcrumbs a {
    color: #dbb8d0; }
  .breadcrumbs a:hover {
    color: #D4A857; }
  .breadcrumbs__sep {
    color: #b685a8; }
  .breadcrumbs__current {
    color: #f4ecdc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 34ch; }

.post__title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1; }

.post__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: #dbb8d0;
  font-size: 0.95rem;
  margin: 0 0 1.1rem; }
  .post__byline i {
    color: #b685a8;
    margin-right: 0.3rem; }

.post__back {
  display: inline-block;
  color: #dbb8d0;
  font-weight: 600;
  font-size: 0.9rem; }

.post__back:hover {
  color: #D4A857; }

.takeaways {
  margin: 2.2rem 0 0.5rem;
  background: #241326;
  border: 1px solid rgba(182, 133, 168, 0.16);
  border-left: 3px solid var(--accent, #D4A857);
  border-radius: 14px;
  padding: 1.4rem 1.6rem; }
  .takeaways__label {
    color: var(--accent, #D4A857);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.8rem;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  .takeaways ul {
    margin: 0;
    padding-left: 1.2rem; }
  .takeaways li {
    margin-bottom: 0.7rem;
    color: #f4ecdc;
    line-height: 1.55; }
  .takeaways li:last-child {
    margin-bottom: 0; }

.tool-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "icon titles cta" "icon desc   cta";
  align-items: center;
  column-gap: 1.1rem;
  row-gap: 0.15rem;
  margin: 1.4rem 0 0.5rem;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.1) 0%, #241326 55%);
  border: 1px solid rgba(212, 168, 87, 0.35);
  border-radius: 14px;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .tool-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 168, 87, 0.65);
    box-shadow: 0 6px 22px rgba(212, 168, 87, 0.12);
    color: inherit; }
    .tool-card:hover .tool-card__cta {
      color: #dcb977; }
    .tool-card:hover .tool-card__cta i {
      transform: translateX(3px); }

.tool-card__icon {
  grid-area: icon;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212, 168, 87, 0.14);
  color: #D4A857;
  font-size: 1.35rem; }

.tool-card__titles {
  grid-area: titles;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0; }

.tool-card__kicker {
  color: #D4A857;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.tool-card__name {
  color: #faf6f0;
  font-weight: 700;
  font-size: 1.05rem; }

.tool-card__desc {
  grid-area: desc;
  color: #dbb8d0;
  font-size: 0.9rem;
  line-height: 1.45;
  min-width: 0; }

.tool-card__cta {
  grid-area: cta;
  color: #D4A857;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap; }
  .tool-card__cta i {
    transition: transform .2s ease; }

@media (max-width: 640px) {
  .tool-card {
    grid-template-areas: "icon titles" "desc desc" "cta  cta";
    grid-template-columns: auto 1fr;
    row-gap: 0.6rem; } }

.post__section-title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0 0 1rem; }

.post__faq {
  padding-bottom: 1rem; }

.faq-item {
  border: 1px solid rgba(182, 133, 168, 0.16);
  border-radius: 12px;
  background: #241326;
  margin-bottom: 0.7rem; }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.2rem;
    font-weight: 600;
    color: #f4ecdc; }
    .faq-item summary i {
      color: #b685a8;
      transition: transform 0.2s ease;
      flex-shrink: 0; }
    .faq-item summary::-webkit-details-marker {
      display: none; }
    .faq-item summary:hover {
      color: #D4A857; }
  .faq-item[open] summary i {
    transform: rotate(180deg); }
  .faq-item p {
    margin: 0;
    padding: 0 1.2rem 1.1rem;
    color: #dbb8d0;
    line-height: 1.6; }

.post__sources {
  padding-bottom: 1rem; }
  .post__sources ul {
    margin: 0;
    padding-left: 1.2rem; }
  .post__sources li {
    margin-bottom: 0.45rem; }
  .post__sources a {
    color: #D4A857;
    text-decoration: none;
    font-size: 0.95rem; }
  .post__sources a:hover {
    color: #debd80; }

.post__share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
  border-top: 1px solid rgba(182, 133, 168, 0.16);
  margin-top: 1.4rem; }

.post__share-label {
  color: #dbb8d0;
  font-weight: 600;
  font-size: 0.95rem; }

.post__share-buttons {
  display: flex;
  gap: 0.7rem; }

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 87, 0.1);
  border: 2px solid rgba(212, 168, 87, 0.3);
  color: #D4A857;
  cursor: pointer;
  transition: all 0.25s ease; }
  .share-btn i {
    font-size: 1.05rem; }
  .share-btn:hover {
    background: #D4A857;
    border-color: #D4A857;
    color: #14091a;
    transform: translateY(-2px); }

.post__body {
  font-size: 1.18rem;
  padding-bottom: 2rem; }
  .post__body h2 {
    font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 1.7rem;
    margin: 2.4rem 0 0.8rem;
    letter-spacing: -0.01em; }
  .post__body h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 2rem 0 0.6rem; }
  .post__body p {
    margin: 0 0 1.25rem;
    color: #f4ecdc; }
  .post__body ul, .post__body ol {
    margin: 0 0 1.4rem;
    padding-left: 1.3rem;
    color: #f4ecdc; }
  .post__body li {
    margin-bottom: 0.5rem; }
  .post__body a {
    color: #D4A857;
    text-decoration: underline;
    text-underline-offset: 3px; }
  .post__body blockquote {
    border-left: 3px solid #D4A857;
    margin: 1.5rem 0;
    padding: 0.2rem 0 0.2rem 1.2rem;
    color: #dbb8d0;
    font-style: italic; }
  .post__body code {
    background: #241326;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-size: 0.9em; }
  .post__body pre {
    background: #241326;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    overflow-x: auto;
    border: 1px solid rgba(182, 133, 168, 0.16); }
  .post__body img {
    max-width: 100%;
    border-radius: 12px; }
  .post__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.6rem;
    font-size: 1rem;
    line-height: 1.4; }
    .post__body table th, .post__body table td {
      text-align: left;
      padding: 0.75rem 0.9rem;
      border-bottom: 1px solid rgba(182, 133, 168, 0.16);
      vertical-align: top; }
    .post__body table thead th {
      color: #D4A857;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(212, 168, 87, 0.4); }
    .post__body table tbody td:first-child {
      color: #dbb8d0;
      font-weight: 500; }
    .post__body table tbody tr:last-child td {
      border-bottom: 0; }

.post__cta {
  padding-bottom: 4rem; }

.cta-card {
  background: radial-gradient(600px 200px at 50% 0%, rgba(212, 168, 87, 0.16), transparent 70%), #241326;
  border: 1px solid rgba(212, 168, 87, 0.25);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  text-align: center; }
  .cta-card h2 {
    font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0 0 0.5rem; }
  .cta-card p {
    color: #dbb8d0;
    margin: 0 0 1.3rem; }

.keep-reading {
  margin-top: 2.2rem; }

.keep-reading .post__section-title {
  margin-bottom: 0.9rem; }

.keep-reading__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0.7rem;
  background: #241326;
  border: 1px solid rgba(182, 133, 168, 0.16);
  border-radius: 14px;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease; }
  .keep-reading__card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 168, 87, 0.5);
    color: inherit; }
    .keep-reading__card:hover .keep-reading__arrow {
      transform: translateX(3px);
      color: #D4A857; }

.keep-reading__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0; }

.keep-reading__body .pill {
  align-self: flex-start; }

.keep-reading__title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #faf6f0;
  line-height: 1.25; }

.keep-reading__meta {
  color: #b685a8;
  font-size: 0.82rem; }

.keep-reading__arrow {
  flex-shrink: 0;
  color: #b685a8;
  font-size: 1.1rem;
  transition: transform .2s ease, color .2s ease; }

@media (max-width: 640px) {
  .blog-hero {
    padding: 3.5rem 0 2.2rem; }
  .post-card__banner {
    min-height: 150px; } }
