/* 放大 tf-popup 右上角叉叉按鈕 */
.tf-popup-close-btn {
  font-size: 2.5rem !important;
  line-height: 1 !important;
  color: #333 !important;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.tf-popup-close-btn:hover {
  opacity: 1;
  color: #d00 !important;
  text-shadow: 0 2px 8px #fff;
}

/* === 1. Reset & Base === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #111;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
textarea {
  font-size: initial;
}




/* === 3. Layout Sections === */

/* Header */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease;
  border-bottom: none !important;
}



.site-header.scrolled {
  background: #fff !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .header_navbar-link-text,
.site-header.scrolled .language-button,
.site-header.scrolled .cart-button i,
.site-header.scrolled .sign-in-button,
.site-header.scrolled .language-button i,
.site-header.scrolled .header_search-icon i {
  color: #333 !important;
}

.site-navbar {
  background: transparent;
}

.header_navbar-link-text {
  color: #fff !important;
}

.logo img {
  height: 42px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  padding: 6px 0;
  transition: color 0.2s;
}

.main-nav li a:hover {
  color: #84c100;
}

.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.language-button,
.cart-button,
.sign-in-button {
  font-family: 'Montserrat', sans-serif;

  padding: 0 12px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.cart-button i,
.language-button i {
  font-size: 1.2rem;
  color: #fff;
}

.language-button:hover,
.sign-in-button:hover {
  color: #84c100;
}

.cart-button:hover i {
  color: #84c100;
}


/* 展開式搜尋匡 */
.header_search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
}

.header_search-icon {
  cursor: pointer;
  margin-right: 12px;
  /* padding: 8px; */
}

.header_search-icon i {
  color: #fff;
  font-size: 1.2rem !important;
}

.header_search-icon.focus {
  display: none;
}

.header_search-input {
  display: none;
  width: 0;
  border: none;
  background: transparent;
  color: #000;
  padding: 8px;
  padding-right: 40px;

}

.header_search-container.active {
  background: #fff;
  /* border-radius: 8px; */
}

.header_search-container.active .header_search-input {
  display: block;
  width: 300px;
}

.header_search-container.active .header_search-icon.gray {
  display: none;
}

.header_search-container.active .header_search-icon.focus {
  display: block;
}

.header_search-recommand-box {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header_search-container.active .header_search-recommand-box {
  display: block;
}

/* === 4. HERO === */
.hero {
  min-height: clamp(400px, 80vh, 800px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding-left: 64px;
  padding-right: 64px;
}

.hero-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700 !important;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300 !important;
  margin-bottom: 24px;
}


.cta-button:hover {
  background: #6ba900;
}

/* === 5. Search Bar === */
.search-section {
  min-height: clamp(150px, 20vh, 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f3f4f6;
  padding: 24px 0 24px 0;
}

.search-title {
  color: #5e5e5e;
  display: flex;
  align-items: center;
}

.search-section h2 {
  font-size: 2rem;
  color: #5e5e5e;
  margin-bottom: 28px;
}

.search-form {
  display: flex;
  max-width: 800px;
  width: 50%;
  background: #fafafa;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  overflow: hidden;
}

.search-form input[type="text"] {
  flex: 1;
  border: none;
  padding: 13px 16px;
  font-size: 1rem;
  color: #495057;
  background: transparent;
}

.search-form input[type="text"]:focus {
  outline: 1px solid #84c100;
  /* 使用绿色外框 */
  outline-offset: -1px;
  /* 让外框紧贴输入框 */
  border-radius: 8px 0 0 8px;
  /* 左上 右上 右下 左下 */
}

.search-form button {
  /* background: #518000; */
  /* background: #527C1C; */
  background: #558032;
  color: #fff;
  border: none;
  padding: 13px 24px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background 0.2s;
}

.search-form button:hover {
  background: #6ba900;
}


/* 文字動態區塊 */
.vertical-slider {
  display: inline-block;
  position: relative;
  height: 0.95em;
  overflow: hidden;
  font-size: 1em;
  width: fit-content;
  /* 改为自适应内容宽度 */
  min-width: 200px;
  font-weight: 600;
  margin-left: 12px;
  margin-bottom: 4px;
}

.slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.7s cubic-bezier(.48, .07, .46, .99);
  color: #000;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(.48, .07, .46, .99);
  z-index: 2;
}

.slide.last {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.7s cubic-bezier(.48, .07, .46, .99);
  z-index: 1;
}

.slide .char {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  transition:
    opacity 0.4s,
    transform 0.6s;
  /* 需要「沒有active時」把字母收起來 */
}

.slide.active .char {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--char-index) * 0.07s);
  /* 這行就是stagger關鍵！！ */
}

.slide:not(.active) .char {
  transition-delay: 0s;
}

/* === 6. Features === */
.feature-section {
  display: flex;
  flex-direction: column;
  /* gap: 64px; */
  /* padding: 80px 0; */
}

.feature {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: clamp(300px, 50vh, 600px);
  margin: 0 auto;
  width: 100%;
}

