/* =========================================================
   ARCHIVE GRID
   ========================================================= */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* =========================================================
   ARCHIVE CARD — BASE
   ========================================================= */

.archive-card {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: archiveCardFadeUp 0.6s ease forwards;
}

/* =========================================================
   ARCHIVE CARD — IMAGE
   ========================================================= */

.archive-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
}

.archive-thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: all 1s ease;
}

.archive-thumb img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* =========================================================
   ARCHIVE CARD — TITLE
   ========================================================= */

.archive-title {
  font-family: var(--font-display);
  font-size: 24px;
  text-align: left;
  margin-top: var(--space-xs);
}

.archive-title a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
}

/* =========================================================
   ARCHIVE CARD — ANIMATION
   ========================================================= */

@keyframes archiveCardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   ARCHIVE CARD — CASCADE EFFECT (OPTIONAL)
   ========================================================= */

.archive-card:nth-child(1) { animation-delay: 0.05s; }
.archive-card:nth-child(2) { animation-delay: 0.1s; }
.archive-card:nth-child(3) { animation-delay: 0.15s; }
.archive-card:nth-child(4) { animation-delay: 0.2s; }
.archive-card:nth-child(5) { animation-delay: 0.25s; }
.archive-card:nth-child(6) { animation-delay: 0.3s; }

/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .archive-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   ARCHIVE GRID — RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  /* Hide 4th item */
  .archive-grid > *:nth-child(4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   RECIPE TAGS CAROUSEL
   ========================================================= */

.recipe-tags-carousel {
  position: relative;
  width: 100vw;
  margin: var(--space-md) 0 var(--space-sm);

  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* =========================================================
   EDGE FADE — CONTINUITY INDICATOR
   ========================================================= */

.recipe-tags-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(251, 247, 242, 0),
    rgba(251, 247, 242, 1)
  );
}

/* =========================================================
   TAGS TRACK — SCROLL CONTAINER
   ========================================================= */

.tags-track {
  display: flex;
  gap: var(--space-md);
  padding: 0 var(--space-lg);

  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.tags-track::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   DESKTOP DRAG AFFORDANCE
   ========================================================= */

@media (hover: hover) {
  .tags-track {
    cursor: grab;
  }

  .tags-track:active {
    cursor: grabbing;
  }
}

/* =========================================================
   TAG ITEM
   ========================================================= */

.tag-item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  scroll-snap-align: start;
}

/* =========================================================
   TAG IMAGE
   ========================================================= */

.tag-image {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige);
}

.tag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.6s ease;
  transform-origin: center center;
}

.tag-image:hover img {
  transform: rotate(-3deg) scale(1.02);
}

/* =========================================================
   TAG LABEL
   ========================================================= */

.tag-label {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

/* =========================================================
   TAGS TRACK — ENHANCED SNAP (INTENTIONAL OVERRIDE)
   ========================================================= */

.tags-track {
  display: flex;
  gap: var(--space-md);
  padding: 0 var(--space-lg) var(--space-xs);

  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}




/* =========================================================
   SEARCH MODAL — BASE
   ========================================================= */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  background: rgba(226, 222, 218, 0.6);
}

.modal.is-open {
  display: flex;
}

/* =========================================================
   MODAL CONTENT
   ========================================================= */

.modal-content {
  position: relative;
  width: 90%;
  max-width: 490px;
  margin: 0;

  padding: var(--space-lg) var(--space-md) var(--space-sm);
  border-radius: 8px;

  background: var(--off-white);
}


/* =========================================================
   FORM LAYOUT
   ========================================================= */

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* =========================================================
   INPUT — SEARCH FIELD
   ========================================================= */

.modal-content input {
  width: 100%;
  padding: var(--space-sm);

  font-family: var(--font-base);
  font-size: var(--font-size-md);

  background: var(--white);
  border: none;
  outline: none;

  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.035),
    0 1px 2px rgba(0, 0, 0, 0.03);

  transition: box-shadow 0.25s ease;
}

.modal-content input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.045);
}

.modal-content input::placeholder {
  color: rgba(0, 0, 0, 0.35);
  transition: opacity 0.2s ease;
}

.modal-content input:focus::placeholder {
  opacity: 0;
}

/* =========================================================
   RADIO FILTERS
   ========================================================= */

.modal .search-filters {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  border: 0;
}

