#groser-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groser-popup-hide {
  display: none !important;
}

.groser-popup-content {
  background: #fff;
  width: 850px;
  display: flex;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  animation: zoomIn 0.3s;
}
.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  z-index: 10;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.popup-left {
  flex: 1;
  padding: 50px;
  text-align: center;
}
.popup-right {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: block !important;
}

.promo-icon {
  font-size: 40px;
  color: #333;
  margin-bottom: 20px;
}
.popup-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.popup-left h2 span {
  color: #8bc34a;
}
.popup-left p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.promo-form {
  display: flex;
  gap: 10px;
  padding-top: 50px;
}

.promo-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.promo-form input[type="email"] {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  outline: none;
  height: 44px;
}

.promo-form input[type="submit"] {
  background: #8bc34a;
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
  font-weight: bold;
  height: 44px;
  margin-left: 80px;
}

.promo-form input[type="submit"]:hover {
  background: #7cb342;
}

/* Thêm khối này để định dạng lại dòng thông báo thành công/lỗi */
.promo-form .wpcf7-response-output {
  flex-basis: 100%; /* Ép chiếm 100% chiều rộng */
  margin: 10px 0 0 0 !important; /* Đẩy xuống 1 chút và bỏ margin mặc định */
  padding: 10px; /* Thêm đệm cho chữ dễ đọc */
  text-align: left; /* Canh lề trái cho đồng bộ hoặc center tùy bạn */
}
.dont-show {
  display: block;
  margin-top: 25px;
  color: #999;
  text-decoration: none;
  font-size: 13px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .groser-popup-content {
    width: 90%;
    max-width: 100vw;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .popup-right {
    display: none !important;
  }

  .popup-left {
    width: 100%;
    box-sizing: border-box;
  }
  .promo-form .wpcf7-form {
    display: flex;
    flex-direction: column;

  }

  .promo-form input[type="email"],
  .promo-form input[type="submit"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin:0;
  }
}

/* CSS Scope cho Widget */
.farmas-custom-wrapper .section-container {
  display: flex;
  background: #fff;
  width: 100%;
  position: relative;
}
.left-side {
  flex: 0 0 50%;
}
.right-side {
  flex: 0 0 50%;
  position: relative;
  padding: 60px 0 0 60px;
}

/* Left side styles */
.years-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  margin-bottom: 30px;
}
.big-number {
  font-size: 200px;
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: cover;
  background-position: center;
}
.dot {
  width: 10px;
  height: 10px;
  background: #4a8928;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 182px;
}
.years-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.years-text .top {
  font-size: 48px;
}
.years-text .bottom {
  font-size: 48px;
  font-weight: 800;
}
.tagline {
  font-size: 30px;
  line-height: 1.7;
  color: #333;
  max-width: 400px;
  margin-bottom: 40px;
}
.stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
  justify-content: space-around;
}
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #4a8928;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
}

/* Right side styles - Offset logic */
.quote-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
  height: 400px;
  background: #4a8928;
  padding: 40px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  z-index: 6;
}
.layout {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 330px;
  height: 400px;
  background: #fff;
  z-index: 5;
}
.photo-plants {
  height: 598px;
  object-fit: cover;
}
.q-mark {
  font-size: 90px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.5;
  margin-bottom: 10px;
  display: block;
}
.quote-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  flex: 1;
}
.quote-author {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .farmas-custom-wrapper .section-container {
    flex-direction: column;
  }

  /* ===== LEFT SIDE ===== */
  .years-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .big-number {
    font-size: 90px; /* giảm mạnh cho mobile */
  }

  .dot {
    display: none; /* bỏ cho gọn */
  }

  .years-text .top,
  .years-text .bottom {
    font-size: 28px;
  }

  .tagline {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
  }
  .right {
    position: relative;
  }

  .quote-panel {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 70%;
    height: auto;
    background: #4a8928;
    padding: 30px;
    z-index: 0;
  }
  .right-side {
    padding: 0;
  }

  .layout {
    display: none;
  }

  .q-mark {
    font-size: 50px;
  }

  .quote-text {
    font-size: 16px;
  }

  .quote-author {
    font-size: 11px;
  }

  /* Ảnh */
  .photo-plants img {
    width: 100%;
  }
}
/// slide
 .testimonials-section-widget {
  --main-green: #3a7a1e;
  --bg-light: #f9fbf7;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #2c3a22;
  margin: 0;
}

/* Nút điều hướng */
.nav-btns {
  display: flex;
  gap: 12px;
}
.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--main-green);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover {
  transform: scale(1.1);
  background: #2d6016;
}

