.ew-discover-feed {
  max-width: 760px;
  margin: 0 auto;
  margin-top:40px;
  padding: 22px 18px 70px;
  font-family: inherit;
}

.ew-feed-block {
  margin-bottom: 34px;
}

.ew-feed-block h2 {
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
}

/* Decision Hub - lighter */

.ew-decision-hub {
  padding: 0;
  margin-bottom: 38px;
  background: transparent;
}

.ew-decision-hub h2 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ew-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ew-decision-tile {
  min-height: 76px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
  color:#111;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
}

.ew-decision-tile:hover {
  background: #f3f3f3;
}

/* Decision chips */

.ew-decision-block {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}

.ew-decision-buttons {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ew-decision-buttons button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

/* Vertical TopBuzz-style feed */

.ew-vertical-list {
  display: block;
}

.ew-vertical-card {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0 0 28px;
  margin-top: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eee;
}

.ew-vertical-image {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #f2f2f2;
  margin-bottom: 12px;
}

.ew-vertical-card.is-large .ew-vertical-image {
  aspect-ratio: 16 / 9;
}

.ew-vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ew-vertical-content {
  padding: 0;
}

.ew-vertical-content span {
  display: block;
  font-size: 14px;
  color: #aaa;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.ew-vertical-content h3 {
  font-size: 28px;
  line-height: 1.12;
  font-weight: 500;
  margin: 0;
}

.ew-vertical-card.is-large .ew-vertical-content h3 {
  font-size: 30px;
  max-width: none;
}


/* Compact TopBuzz-style feed item */

.ew-compact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.ew-compact-content h3 {
  font-size: 26px;
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 18px;
}

.ew-compact-content span,
.ew-card-meta {
  display: block;
  font-size: 17px;
  color: #aaa;
  line-height: 1;
}

.ew-compact-image {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
}

.ew-compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Large feed item */

.ew-vertical-card.is-large {
  display: block;
  padding: 0 0 28px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.ew-vertical-card.is-large .ew-vertical-content {
  padding: 0 0 14px;
}

.ew-vertical-card.is-large .ew-vertical-content h3 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 500;
  margin: 0;
}

.ew-card-meta {
  margin-top: 12px;
}

/* Horizontal shelf becomes quieter */

.ew-recipe-shelf {
  border-bottom: 1px solid #eee;
  padding-bottom: 28px;
}

.ew-recipe-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.ew-shelf-card {
  flex: 0 0 150px;
  text-decoration: none;
  color: inherit;
}

.ew-shelf-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
  overflow: hidden;
  border-radius: 8px;
}

.ew-shelf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ew-shelf-card h3 {
  font-size: 14px;
  line-height: 1.25;
  margin: 8px 0 0;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 700px) {
  .ew-compact-card {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 14px;
    padding: 24px 0;
  }

  .ew-compact-content h3 {
    /* font-size: 24px; */
    font-size: 20px;
    line-height: 1.13;
    margin-bottom: 18px;
  }

  .ew-compact-content span,
  .ew-card-meta {
    font-size: 16px;
  }

  .ew-compact-image {
    border-radius: 9px;
  }

  .ew-vertical-card.is-large .ew-vertical-content h3 {
    /* font-size: 29px; */
    font-size: 26px;
  }
}






/* ========================================
   IMAGE COMPOSITION
   Large featured image + 2 editorial thumbs
======================================== */

.ew-image-compo {
  --side-width: 34%;
  --gap: 6px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--side-width);
  gap: var(--gap);

  aspect-ratio: 16 / 9;

  overflow: hidden;
  border-radius: 9px;
  background: #f3f3f3;
}

.ew-compo-main,
.ew-compo-side,
.ew-compo-side div {
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #f3f3f3;
}

.ew-compo-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
}

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

.ew-compo-main img {
  border-radius: 9px 0 0 9px;
}

.ew-compo-side div:first-child img {
  border-radius: 0 9px 0 0;
}

.ew-compo-side div:last-child img {
  border-radius: 0 0 9px 0;
}

@media (max-width: 700px) {
  .ew-image-compo {
    --side-width: 34%;
    --gap: 5px;
    aspect-ratio: 16 / 9;
  }
}





.ew-card-meta,
.ew-compact-content span {
  display: block;
  margin-top: 10px;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;

  color: #8a8a8a;
  letter-spacing: .01em;
}


.ew-decision-subtitle {
  margin: -8px 0 18px;

  font-size: 15px;
  line-height: 1.4;
  color: #666;

  text-align: left;
}