/* CSS 變數 */
:root {
  --dark-green: #2d5016;
  --main-green: #4a7c23;
  --brand-green: #558c32;
  --brand-green-hover: #3a6b1d;
  --lime-green: #d4e157;
  --light-gray: #f5f5f5;
  --dashed-color: #ccc;
  --text-color: #333;
  --text-muted: #666464;
  --color-teal: #354d40;
  --color-deep-green: #002d18;
  --color-forest: #1d3123;
  --white-95: rgba(255, 255, 255, 0.95);
  --white-90: rgba(255, 255, 255, 0.9);
  --gray-bg: #f8f9f8;
  --gray-input: #f0f2f1;
  --gray-input-focus: #e8ebe9;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --section-pad: 60px;
  --fz-title-lg: 32px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.h60 {
  height: 60px;
}
.bg-main {
  background-color: var(--color-deep-green);
}
.mb60 {
  margin-bottom: 60px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
.fz64 {
  font-size: 64px;
  line-height: 74px;
}
.fz45 {
  font-size: 45px;
  line-height: 54px;
}
p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 28px;
}
.text-left {
  text-align: left;
}
.main-color {
  color: var(--brand-green);
}
.bg-forty {
  background-color: #9caba3;
}
img {
  width: 100%;
}
.show-in-mobile {
  display: none;
}
.hide-in-mobile {
  display: block;
}
.center {
  text-align: center;
}
.section {
  padding: 60px 0;
}
.container-l {
  display: block;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 32px;
  z-index: 2;
}

/* 工具類與佈局（取代 Bootstrap） */
.text-white {
  color: #fff;
}
.fz14 {
  font-size: 14px;
  line-height: 1.6;
}
.layout-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.layout-row--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.layout-col-full {
  width: 100%;
}
.kv-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.kv-layout__full {
  width: 100%;
  flex: 1 1 100%;
}
.kv-layout__col {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
}
.kv-layout__col--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .kv-layout__col {
    flex: 1 1 100%;
  }
}
.leaderboard-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.leaderboard-unit {
  min-width: 0;
}
@media (max-width: 768px) {
  .leaderboard-row {
    grid-template-columns: 1fr;
  }
}
.lead-form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form-grid__full {
  grid-column: 1 / -1;
}
@media (max-width: 768px) {
  .lead-form-content {
    grid-template-columns: 1fr;
  }
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
}
.s8-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.earth-day-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.earth-day-feature__col {
  min-width: 0;
}
@media (max-width: 768px) {
  .earth-day-feature__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.section.kv {
  background-color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 430px;
}
.section.kv .title-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 10%;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .show-in-mobile {
    display: block;
  }
  .hide-in-mobile {
    display: none;
  }
  .mobile-center {
    text-align: center;
  }
}
.section.s3 {
  background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/s1-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

/* 統計卡片區塊 */
.s3-title {
  margin-bottom: 40px;
}
.stat-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.stat-card-icon {
  width: 320px;
  padding: 30px;
  height: auto;
  margin-bottom: 16px;
}
.stat-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stat-card-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-teal);
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}
.stat-card-value {
  font-size: 60px;
  font-weight: 700;
  color: var(--main-green);
  margin: 0 0 4px;
  letter-spacing: 1px;
}
.stat-card-label {
  font-size: 24px;
  color: #3d5c2e;
  margin: 0;
}
@media (max-width: 768px) {
  .section.s3 {
    background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/m_s2-bg.jpg);
  }
  .stat-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    max-width: 100%;
    width: 100%;
  }
}
.section.s4 {
  background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/s2-bg-pattern.png);
  background-position: center;
  padding: 100px 0;
  position: relative;
}
/* 頂部 Header 膠囊卡片 */
.timeline-header-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
  width: 100%;
}
.pill-card {
  display: flex;
  align-items: center;
  padding: 10px 24px 10px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.pill-card-gray {
  background-color: #e6eae8;
}
.pill-card-green {
  background-color: #9caba3;
}
.pill-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.pill-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pill-card-text {
  margin: 0 0 0 16px;
  font-size: 16px;
  line-height: 1.4;
}
.pill-card-gray .pill-card-text {
  color: #555;
}
.pill-card-green .pill-card-text {
  color: #1a2e0f;
  font-weight: 500;
}
.pill-card-x {
  font-size: 20px;
  color: #555;
  flex-shrink: 0;
}

/* 時間軸主容器 */
.timeline-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* 中央虛線 (Desktop) */
.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed var(--dashed-color);
  transform: translateX(-50%);
}