/* Cấu trúc Slider */
.slider-viewport {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Card Item */
.card-item {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 cards mỗi dòng */
  min-width: calc((100% - 48px) / 3);
  background: var(--bg-light);
  border: 1px solid #e0ead8;
  padding: 30px;
  position: relative;
  box-sizing: border-box;
}

/* Quote trang trí */
.card-item::after {
  content: '"';
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 90px;
  font-family: Georgia, serif;
  color: var(--main-green);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.avatar {
  width: 500px;
  
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.card-name {
  font-weight: 700;
  font-size: 17px;
  color: #2c3a22;
}
.card-location {
  font-size: 13px;
  color: #7a8a6e;
}
.card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Mobile */
@media (max-width: 1024px) {
  .card-item {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .card-item {
    flex: 0 0 100%;
  }
}
//////---Marquee---

.groser-brand-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  --speed: 25s;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll var(--speed) linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-group {
  display: flex;
  align-items: center;
}

.logo-item {
  padding: 0 40px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo-item img,
.logo-item:hover img {
  filter: none !important;
  opacity: 1 !important;
}
/* ========================================== */
/* CSS CHO GROSER BRANCH BOXES                */
/* ========================================== */

.groser-branches-wrapper {
  width: 100%;
  position: relative;
  z-index: 10; /* Lệnh ép nổi lên mặt nước */
  margin-top: -120px; /* Lệnh kéo ngược khối này chui lên trên 120px */
}

.groser-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cột bằng nhau */
  gap: 30px; /* Khoảng cách giữa các hộp */
}

.groser-branch-card {
  background: #ffffff;
  padding: 12px; /* Tạo viền trắng dày như trong ảnh */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Đổ bóng nhẹ */
}

.branch-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Cắt ảnh thành hình vuông */
  overflow: hidden;
}

.branch-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Đảm bảo ảnh không bị méo */
  display: block;
}

/* Phủ dải gradient đen ở đáy ảnh */
.branch-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(10, 15, 30, 0.85) 0%,
    rgba(10, 15, 30, 0) 100%
  );
}

/* Căn giữa và định dạng chữ */
.branch-content {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.branch-city {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.branch-region {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

/* Reponsive cho điện thoại / Tablet */
@media (max-width: 768px) {
  .groser-popup-content {
    width: 90%;
    max-width: 100vw; /* Bắt buộc không được lớn hơn chiều rộng màn hình */
    box-sizing: border-box; /* Ép padding nằm gọn bên trong width 90% */
    flex-direction: column;
    margin: 0 auto; /* Căn giữa popup */
    overflow-x: hidden; /* Cắt bỏ mọi thứ rác bị tràn sang ngang */
  }

  /* Cột hình ảnh (nếu có) */
  .popup-right {
    width: 100%; /* Bắt buộc thu về 100% của khung cha */
    box-sizing: border-box;
    height: 200px;
    order: -1;
  }

  /* Cột nội dung (nếu bạn có class này, ví dụ popup-left) */
  .popup-left {
    width: 100%;
    box-sizing: border-box;
  }

  /* Ép ô input và nút bấm không được dài hơn màn hình */
  .promo-form input,
  .promo-form button {
    width: 100%; /* Kéo dài full màn hình cho dễ bấm trên mobile */
    max-width: 100%;
    box-sizing: border-box; /* Rất quan trọng để input không bị tràn viền */
    margin-bottom: 10px;
  }
}
/* ========================================== */
/* UI/UX: AUTHOR PROFILE LAYOUT               */
/* ========================================== */

.groser-author-layout {
  max-width: 1000px;
  margin: 0 auto;
  font-family: inherit;
}

/* 1. BIO BOX (Căn chỉnh Avatar trái, Nội dung phải) */
.author-bio-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fcfcfc;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.bio-avatar img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.author-name-blog {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111;
}

.author-location {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}
.author-location i {
  color: #8bb83a;
  margin-right: 5px;
} /* Xanh lá */

.author-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* Social Icons */
.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  margin-right: 10px;
  transition: 0.3s;
}
.author-socials a:hover {
  background: #8bb83a;
  color: #fff;
}

/* 2. LƯỚI 2 CỘT (KINH NGHIỆM & BẰNG CẤP) */
.mt-50 {
  margin-top: 50px;
}
.author-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.detail-col {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #8bb83a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.detail-title {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}

/* 3. LIST BÀI VIẾT (Giao diện list dọc gọn gàng) */
.mt-60 {
  margin-top: 60px;
}
.section-heading {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}

.author-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.author-single-post {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s;
}
.author-single-post:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.post-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

/* Nhãn Topic */
.post-topic-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  background: #eaf3db; /* Nền xanh nhạt */
  color: #4a7515; /* Chữ xanh thẫm */
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-weight: 700;
}

.post-title {
  font-size: 18px;
  margin: 0 0 5px 0;
}
.post-title a {
  color: #222;
  text-decoration: none;
}
.post-title a:hover {
  color: #8bb83a;
}
.post-date {
  font-size: 13px;
  color: #999;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .author-bio-box {
    flex-direction: column;
    text-align: center;
  }
  .author-details-grid {
    grid-template-columns: 1fr;
  }
  .author-single-post {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-thumb img {
    width: 100%;
    height: auto;
  }
}

/* ========================================== */
/* CSS CHO DANH SÁCH TÁC GIẢ                  */
/* ========================================== */
.groser-author-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}
.groser-author-card {
  position: relative;
  margin-top: 70px;
  text-align: center;
}
.groser-author-card .author-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.groser-author-card .author-card-image {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 150px;
  z-index: 2;
}
.groser-author-card .author-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 3px solid #ffffff;
}