.feature-img {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-content {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 0 64px;
  position: relative;
}

.feature-content:has(.report-bar-trigger) {
  padding: 0 64px 52px;
}


.feature-content h2,
.feature-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #3d3d3d;
  margin: 0 !important;
}

@media (max-width: 1280px) and (min-width: 900px) {

  .feature-content h2,
  .feature-content h1 {
    font-size: 1.6rem;
  }

  .feature-content {
    gap: 12px;
  }

}

.feature-content p {
  color: #6d6d6d;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;

}

.feature-content ul {
  padding-left: 0;
  margin: 0;
  list-style-position: inside;
}

.feature-content li {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 4px;
  color: #6d6d6d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.cta-link {
  color: #3d3d3d !important;
  font-weight: 700 !important;
  font-size: 1.06rem !important;
  display: inline-block !important;
  margin-top: 6px !important;
  transition: color 0.2s !important;
  border-bottom: none !important;
}

.cta-link.white {
  color: #fff !important;
}

.cta-link:hover {
  color: #84c100 !important;
}



.feature-section .feature:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content ul {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
}

.feature-content li {
  padding-left: 0;
  margin-left: 0;
  color: #6d6d6d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.feature-content h2+p {
  margin-top: 0 !important;
}

/* === 7. CTA Section === */
.cta-section {
  background: #2d5738;
  color: #fff;
  padding: 64px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 1);
  transform: translateX(-50%);
}

.cta-content {
  width: 45%;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.cta-button {
  display: inline-block;
  background: #29272E;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  border: none;
  margin: 8px 12px 24px 12px;
}



/* === 9. Responsive === */

@media (max-width: 992px) {
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
  }

  .site-header.scrolled {
    background: #fff !important;
    backdrop-filter: none !important;
  }

  .hero {
    margin-top: 0;
    padding-top: 0;
  }

  .site-header .header_navbar-link-text,
  .site-header .language-button,
  .site-header.scrolled .cart-button i,
  .site-header .sign-in-button,
  .site-header .header_search-icon i {
    color: #333 !important;
  }

  .cart-button i,.header_search-icon i{
    font-size: 1.6rem !important;
  }


  .site-header .header_search-icon i,
  .navbar-toggle i {
    color: #fff !important;
  }

  .site-header .header_logo-pc.logo-default {
    display: none;
  }

  .site-header .header_logo-pc.logo-scrolled {
    display: block;
  }

  .site-header .logo-scrolled {
    width: 220px;
  }

  .header_icon-group {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }


  .navbar-header {
    background-color: transparent !important;
  }

  .navbar-collapse {
    background-color: #fff !important;
    border-color: transparent !important;
  }



  .navbar-toggle .icon-bar {
    background-color: #333 !important;
  }

  .header_navbar {
    padding: 0 20px;
  }

  .header_search-container {
    border-radius: 0;
  }

  .header_search-container.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw !important;
    background: #fff;
    z-index: 9999;
    padding: 10px;
    border-radius: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .header_search-container.active .header_search-input {
    width: 100%;
    border-radius: 0;
  }

  .header_search-recommand-box {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .header_search-container.active .header_search-recommand-box {
    display: block;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    width: 100vw !important;
    margin: 0;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
  }

  .header_search-container.active .header_search-recommand-keyword {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .header_search-container.active .header_search-recommand-keyword a {
    margin: 0;
  }

  .header_search-clear {
    right: 40px;
  }

  .header_search-container.active~.header_search-overlay {
    display: block;
  }
}


@media (max-width: 900px) {

  .site-header,
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }


  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .hero::before {
    width: 100%;
  }

  .search-form {
    width: 80%;
  }

  .feature {
    flex-direction: column;
    height: auto !important;
    min-height: auto !important;
  }

  .feature-section .feature:nth-child(even) {
    flex-direction: column;
  }

  .feature-content {
    padding: 64px;
    width: 100%;
  }

 .feature-content:has(.report-bar-trigger) {
    padding: 32px 64px 0;
  }


  .feature-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .search-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-title .vertical-slider {
    display: inline-block;
    min-width: 150px;
    margin-left: 8px;
  }

  .cta-section {
    flex-direction: column;
    padding: 32px 64px;
  }

  .cta-section::after {
    display: none;
  }

  .cta-content:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
  }

  .cta-content {
    width: 100%;
    padding: 24px 0;
    position: relative;
  }

  .feature-section .feature:nth-child(-n+2) .feature-content .report-bar {
    position: static;
    margin-top: 0;
    margin-left: -64px;
    margin-right: -64px;
    width: calc(100% + 128px);
  }

}