.timeline-year-pill {
  position: relative;
  background-color: var(--main-green);
  color: white;
  padding: 6px 25px;
  border-radius: 30px;
  font-size: 30px;
  font-weight: bold;
  width: fit-content;
  margin: 0px auto;
  z-index: 5;
  text-align: center;
}

.timeline-row {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  box-sizing: border-box;
}

.timeline-row.left {
  justify-content: flex-start;
  margin-bottom: 10px;
}
.timeline-row.right {
  justify-content: flex-end;
}

/* 圖示固定在軸線上 */
.dot-icon {
  position: absolute;
  top: 25px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  z-index: 10;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dot-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左側圖示 + 藍框卡片樣式（2018 等） */
.dot-icon.dot-icon-lg {
  width: 90px;
  height: 90px;
  top: 20px;
}
.left-icon-row .timeline-col {
  padding-left: 70px;
}
.timeline-card.left-icon-card .card-content {
  max-width: 800px;
  background-color: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 25px 28px;
}
.timeline-card.left-icon-card .card-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.timeline-card.left-icon-card .card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.timeline-card {
  max-width: 1000px;
  padding: 30px 0;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

/* 資訊卡片樣式（依設計圖） */
.timeline-card.info-card {
  max-width: 1000px;
  background-color: #a2ada4;
  padding: 30px;
  margin-top: 25px;
  border-radius: 22px;
  align-items: center;
  gap: 30px;
  outline-offset: 2px;
}
.timeline-card.info-card .card-img {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  border-radius: 0;
  overflow: hidden;
}
.timeline-card.info-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline-card.info-card .card-content {
  flex: 1;
  min-width: 0;
}
.timeline-card.info-card .card-title,
.timeline-card.info-card .card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-forest);
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.timeline-card.info-card .card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-forest);
  margin: 0;
}

.card-img {
  flex: 0 0 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  flex: 1;
}
.card-content h4 {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
  color: var(--dark-green);
}
.card-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
  color: #333;
}