.groser-author-card .author-card-info {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 95px 20px 30px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.groser-author-card:hover .author-card-info {
  border-color: #328c2a;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.groser-author-card .author-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.groser-author-card .author-card-role {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
  display: block;
}

@media (max-width: 1024px) {
  .groser-author-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .groser-author-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .groser-author-grid {
    grid-template-columns: 1fr;
  }
}

.blog-post-wrap {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
}

.custom-cat-post-box {
  margin-bottom: 0 !important;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.custom-cat-post-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Group Link */
.post-box-link-group {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.custom-cat-post-box .post-thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.custom-cat-post-box .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-post-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  color: #444;
}
.post-content-wrap {
  padding: 20px;
}
.post-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #222;
}
.custom-cat-post-box:hover .post-title {
  color: #8bb83a;
}

.post-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.read-more-text {
  font-size: 13px;
  font-weight: 700;
  color: #8bb83a;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .blog-post-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .blog-post-wrap {
    grid-template-columns: 1fr !important;
  }
}
.eco-blog-detail {
  margin: 0 auto;
}

/* Meta Info */
.eco-post-meta {
  gap: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.eco-post-meta li {
  font-size: 14px;
  color: #777;
}
.eco-post-meta i {
  color: #8bb83a;
  margin-right: 5px;
}
.author-link {
  font-weight: 700;
  color: #222;
  text-decoration: none;
}
.author-link:hover {
  color: #8bb83a;
}

.eco-post-excerpt {
  font-style: italic;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  border-left: 4px solid #8bb83a;
  padding-left: 20px;
}

.eco-featured-image img {
  border-radius: 12px;
  width: 100%;
}

.eco-post-share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin: 40px 0;
}

.share-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.eco-post-share .social-share,
.eco-post-share .ul_li {
  display: flex !important;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.eco-post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  color: #555;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.eco-post-share a:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.eco-post-share a[href*="facebook.com"]:hover {
  background-color: #3b5998;
}

.eco-post-share a[href*="twitter.com"]:hover {
  background-color: #1da1f2;
}

.eco-post-share a[href*="linkedin.com"]:hover {
  background-color: #0077b5;
}

.eco-post-share a[href*="pinterest.com"]:hover {
  background-color: #bd081c;
}

@media (max-width: 767px) {
  .eco-post-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.eco-author-box {
  display: flex;
  gap: 25px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}
.author-avatar img {
  border-radius: 50%;
}
.author-info h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
.author-socials a {
  margin-right: 15px;
  color: #444;
  font-size: 18px;
}
.author-socials a:hover {
  color: #8bb83a;
}

.related-title-custom {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #8bb83a;
}
.related-name {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.4;
}
.related-name a {
  color: #222;
  text-decoration: none;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.groser-branches-wrapper,
.groser-brand-marquee {
  max-width: 100%;
  box-sizing: border-box !important;
}

@media (max-width: 767px) {
  .groser-branches-grid {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .groser-branch-card {
    box-sizing: border-box;
    width: 100%;
  }
}

.eco-author-card-role {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  padding: 0 20px 20px;
}

.eco-author-card-quote {
  font-size: 15px;
  font-style: normal;
  color: #222;
  padding: 20px 0 0 0;
  margin: 0 20px 20px 20px;
  line-height: 1.7;
  text-align: left;
}

.eco-author-card-quote strong {
  color: #000;
  font-weight: 800;
}