.search-filters-label {
  font-size: 0.7rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Radio label container */

.modal .radio {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  cursor: pointer;

  font-size: 0.75rem;
  color: var(--dark);
}

/* Hide native radio */

.modal .radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

/* Custom radio mark */

.modal .radio-mark {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--dark);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
}

/* Checked state */

.modal .radio input[type="radio"]:checked + .radio-mark {
  background: var(--dark);
}

.modal .radio-text {
  line-height: 1;
}

/* Hide unused internal buttons */

.modal-content button:not(.close) {
  display: none;
}

/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.close {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);

  font-size: var(--font-size-md);
  line-height: 1;
  cursor: pointer;

  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.close:hover {
  opacity: 1;
}

/* =========================================================
   OVERLAY CLOSE INDICATOR (HOVER)
   ========================================================= */

.modal::after {
  content: "×";
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);

  font-size: 24px;
  color: var(--medium);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal:hover::after {
  opacity: 0.6;
}

/* =========================================================
   SEARCH MODAL — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .modal .search-filters {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

/* =========================================================
   SEASON MODAL — BASE LAYOUT
   ========================================================= */

.season-modal {
  max-width: 860px;
  padding: 0;
  background: var(--beige);

  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: auto 1fr;
}

/* =========================================================
   SEASON MODAL — HEADER
   ========================================================= */

.season-modal-header {
  grid-column: 1 / -1;
  position: relative;
  padding: var(--space-xs) var(--space-sm);
}

.season-modal-header .close {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-sm);
}

/* =========================================================
   SEASON MODAL — BODY
   ========================================================= */

.season-modal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
}

/* =========================================================
   SEASON MODAL — IMAGE
   ========================================================= */

.season-modal-image {
  position: relative;
  overflow: hidden;
  margin-top: -16px;
}

.season-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   SEASON MODAL — TYPOGRAPHY
   ========================================================= */

.season-modal-title {
  margin: 0;
}

.season-modal-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
  color: var(--dark);
}

.season-modal-description {
  font-size: 14px;
  line-height: 1.45;
  margin: var(--space-xs) 0 var(--space-sm);
  color: var(--medium-dark);
}

/* =========================================================
   SEASON MODAL — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .season-modal {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .season-modal-header {
    order: 1;
  }

  .season-modal-image {
    order: 2;
    margin-top: var(--space-md);
    height: 180px;
  }

  .season-modal-image img {
    height: 100%;
    object-fit: cover;
  }

  .season-modal-body {
    order: 3;
    padding: var(--space-md);
  }

  .season-modal-title h2 {
    font-size: 20px;
  }

  .season-modal-description {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* =========================================================
   CTA EDITORIAL
   ========================================================= */

.cta-editorial {
  width: 100vw;
  background: var(--beige);
}

/* =========================================================
   CTA — INNER GRID
   ========================================================= */

.cta-editorial-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: var(--space-md);

  padding: var(--space-xl) 6vw;
  align-items: center;

  max-width: var(--container-xl);
  margin: 0 auto;
}

/* =========================================================
   CTA — TEXT CONTENT
   ========================================================= */

.cta-content {
  max-width: 370px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.cta-title span {
  font-family: var(--font-hand);
}

.cta-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: var(--medium-dark);
}

.cta-content a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);

  margin-top: -20px;

  font-family: var(--font-base);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--dark);
  transition: opacity var(--transition-fast);
}

/* =========================================================
   CTA — IMAGE
   ========================================================= */

.cta-image {
  position: relative;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;

  background: var(--beige);
  transform: rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   CTA — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .cta-editorial-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 6vw;
  }

  .cta-image img {
    transform: rotate(0);
  }
}

/* =========================================================
   CASA — DECORATION SECTION
   ========================================================= */

.decoracao-section {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: var(--space-xl);

  width: 90vw;
  max-width: 1400px;
  margin: var(--space-xl) auto;
}

/* =========================================================
   DECORATION — LEFT POSTS
   ========================================================= */

.decoracao-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.decoracao-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.decoracao-card h3 {
  margin-top: var(--space-md);

  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
}

/* =========================================================
   DECORATION — RIGHT MENU
   ========================================================= */

.decoracao-menu {
  padding: var(--space-lg);
  background: var(--beige);
}

.decoracao-menu h2 {
  margin-bottom: var(--space-lg);

  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}