.bridge-section {
  max-width: 1400px;
  position: relative;
  background-color: var(--brand-green);
  z-index: 999;
  padding: 60px;
  margin: 0 auto;
}
/* 手機版精細微調 */
@media (max-width: 768px) {
  .section.s4 {
    padding: 100px 0 0 0;
  }
  .timeline-header-icons {
    flex-direction: column;
    margin-bottom: 0;
  }
  /* 軸線移至左側 40px 處 */
  .timeline-container::before {
    left: 40px;
    transform: none;
  }

  /* 年份標籤：中心點對齊軸線 */
  #timelineContent .timeline-year-pill {
    transform: translateX(-50%) translateY(36px);
  }
  #timelineContent.is-inview .timeline-year-pill {
    transform: translateX(-50%) translateY(0);
  }
  .timeline-year-pill {
    margin: 40px 0 30px 40px;
    font-size: 18px;
    padding: 4px 20px;
  }

  .timeline-row {
    padding-left: 40px !important;
    padding-right: 0 !important;
    margin-bottom: 60px;
    flex-direction: column;
  }

  .timeline-col {
    width: 100%;
  }

  /* 品牌圖示：中心點對齊軸線 */
  .dot-icon {
    left: 30px;
    transform: translateX(-50%);
    top: 0;
    width: 44px;
    height: 44px;
  }

  /* 卡片佈局調整 */
  .timeline-card {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    flex-direction: column;
    gap: 15px;
  }

  /* 灰色卡片：圖示在軸線上，文字在右側 */
  .timeline-row.left .timeline-card {
    padding-left: 35px;
  }

  .timeline-row.right .timeline-card .card-content {
    padding: 15px 20px;
    border-radius: var(--radius-md);
  }

  /* 資訊卡片：保持設計圖樣式，響應式改為上下排列 */
  .timeline-card.info-card {
    flex-direction: column;
    padding: 20px;
  }
  .timeline-card.info-card .card-img {
    width: 100%;
    max-width: 280px;
    height: 220px;
    flex: none;
    margin: 0 auto;
  }
  .timeline-card.info-card .card-content {
    margin-left: 0;
  }
  .timeline-card.info-card .card-content p {
    display: block;
  }

  .timeline-row.left .timeline-card .card-content {
    background-color: var(--light-gray);
    padding: 15px 20px;
    border-radius: var(--radius-md);
  }

  /* 左側圖示卡片：手機版保持藍框樣式 */
  .left-icon-row .timeline-col {
    margin-left: 0;
    padding-left: 35px;
  }
  .dot-icon.dot-icon-lg {
    width: 60px;
    height: 60px;
  }
  .timeline-card.left-icon-card .card-content {
    background-color: var(--gray-bg);
    padding: 20px 22px;
  }
  .timeline-card.left-icon-card .card-content p {
    display: block;
  }

  .card-img {
    width: calc(100% - 35px);
    height: auto;
    margin-left: 35px;
    flex: none;
  }
  .card-img img {
    border-radius: 0;
  }

  .card-content h4 {
    font-size: 17px;
  }
  .card-content p {
    display: none;
  }
  .bridge-section {
    max-width: 350px;
    padding: 30px;
  }
}
.section.s5 {
  margin-top: -8.5%;
  padding: 5%;
  position: relative;
  background-color: #dee4db;
  padding-bottom: 20%;
}

/* 主題排行榜三欄（網格見上方 .leaderboard-row） */
.leaderboard-column {
  height: 100%;
  border-radius: 18px;
  padding: 24px 20px;
}
.leaderboard-yellow {
  background-color: #e8b64b;
}
.leaderboard-olive {
  background-color: #7d9843;
}
.leaderboard-teal {
  background-color: #40665b;
}
.leaderboard-col-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-teal);
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 0 0 20px 0;
}
.leaderboard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.leaderboard-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-teal);
}
.leaderboard-item.white {
  border-bottom: 1px solid white;
}
.leaderboard-item:last-child {
  margin-bottom: 0;
}
.leaderboard-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.leaderboard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leaderboard-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4px 0 0 8px;
  box-sizing: border-box;
  color: #40665b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.leaderboard-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
}
.leaderboard-text strong {
  font-size: 20px;
  color: var(--color-teal);
  line-height: 1.35;
  border-bottom: 1px solid var(--color-teal);
  width: fit-content;
}
.leaderboard-text span {
  font-size: 16px;
  color: var(--color-teal);
  line-height: 1.5;
}
.leaderboard-teal .leaderboard-text strong,
.leaderboard-teal .leaderboard-text span {
  color: var(--white-95);
}
.leaderboard-teal .leaderboard-text strong {
  border-bottom: 1px solid var(--white-95);
}
.leaderboard-teal .leaderboard-text span {
  color: white;
}
.leaderboard-olive .leaderboard-text strong {
  border-bottom: 1px solid white;
  color: white;
}
.leaderboard-olive .leaderboard-text span {
  color: white;
}

