:root {
  --eth-sand: #fff7ea;
  --eth-sand-strong: #f6dfb7;
  --eth-jungle: #123c31;
  --eth-jungle-soft: #1f5d4c;
  --eth-gold: #d89b38;
  --eth-coral: #e66b4f;
  --eth-ink: #18231f;
  --eth-muted: #63736d;
  --eth-card: #ffffff;
  --eth-border: rgba(18, 60, 49, 0.14);
  --eth-shadow: 0 18px 45px rgba(18, 60, 49, 0.12);
  --eth-radius: 26px;
}
.eth-hero,
.eth-section,
.eth-stats,
.eth-community-cta,
.eth-affiliate-box,
.eth-trip-planner,
.eth-detail-box,
.eth-region-hub {
  box-sizing: border-box;
}
.eth-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(36px, 7vw, 82px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 10%, rgba(216,155,56,.34), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, #123c31 0%, #1f5d4c 54%, #e7a847 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  margin: 24px 0;
}
.eth-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.eth-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: .95;
  margin: 12px 0 22px;
  color: #fff;
}
.eth-hero p {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.88);
}
.eth-hero__content,
.eth-hero__panel {
  position: relative;
  z-index: 1;
}
.eth-hero__panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--eth-radius);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  align-self: end;
}
.eth-hero__panel strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.eth-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.eth-hero-tags span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
}
.eth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--eth-gold);
}
.eth-hero .eth-kicker {
  color: #ffe2a6;
}
.eth-button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 26px;
}
.eth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.eth-button:hover {
  transform: translateY(-2px);
}
.eth-button--primary {
  color: #19231f !important;
  background: #ffd37a;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.eth-button--ghost {
  color: inherit !important;
  border-color: currentColor;
  background: rgba(255,255,255,.08);
}
.eth-button--ghost-dark {
  color: var(--eth-jungle) !important;
  border-color: rgba(18,60,49,.28);
  background: #fff;
}
.eth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 38px;
}
.eth-stats div {
  padding: 24px;
  border-radius: var(--eth-radius);
  background: var(--eth-card);
  border: 1px solid var(--eth-border);
  box-shadow: 0 12px 35px rgba(18, 60, 49, 0.08);
}
.eth-stats strong {
  display: block;
  font-size: 2.2rem;
  color: var(--eth-jungle);
  line-height: 1;
}
.eth-stats span {
  display: block;
  margin-top: 8px;
  color: var(--eth-muted);
  font-weight: 700;
}
.eth-section {
  margin: clamp(40px, 7vw, 82px) 0;
}
.eth-section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.eth-section h2,
.eth-community-cta h2,
.eth-trip-planner h2,
.eth-region-hub h2 {
  color: var(--eth-jungle);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin: 0;
}
.eth-card-grid,
.eth-creator-grid,
.eth-feature-grid,
.eth-region-grid,
.eth-planner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.eth-card,
.eth-creator-card,
.eth-feature-grid article,
.eth-empty,
.eth-region-grid a,
.eth-planner-grid a {
  border: 1px solid var(--eth-border);
  border-radius: var(--eth-radius);
  background: var(--eth-card);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(18,60,49,.08);
}
.eth-card__image {
  display: block;
  aspect-ratio: 16/10;
  background: var(--eth-sand-strong);
  overflow: hidden;
}
.eth-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6dfb7, #1f5d4c);
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eth-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.eth-card:hover .eth-card__image img {
  transform: scale(1.04);
}
.eth-card__body,
.eth-creator-card,
.eth-feature-grid article,
.eth-empty,
.eth-region-grid a,
.eth-planner-grid a {
  padding: 22px;
}
.eth-feature-grid--wide article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 14px;
  background: var(--eth-jungle);
  color: #fff;
  font-weight: 900;
}
.eth-card h3,
.eth-creator-card h3,
.eth-feature-grid h3,
.eth-affiliate-box h3 {
  margin: 8px 0 10px;
  color: var(--eth-jungle);
  font-size: 1.25rem;
}
.eth-card h3 a,
.eth-creator-card h3 a,
.eth-region-grid a,
.eth-planner-grid a {
  color: inherit;
  text-decoration: none;
}
.eth-card p,
.eth-creator-card p,
.eth-feature-grid p,
.eth-empty p,
.eth-affiliate-box p,
.eth-community-cta p,
.eth-trip-planner p,
.eth-region-grid span,
.eth-planner-grid span {
  color: var(--eth-muted);
  margin: 0 0 12px;
}
.eth-card small,
.eth-affiliate-box small {
  display: block;
  color: var(--eth-muted);
}
.eth-card__meta {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--eth-gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.eth-avatar,
.eth-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
}
.eth-avatar {
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--eth-sand-strong);
}
.eth-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eth-jungle);
  color: #fff;
  font-weight: 900;
}
.eth-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}
.eth-social-row a {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--eth-sand);
  color: var(--eth-jungle);
  text-decoration: none;
  font-weight: 800;
  font-size: .88rem;
}
.eth-social-row--large a {
  padding: 11px 15px;
}
.eth-community-cta,
.eth-trip-planner,
.eth-detail-box,
.eth-region-hub {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 32px;
  background: var(--eth-sand);
  border: 1px solid var(--eth-border);
  box-shadow: 0 16px 45px rgba(18,60,49,.08);
}
.eth-community-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.eth-community-cta--small {
  margin-top: 38px;
}
.eth-affiliate-box {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: var(--eth-radius);
  background: #fff;
  border: 1px solid var(--eth-border);
  box-shadow: 0 14px 35px rgba(18,60,49,.08);
  margin: 18px 0;
}
.eth-affiliate-stack {
  display: grid;
  gap: 14px;
}
.eth-detail-box {
  margin: 36px 0;
  background: #fff;
}
.eth-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 18px 0;
}
.eth-detail-grid div {
  padding: 16px;
  border-radius: 18px;
  background: var(--eth-sand);
}
.eth-detail-grid strong,
.eth-detail-grid span {
  display: block;
}
.eth-detail-grid strong {
  color: var(--eth-jungle);
  margin-bottom: 5px;
}
.eth-detail-grid span {
  color: var(--eth-muted);
}
.eth-personal-tip {
  padding: 18px;
  border-radius: 18px;
  background: #f8ead0;
  color: var(--eth-ink);
}
.eth-trip-planner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: center;
}
.eth-planner-grid,
.eth-region-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.eth-planner-grid a,
.eth-region-grid a {
  transition: transform .18s ease, box-shadow .18s ease;
}
.eth-planner-grid a:hover,
.eth-region-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18,60,49,.12);
}
.eth-planner-grid strong,
.eth-region-grid strong {
  display: block;
  color: var(--eth-jungle);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .eth-hero,
  .eth-trip-planner { grid-template-columns: 1fr; }
  .eth-card-grid,
  .eth-creator-grid,
  .eth-feature-grid,
  .eth-stats,
  .eth-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .eth-community-cta,
  .eth-affiliate-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .eth-card-grid,
  .eth-creator-grid,
  .eth-feature-grid,
  .eth-stats,
  .eth-detail-grid,
  .eth-planner-grid,
  .eth-region-grid { grid-template-columns: 1fr; }
  .eth-hero { border-radius: 24px; padding: 30px 22px; }
  .eth-community-cta,
  .eth-trip-planner,
  .eth-detail-box,
  .eth-region-hub { border-radius: 24px; padding: 24px 18px; }
}

