:root {
  --arye-green: #5a7f24;
  --arye-lime: #b7d334;
  --arye-dark: #203018;
  --arye-ink: #242a21;
  --arye-muted: #667060;
  --arye-soft: #f4f7ee;
  --arye-line: #dfe7d5;
}
.arye-verdict,
.arye-decision,
.arye-affiliate-note {
  box-sizing: border-box;
  margin: 28px 0;
  border-radius: 16px;
}
.arye-verdict {
  padding: 24px;
  border: 1px solid var(--arye-line);
  border-left: 5px solid var(--arye-green);
  background: var(--arye-soft);
}
.arye-verdict__label {
  margin: 0 0 7px;
  color: var(--arye-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.arye-verdict p:last-child {
  margin-bottom: 0;
}
.arye-facts {
  width: 100%;
  margin: 24px 0 32px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--arye-line);
  border-radius: 14px;
}
.arye-facts th,
.arye-facts td {
  padding: 13px 15px;
  border: 0;
  border-bottom: 1px solid var(--arye-line);
  text-align: left;
  vertical-align: top;
}
.arye-facts th {
  color: var(--arye-dark);
  background: var(--arye-soft);
  font-weight: 800;
}
.arye-facts tr:last-child th,
.arye-facts tr:last-child td {
  border-bottom: 0;
}
.arye-decision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.arye-decision__item {
  padding: 20px;
  border: 1px solid var(--arye-line);
  border-radius: 14px;
  background: #fff;
}
.arye-decision__item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--arye-dark);
}
.arye-decision__item p:last-child {
  margin-bottom: 0;
}
.arye-affiliate-note {
  padding: 14px 17px;
  border: 1px solid #eadca9;
  background: #fff9e8;
  color: #65551d;
  font-size: 14px;
}
.arye-sources {
  font-size: 14px;
}
.arye-sources li + li {
  margin-top: 7px;
}
.arye-hub {
  box-sizing: border-box;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}
.arye-hub *,
.arye-hub *::before,
.arye-hub *::after {
  box-sizing: border-box;
}
.arye-hub__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 10px 42px;
  align-items: end;
  margin-bottom: 30px;
}
.arye-hub__heading h2 {
  margin: 0;
  color: var(--arye-ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.arye-hub__heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--arye-muted);
  line-height: 1.65;
}
.arye-hub__eyebrow {
  margin: 0;
  color: var(--arye-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.arye-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.arye-hub__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--arye-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(32, 48, 24, 0.07);
}
.arye-hub__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--arye-soft);
}
.arye-hub__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.arye-hub__card:hover .arye-hub__image {
  transform: scale(1.035);
}
.arye-hub__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--arye-green);
  font-size: 32px;
  font-weight: 950;
}
.arye-hub__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px;
}
.arye-hub__body time {
  color: var(--arye-green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.arye-hub__body h3 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.2;
}
.arye-hub__body h3 a {
  color: var(--arye-dark);
  text-decoration: none;
}
.arye-hub__body p {
  margin: 0 0 18px;
  color: var(--arye-muted);
  font-size: 14px;
  line-height: 1.55;
}
.arye-hub__link {
  margin-top: auto;
  color: var(--arye-green) !important;
  font-weight: 850;
  text-decoration: none !important;
}
@media (max-width: 900px) {
  .arye-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .arye-decision,
  .arye-hub__grid,
  .arye-hub__heading {
    grid-template-columns: 1fr;
  }
  .arye-hub {
    width: calc(100% - 28px);
  }
  .arye-hub__heading > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }
  .arye-facts {
    display: block;
    overflow-x: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .arye-hub__image {
    transition: none;
  }
}