@media (max-width: 600px) {
  .site-header {
    padding: 0 10px;
    height: auto;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1rem;
  }

  .feature-content h2,
  .feature-content h1 {
    font-size: 1.5rem;
  }

  .feature-section .feature:nth-child(-n+2) .feature-content .report-bar {
    position: static;
    margin-top: 0;
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }

  .search-form {
    width: 90%;
  }

  .search-section h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: clamp(350px, 70vh, 700px);
    background-position: 80% center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  }

  .hero-content {
    padding: 0 32px;
  }

  .feature-content {
    padding: 32px;
  }

  .feature-content:has(.report-bar-trigger) {
    padding: 32px 32px 0;
  }

  .site-header-top {
    padding: 0px;
  }

  .cta-section {
    padding: 32px;
  }

  .vertical-slider {
    height: 1.25em;
    font-size: 1em;
    min-width: 100px !important;
    font-weight: 600;
    margin-bottom: 0px;
  }

}

.header_logo-pc {
  height: 42px;
  transition: all 0.3s ease;
}

.header_logo-pc.logo-default {
  display: block;
}

.header_logo-pc.logo-scrolled {
  display: none;
}

.site-header.scrolled .header_logo-pc.logo-default {
  display: none;
}

.site-header.scrolled .header_logo-pc.logo-scrolled {
  display: block;
}

.site-header.scrolled .logo-scrolled {
  width: 220px;
}

.site-header.scrolled .navbar-toggle i {
  color: #333 !important;
}

.header_search-clear {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  padding: 5px;
  z-index: 1000;
  font-size: 20px;
}

.header_search-container.active .header_search-clear {
  display: block;
}

.header_search-clear:hover {
  color: #333;
}

.header_search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

/* === Past Column Gallery Layout === */
.past-column-layout {
  background: #fff;
}

.past-column-container {
  max-width: 100%;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 50vh;
}

.gallery-item:hover {
  z-index: 1;
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.gallery-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  transition: background 1s ease;
}

.gallery-item:hover .gallery-image::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.gallery-overlay {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: #fff;
  width: 100%;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.gallery-overlay p {
  font-size: 0.875rem;
  font-weight: 400;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: 0;
  line-height: 1.6;
}

.gallery-item:hover .gallery-overlay p {
  max-height: 200px;
  opacity: 0.8;
  margin-top: 8px;
}

/*  動態調整項目4、5、6個時的layout */
@media (min-width: 1025px) {

  /* 4 items: 2x2 */
  .gallery-grid:has(.gallery-item:first-child:nth-last-child(4)) {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 5 items: 3+2 */
  .gallery-grid:has(.gallery-item:first-child:nth-last-child(5)) {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-grid:has(.gallery-item:first-child:nth-last-child(5)) .gallery-item {
    grid-column: span 2;
  }

  .gallery-grid:has(.gallery-item:first-child:nth-last-child(5)) .gallery-item:nth-child(4),
  .gallery-grid:has(.gallery-item:first-child:nth-last-child(5)) .gallery-item:nth-child(5) {
    grid-column: span 3;
    /* 5個時最後兩個撐滿螢幕寬度 */
  }
}


/* RWD */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 5 items: 平板寬度時最後一個撐滿螢幕寬度 */
  .gallery-grid:has(.gallery-item:first-child:nth-last-child(5)) .gallery-item:last-child {
    grid-column: span 2;
  }

  .gallery-overlay h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* 手機版維持一列一個item */
  .gallery-grid:has(.gallery-item:first-child:nth-last-child(5)) .gallery-item:last-child {
    grid-column: span 1;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-overlay h3 {
    font-size: 1.5rem;
  }
}

/* Gallery CTA 第六格 */
.gallery-cta {
  height: 50vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)),
    url('/images/gallery-cta-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  position: relative;
  cursor: pointer;
}

.gallery-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
}

.gallery-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.gallery-cta-inner p {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.7;
  margin: 0;
  line-height: 1.6;
}

.gallery-cta-btn {
  display: inline-block;
  padding: 8px 0px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.gallery-cta-btn:hover {

  border-bottom: 2px solid #558032;
}

/* 建議報告展開底欄 */
.report-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 3;
}

.report-bar-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 64px;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.report-bar-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.report-bar-arrow {
  display: inline-block;
  transition: transform 0.35s ease;
  font-size: 1.1rem;
  line-height: 1;
}

.report-bar-arrow i {
  color: #fff;
}

.report-bar.expanded .report-bar-arrow {
  transform: rotate(180deg);
}

.report-bar-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
  padding: 0 64px;
}

.report-bar.expanded .report-bar-list {
  max-height: 400px;
  padding-bottom: 20px;
}

.report-bar-list ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.report-bar-list ul li {
  font-size: 0.875rem;
  padding: 6px 0;
  line-height: 1.6;
}

.report-bar-list ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none !important;
  border-bottom: none !important;
  transition: color 0.2s ease;
}

.report-bar-list ul li a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.report-bar-trigger {
  padding: 12px 64px;
}

.feature-content .report-bar-list {
  padding: 0 24px;
}

.feature-content .report-bar.expanded .report-bar-list {
  padding-bottom: 16px;
}

@media (max-width: 768px) {
 .report-bar-trigger {
  padding: 12px 32px;
}

  .report-bar-list {
    padding: 0 24px;
  }

  .report-bar.expanded .report-bar-list {
    padding-bottom: 16px;
  }
}