/* Experience Thailand v1.3 Media Hub */
.eth-media-hub,
.eth-library-head,
.eth-video-card,
.eth-podcast-card,
.eth-news-card {
  box-sizing: border-box;
}
.eth-media-hub {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 32px;
  background: linear-gradient(135deg, #fff7ea 0%, #ffffff 58%, rgba(216,155,56,.18) 100%);
  border: 1px solid var(--eth-border);
  box-shadow: var(--eth-shadow);
}
.eth-media-hub-grid,
.eth-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.eth-media-hub-grid a {
  display: block;
  padding: 24px;
  border-radius: 24px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--eth-border);
  color: var(--eth-ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.eth-media-hub-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(18,60,49,.14);
}
.eth-media-hub-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--eth-jungle);
  font-size: 1.25rem;
}
.eth-media-hub-grid span {
  color: var(--eth-muted);
}
.eth-library-head {
  margin: 22px 0 28px;
  padding: clamp(30px, 6vw, 62px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--eth-jungle) 0%, var(--eth-jungle-soft) 60%, var(--eth-gold) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.eth-library-head h1 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}
.eth-library-head p {
  max-width: 820px;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
}
.eth-library-head .eth-kicker { color: #ffe1a6; }
.eth-video-card,
.eth-podcast-card,
.eth-news-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--eth-border);
  box-shadow: 0 16px 40px rgba(18,60,49,.10);
}
.eth-video-thumb {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #123c31, #d89b38);
  color: #fff;
  text-decoration: none;
}
.eth-video-thumb img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.eth-video-thumb:hover img { transform: scale(1.04); }
.eth-video-thumb span {
  position: absolute;
  inset: auto 18px 18px auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18,60,49,.88);
  color: #fff;
  font-weight: 800;
}
.eth-video-thumb--placeholder span {
  position: static;
  background: rgba(255,255,255,.16);
}
.eth-podcast-list,
.eth-news-list {
  display: grid;
  gap: 16px;
}
.eth-podcast-card,
.eth-news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}
.eth-podcast-card h3,
.eth-news-card h3,
.eth-video-card h3 { margin-top: 6px; }
.eth-audio-player {
  width: min(380px, 100%);
}
.eth-news-card .eth-button-row,
.eth-podcast-card .eth-button-row { justify-content: flex-end; }
.eth-media-detail .eth-audio-player {
  margin-top: 14px;
  width: 100%;
}
.eth-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--eth-jungle);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(18,60,49,.26);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.eth-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.eth-scroll-top:hover,
.eth-scroll-top:focus { background: var(--eth-gold); }
.eth-scroll-top span { line-height: 1; }
@media (max-width: 920px) {
  .eth-media-hub-grid,
  .eth-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eth-podcast-card,
  .eth-news-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .eth-media-hub,
  .eth-library-head { border-radius: 24px; padding: 24px 18px; }
  .eth-media-hub-grid,
  .eth-video-grid { grid-template-columns: 1fr; }
  .eth-scroll-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}