/* =========================================================
   DECORATION — MINI CATEGORIES MENU
   ========================================================= */

.decoracao-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.decoracao-categories a {
  display: block;
  padding: var(--space-xxs);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  background: var(--off-white);
  color: var(--dark);

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.decoracao-categories a:hover {
  background-color: var(--medium);
}

/* =========================================================
   DECORATION — RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .decoracao-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);

    width: 80vw;
    margin: 0 auto;
  }

  .decoracao-posts {
    grid-template-columns: 1fr;
  }

  .decoracao-card img {
    height: 360px;
  }

  .decoracao-categories {
    display: block;
  }

  .decoracao-categories a {
    margin: var(--space-sm) 0;
  }
}



/* =========================================================
   FULL WIDTH BLOCKS
   ========================================================= */

.related-container {
  width: 100%;
  background: var(--beige);
  margin: var(--space-xxs) 0 0;
  padding: var(--space-md) 0;
}

.hero-container {
  width: 100%;
  background: var(--beige);
  margin: 0 0 var(--space-lg);
  padding: var(--space-lg) 0;
}

/* =========================================================
   RELATED — INNER CONTAINER
   ========================================================= */

.related-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);

  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================================================
   RELATED — HEADER
   ========================================================= */

.related-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.related-leia {
  font-family: var(--font-hand);
  font-style: italic;
  font-size: 40px;
  color: var(--dark);
}

.related-mais {
  margin-top: var(--space-xs);

  font-family: var(--font-base);
  font-size: 0.7rem;
  color: var(--medium-dark);
}

/* =========================================================
   RELATED — POSTS GRID
   ========================================================= */

.related-grid {
  display: flex;
  gap: var(--space-md) var(--space-lg);
}

/* =========================================================
   RELATED — CARD
   ========================================================= */

.related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 180px;
}

/* =========================================================
   RELATED — IMAGE
   ========================================================= */

.related-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.related-thumb img {
  width: 100%;
  display: block;
}

/* =========================================================
   RELATED — TITLE
   ========================================================= */