/* Lead Form 表單區塊 */
.lead-form-wrap {
  padding: 60px 0;
  margin-top: -13%;
}
.lead-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.lead-form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0 0 36px 0;
  line-height: 1.4;
}
.lead-form-info {
  padding-right: 32px;
}
.lead-form-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 16px 0;
}
.lead-form-ps {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.lead-form-field {
  position: relative;
}
.lead-form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-color);
  background: var(--gray-input);
  border: none;
  box-sizing: border-box;
}
.lead-form-input::placeholder {
  color: #999;
}
.lead-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lead-form-input:focus {
  outline: none;
  background: var(--gray-input-focus);
}
.lead-form-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-green);
  border: none;
  cursor: pointer;
}
.lead-form-btn:hover {
  background: var(--brand-green-hover);
}
.lead-form-error {
  position: absolute;
  color: #c00;
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .lead-form-box {
    padding: 32px 24px;
  }
  .lead-form-title {
    font-size: 20px;
    margin-bottom: 28px;
  }
  .lead-form-info {
    padding-right: 0;
    margin-bottom: 28px;
  }
  .lead-form-desc {
    font-size: 15px;
  }
  .section.s5 {
    margin-top: -15%;
    padding-top: 25%;
    padding-bottom: 100%;
  }
  .lead-form-wrap {
    margin-top: -100%;
  }
}
.bridge {
  background-color: var(--brand-green);
  padding: 30px 0;
}
.section.s6 {
  background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/s4-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 15%;
  margin-top: -13%;
  min-height: 800px;
  position: relative;
}
.s6-title {
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
}
.marquee-row {
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
  user-select: none;
}
.marquee-row:last-child {
  margin-bottom: 0;
}
.marquee-row-2 {
  padding-left: 80px;
}
.marquee-track {
  display: flex;
  gap: 16px;
  padding: 10px 8px;
  animation: marquee 45s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-track.marquee-reverse {
  animation: marquee-reverse 40s linear infinite;
}
.comment-bubble {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 15px;
  color: var(--text-color);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333%, 0, 0);
  }
}
@keyframes marquee-reverse {
  0% {
    transform: translate3d(-33.333%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
/* Section s7: 進化論 + 永續日常 */
.section.s7.green-section {
  background-color: #3b5647;
  padding: 80px 0;
  color: #fff;
}
.section.s7 .container-l {
  max-width: 1100px;
}

/* Part 1: 綠藤 1% 綠色改變進化論 */
.evolution-block {
  margin-bottom: 80px;
}
.evolution-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
}
.evolution-quote {
  font-size: 18px;
  text-align: center;
  opacity: 0.95;
  color: white;
}
.evolution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.evolution-card {
  background: rgba(0, 0, 0, 0.15);

  overflow: hidden;
}
.evolution-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.evolution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evolution-card-body {
  padding: 24px 20px;
  text-align: center;
  background-color: #002d18;
}
.evolution-card-en {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin: 0 0 4px 0;
  opacity: 0.9;
}
.evolution-card-zh {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

/* Part 2: 綠藤人的永續日常 */
.daily-block {
  margin-top: 80px;
}
.daily-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
}
.daily-subtitle {
  font-size: 18px;
  text-align: center;
  margin: 0 0 48px 0;
  opacity: 0.95;
}
.daily-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}
.daily-row {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}
.daily-row-img {
  flex: 0 0 58%;
}
.daily-row-text {
  flex: 1;
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.daily-row-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-deep-green);
  margin: 0 0 16px 0;
}
.daily-row-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-deep-green);
  margin: 0;
}
.ghost-btn {
  display: block;
  margin: 0 auto;
  padding: 20px 60px;
  font-size: 16px;
  font-weight: 600;
  max-width: 600px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.evolution-block .ghost-btn {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .evolution-cards {
    grid-template-columns: 1fr;
  }
  .daily-row {
    flex-direction: column;
  }
  .daily-row-img {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .section.s7.green-section {
    padding: 48px 0;
  }
  .evolution-title,
  .daily-title {
    font-size: 24px;
  }
  .evolution-block {
    margin-bottom: 48px;
  }
  .daily-block {
    margin-top: 48px;
  }
  .daily-row-text {
    padding: 28px 24px;
  }
  .daily-row-title {
    font-size: 18px;
  }
}
.section.s8 {
  background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/s5-3-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section.s8 .ghost-btn {
  padding: 20px 50px;
  width: fit-content;
}

/* Section s9: 世界地球日 */
.section.s9.earth-day-section {
  padding: 0;
  background-color: #9caba3;
}
.earth-day-hero {
  display: block;
  max-width: 1400px;
  background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/s6-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 32px 100px;
  margin: auto;
  text-align: center;
}
.earth-day-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.earth-day-logo {
  max-width: 160px;
  margin: 30px auto 32px auto;
}
.earth-day-title {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
}
.earth-day-desc {
  font-size: 16px;
  color: var(--white-95);
  line-height: 1.7;
  margin: 0 0 16px 0;
}
.earth-day-desc:last-of-type {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 0;
}
.earth-day-feature {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #0b291d;
  position: relative;
  z-index: 5;
  margin-top: 30px;
  box-sizing: border-box;
}
.earth-day-feature img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.earth-day-feature-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}
.earth-day-feature-sub {
  font-size: 18px;
  color: var(--white-95);
  margin: 0 0 24px 0;
}
.earth-day-feature-desc {
  font-size: 15px;
  color: var(--white-90);
  line-height: 1.7;
  margin: 0 0 28px 0;
}
.earth-day-cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #c84600;
  text-decoration: none;
  transition: background 0.2s;
}
.earth-day-cta:hover {
  background: #c8460060;
  color: #fff;
}
@media (max-width: 768px) {
  .section.s6 {
    padding-top: 80%;
    margin-top: -80%;
    padding-bottom: 60px;
    background-image: url(https://gvcdn.s3-ap-northeast-1.amazonaws.com/shopline/2021-rebrand/pages/21daysofgreen/m_s4-bg.jpg);
  }
  .s6-title {
    margin-bottom: 24px;
  }
  .marquee-wrap {
    margin-top: 16px;
  }
  .marquee-row {
    margin-bottom: 12px;
  }
  .marquee-row-2 {
    padding-left: 40px;
  }
  .comment-bubble {
    padding: 10px 18px;
    font-size: 14px;
  }
  .earth-day-hero {
    padding: 60px 20px 60px;
  }
  .earth-day-title {
    font-size: 28px;
  }
  .earth-day-feature {
    margin: 20px 16px 0;
    padding: 32px 24px;
  }
  .earth-day-feature__grid .earth-day-feature__col:last-child {
    text-align: center;
  }
  .earth-day-feature img {
    margin-bottom: 30px;
  }
  .earth-day-cta {
    display: block;
    text-align: center;
  }
  .bridge .fz64 {
    font-size: 30px;
    line-height: 40px;
  }
  .earth-day-logo {
    max-width: 120px;
    margin: 30px auto 30px auto;
  }
}
.section.s10 {
  background-color: #e6eae8;
  padding-top: 20%;
  margin-top: -15%;
}

/* Section s11: 企業組織感謝名單 */
.section.s11 {
  background-color: #fff;
  padding: 80px 0 100px;
}
.thanks-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a3b2e;
  text-align: center;
  margin: 0 0 48px;
}
.thanks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 48px;
  justify-items: stretch;
}
.thanks-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thanks-item {
  font-size: 15px;
  color: #333;
  text-align: left;
  line-height: 1.5;
}
.thanks-load-wrap {
  text-align: center;
  margin-top: 24px;
}
.thanks-load-btn {
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  color: #0a2d1b;
  background: transparent;
  border: 1px solid #0a2d1b;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.thanks-load-btn:hover {
  background: #0a2d1b;
  color: #fff;
}
.thanks-load-btn.is-hidden {
  display: none;
}
.thanks-error {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
}
@media (max-width: 768px) {
  .section.s11 {
    padding: 48px 0 60px;
  }
  .thanks-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .thanks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-bottom: 32px;
  }
  .thanks-item {
    font-size: 14px;
  }
  .fz45 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .fz52,
  h2,
  h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