/* Experience Thailand v1.4 flexible Teaser */
.eth-latest-teaser,
.eth-creator-spotlight {
  margin: 44px 0;
}
.eth-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.eth-latest-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--eth-card);
  border: 1px solid rgba(18,60,49,.12);
  box-shadow: 0 14px 30px rgba(18,60,49,.07);
}
.eth-latest-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--eth-gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.eth-latest-card h3 { margin: 0 0 8px; }
.eth-latest-card h3 a { color: var(--eth-jungle); text-decoration: none; }
.eth-latest-card h3 a:hover { color: var(--eth-gold-dark); }
.eth-latest-card p { margin: 0; color: var(--eth-muted); }
.eth-news-ticker {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--eth-jungle);
  color: #fff;
  overflow: hidden;
  margin: 24px 0;
}
.eth-news-ticker strong {
  flex: 0 0 auto;
  color: var(--eth-sand);
}
.eth-news-ticker div {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.eth-news-ticker a {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.eth-news-ticker a:hover { background: rgba(255,255,255,.2); }
.eth-news-ticker a span {
  color: var(--eth-sand);
  font-weight: 800;
}
@media (max-width: 800px) {
  .eth-latest-grid { grid-template-columns: 1fr; }
  .eth-news-ticker { align-items: flex-start; flex-direction: column; }
  .eth-news-ticker div { width: 100%; }
}

/* v1.6 News Feed Layout */
.eth-news-page {
  margin: 24px 0 70px;
}
.eth-news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(18,60,49,.92), rgba(31,93,76,.88)),
    radial-gradient(circle at 15% 15%, rgba(255,211,122,.28), transparent 30%);
  color: #fff;
  box-shadow: var(--eth-shadow);
  position: relative;
  overflow: hidden;
}
.eth-news-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(216,155,56,.28);
}
.eth-news-hero > * { position: relative; z-index: 1; }
.eth-news-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 10px 0 14px;
}
.eth-news-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: 1.1rem;
}
.eth-news-hero__status {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
}
.eth-news-hero__status span,
.eth-news-hero__status small { display: block; color: rgba(255,255,255,.75); font-weight: 700; }
.eth-news-hero__status strong { display: block; margin: 8px 0; font-size: 1.4rem; color: #ffe1a6; }
.eth-news-source-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.eth-news-source-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--eth-border);
  background: #fff;
  text-decoration: none !important;
  color: var(--eth-jungle) !important;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(18,60,49,.06);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.eth-news-source-tabs a:hover { transform: translateY(-2px); border-color: rgba(216,155,56,.55); }