.related-title {
  margin: 0;

  font-family: var(--font-base);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.related-title a {
  color: var(--dark);
  text-decoration: none;
}

.related-title a:hover {
  opacity: 0.7;
}

/* =========================================================
   RELATED — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .related-inner {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  .related-header {
    text-align: center;
  }

  .related-grid {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .related-card {
    max-width: 220px;
    align-items: center;
    text-align: center;
  }

  .related-thumb img {
    height: 180px;
    object-fit: cover;
  }
}

/* =========================================================
   TAXONOMY HERO
   ========================================================= */

/* Breadcrumb */

.taxonomy-breadcrumb {
  margin-bottom: var(--space-xs);

  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;

  color: var(--medium-dark);
}

.taxonomy-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.taxonomy-breadcrumb span {
  margin: 0 var(--space-xs);
}

/* =========================================================
   TAXONOMY — TITLE & DESCRIPTION
   ========================================================= */

.taxonomy-title {
  margin-bottom: var(--space-sm);

  font-family: var(--font-display);
  font-size: 45px;
  line-height: 1.1;
  text-align: center;

  color: var(--dark);
}

.taxonomy-description {
  font-size: 12px;
  line-height: 1.8;
  text-align: center;

  color: var(--medium-dark);
}

.taxonomy-description a {
  color: inherit;
  text-decoration: underline;
}

/* =========================================================
   TAXONOMY — RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .taxonomy-hero {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }

  .taxonomy-title {
    font-size: 2.6rem;
  }

  .taxonomy-description {
    font-size: 1rem;
  }
}
/* =========================================================
   FILTER — BASE
   ========================================================= */

.filter-nav {
  width: 100%;
  margin: var(--space-xl) 0 0;

  position: sticky;
  bottom: 0;

  padding: var(--space-md) 0;
  background: var(--beige);

  z-index: 2;
}

.filter-list {
  width: 100%;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.filter-item {
  width: 118px;
  list-style: none;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--dark);
}

.filter-item img {
  max-width: 25px;
  height: auto;
  display: block;
}

/* =========================================================
   FILTER — MOBILE FIXED + SCROLL
   ========================================================= */

@media (max-width: 768px) {
  .filter-nav {
    position: fixed;
    bottom: 65px;
    left: 0;

    margin: 0;
    padding: var(--space-sm) 0;

    width: 100%;
    background: var(--beige);

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: var(--z-menu);
  }

  .filter-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 var(--space-md);
    gap: var(--space-sm);

    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-item {
    flex: 0 0 auto;
    width: 72px;

    scroll-snap-align: center;
  }

  .filter-item img {
    max-width: 18px;
  }

  .filter-item a {
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: center;
  }
}

/* =========================================================
   SEASON HIGHLIGHT
   ========================================================= */

.season-highlight {
  width: 100%;
  background: var(--beige);
}

/* =========================================================
   SEASON — INNER GRID
   ========================================================= */

.season-highlight .season-grid {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-xl);

  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* =========================================================
   SEASON — POSTS
   ========================================================= */

.season-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.season-card {
  overflow: hidden;
}

.season-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SEASON — EDITORIAL
   ========================================================= */

.season-editorial h2 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.season-editorial p {
  max-width: 480px;
  margin-bottom: var(--space-lg);

  font-size: 18px;
  line-height: 1.6;
  color: var(--medium-dark);
}

/* =========================================================
   SEASON — RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .season-highlight .season-grid {
    grid-template-columns: 1fr;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg);
  }

  .season-posts {
    grid-template-columns: 1fr;
  }

  .season-editorial h2 {
    font-size: 36px;
  }
}
/* =========================================================
   ABOUT AUTHOR — BASE
   ========================================================= */

.about-author {
  width: 100%;
  margin: var(--space-xl) 0 var(--space-md);
  padding: 0 var(--space-lg);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* =========================================================
   ABOUT AUTHOR — AVATAR
   ========================================================= */

.about-author-avatar {
  width: 100px;
  flex-shrink: 0;
}

.about-author-avatar img {
  width: 90px;
  height: auto;
  border-radius: 50%;
  display: block;
}

/* =========================================================
   ABOUT AUTHOR — CONTENT
   ========================================================= */

.about-author-content {
  max-width: 420px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-size: 13px;
  text-align: justify;
}

/* =========================================================
   ABOUT AUTHOR — TITLE
   ========================================================= */

.about-author-title {
  margin: var(--space-xs) 0;
  font-family: var(--font-hand);
  font-size: 30px;
  line-height: 1.2;
}

.about-author-label {
  padding-right: var(--space-sm);

  font-family: var(--font-base);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   ABOUT AUTHOR — BIO
   ========================================================= */

.about-author-bio {
  margin-top: var(--space-xs);
}

.about-author-bio p {
  margin: 0;
}

/* =========================================================
   ABOUT AUTHOR — TABLET ADJUST
   ========================================================= */

@media (max-width: 1024px) {
  .about-author {
    padding: 0 10px;
    gap: 20px;
    max-width:300px;
  }

  .about-author-avatar img {
    width: 72px;
  }

  .about-author-title {
    font-size: 22px;
  }

  .about-author-content {
    max-width: 100%;
    font-size: 12px;
  }
}

/* =========================================================
   ABOUT AUTHOR — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .about-author {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about-author-content {
    align-items: center;
    text-align: center;
  }

  .about-author-title {
    font-size: 20px;
  }
}


/* =========================================================
   POST SIDE — BASE
   ========================================================= */

.post-side {
  margin: var(--space-xxl) 0 var(--space-xl) var(--space-md);
  position: sticky;
  top: 50px;
}

/* =========================================================
   POST SIDE — AUTHOR CARD
   ========================================================= */

.post-side-author {
  padding: var(--space-lg) var(--space-sm);
  background: var(--beige);
}

.post-side-author #about-author {
  margin: 0;
  max-width: 720px;
}



/* =========================================================
   SHARE BAR — BASE
   ========================================================= */

.share-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;

  background: var(--medium);
  z-index: 999;
  display: none;
}

.share-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* =========================================================
   SHARE — LIKE
   ========================================================= */

.share-like {
  display: flex;
  align-items: center;
}

.like-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);

  background: none;
  border: none;
  cursor: pointer;

  font-family: var(--font-base);
  font-size: 14px;
  color: #1f1f1f;
}

.like-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.like-btn:active .like-icon {
  transform: scale(1.1);
}

.like-count {
  font-size: 13px;
  color: #1f1f1f;
}

/* =========================================================
   SHARE — TEXT & ICONS
   ========================================================= */