.eth-news-source-tabs a.is-active { background: var(--eth-jungle); color: #fff !important; border-color: var(--eth-jungle); }
.eth-news-source-tabs span { opacity: .66; }
.eth-news-feed-list {
  display: grid;
  gap: 16px;
}
.eth-news-feed-card {
  margin: 0;
}
.eth-news-feed-card__link {
  display: block;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 26px;
  border: 1px solid var(--eth-border);
  background: #fff;
  color: inherit !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(18,60,49,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.eth-news-feed-card__link:hover {
  transform: translateY(-3px);
  border-color: rgba(216,155,56,.5);
  box-shadow: 0 20px 42px rgba(18,60,49,.12);
}
.eth-news-feed-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--eth-muted);
  font-size: .92rem;
  margin-bottom: 8px;
}
.eth-news-feed-card__meta strong { color: var(--eth-jungle); }
.eth-news-feed-card__meta em { font-style: normal; color: rgba(18,60,49,.35); }
.eth-news-feed-card h2 {
  margin: 0 0 9px;
  color: var(--eth-ink);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.eth-news-feed-card p {
  margin: 0;
  color: var(--eth-muted);
  font-size: 1.02rem;
}
.eth-news-feed-card__topic {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216,155,56,.16);
  color: var(--eth-jungle);
  font-size: .78rem;
  font-weight: 900;
}
@media (max-width: 760px) {
  .eth-news-hero { grid-template-columns: 1fr; }
  .eth-news-hero__status { max-width: 100%; }
}

/* v1.7 Premium visual upgrade: hero, buttons, RSS news hub */
.eth-hero.eth-hero--upgrade {
  isolation: isolate;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .55fr);
  min-height: clamp(560px, 70vh, 760px);
  align-items: end;
  padding: clamp(42px, 7vw, 92px);
  border-radius: clamp(26px, 4vw, 44px);
  background-image:
    linear-gradient(100deg, rgba(6, 34, 28, .92) 0%, rgba(9, 54, 44, .82) 42%, rgba(20, 82, 67, .55) 68%, rgba(215, 151, 54, .62) 100%),
    var(--eth-hero-image, linear-gradient(135deg, #123c31 0%, #1f5d4c 58%, #d89b38 100%));
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 90px rgba(18, 60, 49, .22);
}
.eth-hero.eth-hero--upgrade::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 16%, rgba(255, 210, 118, .18), transparent 22rem),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.20) 100%);
  pointer-events: none;
}
.eth-hero.eth-hero--upgrade::after {
  width: min(440px, 38vw);
  height: min(440px, 38vw);
  right: -120px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(255, 210, 118, .30), rgba(255,255,255,.05) 62%, transparent 63%);
}
.eth-hero__content { max-width: 920px; }
.eth-hero h1 {
  font-weight: 950;
  letter-spacing: -.075em;
  text-wrap: balance;
  text-shadow: 0 8px 36px rgba(0,0,0,.18);
}
.eth-hero p { max-width: 820px; line-height: 1.55; }
.eth-kicker {
  color: #c66a43;
  letter-spacing: .13em;
}
.eth-hero .eth-kicker { color: #ffe0a0; }
.eth-hero__panel {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 242, .16);
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 28px 70px rgba(0,0,0,.18);
}
.eth-hero__panel strong { font-size: 1.25rem; line-height: 1.35; }
.eth-button,
.eth-button:visited {
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 16px 34px rgba(18,60,49,.16);
}
.eth-button--primary {
  background: linear-gradient(135deg, #104437, #0d332b) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.10);
}
.eth-button--primary:hover {
  background: linear-gradient(135deg, #1f5d4c, #104437) !important;
  transform: translateY(-2px);
}
.eth-button--ghost {
  background: rgba(255,255,255,.96) !important;
  color: #123c31 !important;
  border: 1px solid rgba(255,255,255,.60);
}
.eth-button--ghost:hover {
  background: #ffe1a6 !important;
  color: #123c31 !important;
  transform: translateY(-2px);
}
.eth-stats {
  margin-top: -34px;
  position: relative;
  z-index: 2;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 65px rgba(18,60,49,.12);
}
.eth-feature-grid article,
.eth-card,
.eth-creator-card,
.eth-latest-card,
.eth-affiliate-box,
.eth-podcast-card {
  border-color: rgba(18,60,49,.10) !important;
  box-shadow: 0 18px 48px rgba(18,60,49,.08) !important;
}
.eth-feature-grid article:hover,
.eth-card:hover,
.eth-creator-card:hover,
.eth-latest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(18,60,49,.13) !important;
}
.eth-news-strip-home { margin-top: 18px; }

.eth-news-page {
  max-width: 980px;
  margin-inline: auto;
}
.eth-news-hero {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 251, 244, .97), rgba(248, 237, 218, .94)),
    radial-gradient(circle at 12% 0%, rgba(216,155,56,.18), transparent 28rem);
  color: var(--eth-ink);
  border: 1px solid rgba(18,60,49,.10);
  box-shadow: 0 28px 75px rgba(18,60,49,.10);
}
.eth-news-hero::after {
  background: linear-gradient(135deg, rgba(18,60,49,.12), rgba(216,155,56,.18));
}
.eth-news-hero h1 {
  color: #061d18;
  font-size: clamp(2.1rem, 4.7vw, 4.2rem);
  letter-spacing: -.06em;
}
.eth-news-hero p { color: #5d6b66; }
.eth-news-hero .eth-kicker { color: #146052; }
.eth-news-hero__status {
  background: #fff;
  border-color: rgba(18,60,49,.12);
  box-shadow: 0 14px 36px rgba(18,60,49,.08);
}
.eth-news-hero__status span,
.eth-news-hero__status small { color: #73807a; }
.eth-news-hero__status strong { color: #123c31; }
.eth-news-source-tabs {
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,60,49,.08);
  width: fit-content;
  max-width: 100%;
}
.eth-news-source-tabs a {
  box-shadow: none;
  background: #fff;
  border-color: rgba(18,60,49,.10);
  color: #34433f !important;
}
.eth-news-source-tabs a:hover {
  background: #fff3d7;
  transform: translateY(-1px);
}
.eth-news-source-tabs a.is-active {
  background: #0d4a3d;
  color: #fff !important;
}
.eth-news-feed-list { gap: 14px; }
.eth-news-feed-card__link {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 46px rgba(18,60,49,.08);
  overflow: hidden;
}
.eth-news-feed-card__link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #0d4a3d, #d89b38);
  opacity: .9;
}
.eth-news-feed-card__link::after {
  content: "Original öffnen";
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ea;
  color: #0d4a3d;
  font-size: .74rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}
.eth-news-feed-card__link:hover::after { opacity: 1; transform: translateY(0); }
.eth-news-feed-card__meta strong { color: #0d4a3d; }
.eth-news-feed-card h2 { padding-right: 116px; color: #061d18; }
.eth-news-feed-card p { max-width: 820px; }
.eth-news-feed-card__topic {
  background: #fff0cc;
  color: #5f430d;
}
@media (max-width: 760px) {
  .eth-hero.eth-hero--upgrade { grid-template-columns: 1fr; min-height: auto; }
  .eth-news-source-tabs { border-radius: 22px; }
  .eth-news-feed-card h2 { padding-right: 0; }
  .eth-news-feed-card__link::after { display: none; }
}

/* Experience Thailand Map */
.eth-map-section {
  margin: clamp(34px, 6vw, 72px) auto;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,230,.92));
  box-shadow: 0 24px 70px rgba(18,60,49,.10);
  border: 1px solid rgba(18,60,49,.08);
}
.eth-map-head { align-items: flex-end; }
.eth-map-count {
  min-width: 110px;
  padding: 14px 18px;
  border-radius: 22px;
  background: #0d4a3d;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(13,74,61,.22);
}
.eth-map-count strong { display:block; font-size: 1.9rem; line-height: 1; }
.eth-map-count span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .82; }
.eth-map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 22px;
}
.eth-map-filters button {
  border: 1px solid rgba(18,60,49,.12);
  background: #fff;
  color: #0d332b;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.eth-map-filters button:hover { transform: translateY(-1px); background: #fff3d7; }
.eth-map-filters button.is-active { background: #0d4a3d; color: #fff; box-shadow: 0 12px 28px rgba(13,74,61,.18); }
.eth-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .72fr);
  gap: 22px;
  align-items: stretch;
}
.eth-thailand-map {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(18,60,49,.12);
  box-shadow: 0 18px 48px rgba(18,60,49,.12);
  background: #e8f2ec;
}
.eth-map-card-list {
  max-height: 640px;
  overflow: auto;
  display: grid;
  gap: 14px;
  padding-right: 4px;
}
.eth-map-info-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(18,60,49,.08);
  box-shadow: 0 12px 30px rgba(18,60,49,.07);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.eth-map-info-card:hover,
.eth-map-info-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(216,155,56,.55);
  box-shadow: 0 18px 42px rgba(18,60,49,.14);
}
.eth-map-info-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 18px;
  background: #f3ead8;
}
.eth-map-info-card:not(:has(img)) { grid-template-columns: 1fr; }
.eth-map-card-type {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eff7f2;
  color: #0d4a3d;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eth-map-info-card h3 { margin: 0 0 6px; font-size: 1rem; color: #061d18; }
.eth-map-info-card p { margin: 0 0 9px; color: #53645f; font-size: .92rem; line-height: 1.45; }
.eth-map-info-card a { color: #0d4a3d; font-weight: 900; text-decoration: none; }
.eth-map-marker {
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  border: 2px solid rgba(255,255,255,.9);
}
.eth-map-marker span { transform: translateY(-1px); }
.eth-map-marker--place { background: #0d4a3d; }
.eth-map-marker--video { background: #e85b3f; }
.eth-map-marker--blog { background: #d89b38; }
.eth-map-marker--route { background: #1b6f92; }
.eth-map-marker--creator { background: #7b4bb3; }
.eth-map-marker--news { background: #27364a; }
.eth-map-marker--podcast { background: #b04a7f; }
.eth-map-popup strong { display:block; margin-bottom: 3px; color:#061d18; }
.eth-map-popup span { display:inline-block; margin-bottom: 6px; color:#0d4a3d; font-weight:800; font-size:.8rem; }
.eth-map-popup p { margin:0 0 8px; color:#4d5d58; }
.eth-map-popup a { color:#0d4a3d; font-weight:900; }
.eth-empty-state {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px dashed rgba(18,60,49,.25);
}
@media (max-width: 980px) {
  .eth-map-layout { grid-template-columns: 1fr; }
  .eth-map-card-list { max-height: none; }
}
@media (max-width: 600px) {
  .eth-map-section { border-radius: 24px; padding: 16px; }
  .eth-thailand-map { border-radius: 20px; min-height: 360px; }
  .eth-map-info-card { grid-template-columns: 72px 1fr; }
  .eth-map-info-card img { width:72px; height:72px; border-radius:14px; }
}

/* v1.9 map polish */
.eth-map-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(216,155,56,.16), transparent 28rem),
    rgba(255,255,255,.72);
  border: 1px solid rgba(18,60,49,.08);
  box-shadow: 0 24px 70px rgba(18,60,49,.10);
}
.eth-map-filters button {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.eth-map-filters button:hover,
.eth-map-filters button.is-active {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18,60,49,.12);
}
.eth-thailand-map {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 16px 45px rgba(18,60,49,.12);
}