.share-text {
  font-size: 14px;
  color: #1f1f1f;
}

.share-icons {
  display: flex;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-icons ul {
  display: flex;
  align-items: center;
  gap: 12px;  
  padding: 0;
  margin: 0;
}

.share-icons li {
  list-style: none;
}


.share-icons a {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.share-icons a:hover {
  background-color: #f3eee7;
}

.share-icons img {
  width: 15px;
  height: 15px;
  display: block;
}

/* =========================================================
   SHARE BAR — DESKTOP
   ========================================================= */

@media (min-width: 1024px) {
  .share-bar {
    display: block;
  }
}

/* =========================================================
   SHARE BAR — MOBILE
   ========================================================= */

@media (max-width: 1023px) {
  .share-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    background: var(--beige);
  }

  .share-bar-inner {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
  }

  .like-btn {
    font-size: 12px;
    gap: 4px;
  }

  .like-icon {
    width: 16px;
    height: 16px;
  }

  .like-count {
    font-size: 11px;
  }

  .share-icons a {
    width: 28px;
    height: 28px;
  }

  .share-icons img {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 768px) {
  .share-bar {
    bottom: 60px;
  }

  .share-text {
    display: none;
  }
}

/* =========================================================
   DECORATION SLIDE — FINAL VISUAL ADJUSTMENTS
   ========================================================= */

/* =========================================================
   MAIN GRID
   ========================================================= */

.decoracao-slide-wrapper {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-areas: "post slide";
}

/* =========================================================
   FEATURED POST (LEFT) — EDITORIAL CARD
   ========================================================= */

.decoracao-slide-post {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;

  width: 100%;
  background: var(--beige);
  grid-area: post;
}

/* =========================================================
   IMAGE — 40% FULL HEIGHT
   ========================================================= */

.decoracao-slide-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.decoracao-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   CONTENT — 60%
   ========================================================= */

.decoracao-slide-content {
  padding: var(--space-xl) var(--space-lg);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.decoracao-slide-title {
  margin-bottom: var(--space-md);

  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.1;
  color: var(--dark);
}

.decoracao-slide-excerpt {
  margin-bottom: var(--space-lg);

  font-size: 16px;
  line-height: 1.8;
  color: var(--medium-dark);
}

/* =========================================================
   CTA
   ========================================================= */

.decoracao-slide-cta {
  align-self: flex-start;

  font-family: var(--font-base);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--dark);
}

/* =========================================================
   ASIDE — NUMBERED LIST (RIGHT)
   ========================================================= */

.decoracao-slide-aside {
  grid-area: slide;

  padding-left: var(--space-lg);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.decoracao-slide-aside-title {
  margin-bottom: var(--space-lg);

  font-family: var(--font-hand);
  font-size: 35px;
  color: var(--dark);
}

/* =========================================================
   LIST
   ========================================================= */

.decoracao-slide-list {
  margin: 0;
  padding: 0;
  list-style: none;

  counter-reset: decoracao;
}

/* =========================================================
   LIST ITEM
   ========================================================= */

.decoracao-slide-item {
  counter-increment: decoracao;

  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-sm);
  align-items: start;

  margin-bottom: var(--space-md);
  cursor: pointer;

  opacity: 0.35;
  transition: opacity var(--transition-fast);
}

/* =========================================================
   LIST NUMBER (DISPLAY FONT)
   ========================================================= */

.decoracao-slide-item::before {
  content: counter(decoracao, decimal-leading-zero);

  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--dark);
}

/* =========================================================
   LIST TEXT
   ========================================================= */

.decoracao-slide-item span {
  display: block;

  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================================
   ACTIVE / HOVER STATE
   ========================================================= */

.decoracao-slide-item:hover,
.decoracao-slide-item.is-active {
  opacity: 1;
}

/* =========================================================
   POST TRANSITION
   ========================================================= */

.decoracao-slide-post.is-transitioning {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .decoracao-slide-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "slide"
      "post";

    gap: var(--space-lg);
  }

  .decoracao-slide-aside {
    padding-left: 0;
    border-left: none;
  }

  .decoracao-slide-content {
    padding: var(--space-lg) var(--space-md);
  }

  .decoracao-slide-title {
    font-size: 28px;
  }

  .decoracao-slide-excerpt {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .decoracao-slide-post,
  .decoracao-slide-item {
    transition: none;
  }
}


