﻿* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Noto Sans TC', sans-serif;
  color: #1d1d1b;
  background: #ffffff;
}

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

.container {
  width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.nav-wrap {
  height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 34px;
  position: relative;
  overflow: visible;
}

.nav-logo img {
  width: 230px;
  display: block;
}

.main-nav {
  display: flex;
  justify-self: center;
  gap: 42px;
  font-size: 17px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.main-nav .nav-dropdown {
  position: static;
}

.main-nav .nav-dropdown-toggle {
  position: relative;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.main-nav a.active {
  color: #6f8227;
}

.main-nav a.active::after,
.main-nav .nav-dropdown-toggle.active::after,
.main-nav .nav-dropdown.is-open .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: #6f8227;
}

.main-nav .nav-dropdown-toggle.active,
.main-nav .nav-dropdown.is-open .nav-dropdown-toggle {
  color: #6f8227;
}

.main-nav a.has-caret i {
  font-size: 16px;
  transform: translateY(1px);
}

.main-nav .nav-dropdown-toggle i {
  font-size: 16px;
  transform: translateY(1px);
  transition: transform .2s ease;
}

.main-nav .nav-dropdown.is-open .nav-dropdown-toggle i {
  transform: translateY(1px) rotate(180deg);
}

.main-nav .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
  padding: 18px;
  display: none;
  z-index: 40;
}

.main-nav .nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.main-nav .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: var(--nav-dropdown-arrow-left, 50%);
  top: -8px;
  width: 14px;
  height: 14px;
  border-left: 1px solid #e4e7ec;
  border-top: 1px solid #e4e7ec;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.main-nav .nav-dropdown-item {
  display: block;
  border-radius: 10px;
  padding: 11px 12px;
  border-left: 3px solid transparent;
  transition: background-color .18s ease;
}

.main-nav .nav-dropdown-item + .nav-dropdown-item {
  margin-top: 4px;
}

.main-nav .nav-dropdown-item:hover {
  background: #f7f8fa;
}

.main-nav .nav-dropdown-item .title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.35;
}

.main-nav .nav-dropdown-item .desc {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: #475467;
  font-weight: 400;
  line-height: 1.45;
}

.main-nav .nav-dropdown-item.is-highlight {
  background: #ecf3db;
}

.main-nav .nav-dropdown-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
}

.main-nav .nav-dropdown-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.main-nav .nav-dropdown-group {
  border-right: 1px solid #eef1f5;
  padding-right: 10px;
}

.main-nav .nav-dropdown-group:last-child {
  border-right: 0;
  padding-right: 0;
}

.main-nav .nav-dropdown-group .group-title {
  margin: 4px 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #b45309;
  letter-spacing: .2px;
}

.main-nav .nav-dropdown-group.group-tone-1 .group-title {
  color: #1d4ed8;
}

.main-nav .nav-dropdown-group.group-tone-1 .nav-dropdown-item:hover {
  background: #eff6ff;
  border-left-color: #1d4ed8;
}

.main-nav .nav-dropdown-group.group-tone-2 .group-title {
  color: #b45309;
}

.main-nav .nav-dropdown-group.group-tone-2 .nav-dropdown-item:hover {
  background: #fff7ed;
  border-left-color: #c2410c;
}

.main-nav .nav-dropdown-group.group-tone-3 .group-title {
  color: #0f766e;
}

.main-nav .nav-dropdown-group.group-tone-3 .nav-dropdown-item:hover {
  background: #f0fdfa;
  border-left-color: #0f766e;
}

.main-nav .nav-dropdown-visual {
  border-radius: 12px;
  background: linear-gradient(155deg, #fff8ef 0%, #ffffff 48%, #f6f8fb 100%);
  border: 1px solid #f0dcc2;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
}

.main-nav .nav-dropdown-visual .visual-tag {
  align-self: flex-start;
  background: #eca135;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.main-nav .nav-dropdown-visual h5 {
  margin: 9px 0 6px;
  color: #1f2937;
  font-size: 19px;
  line-height: 1.32;
}

.main-nav .nav-dropdown-visual p {
  margin: 0 0 8px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.main-nav .nav-dropdown-visual img {
  width: 100%;
  height: 156px;
  object-fit: contain;
  object-position: center bottom;
  margin-top: auto;
}

.site-header .btn {
  padding: 13px 24px;
  border-radius: 11px;
  font-size: 16px;
}

.site-header .btn i {
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.btn i {
  font-size: 22px;
}

.btn-primary {
  background: #eca135;
  color: #fff;
}

.btn-outline {
  border: 2px solid #a8a8a8;
  color: #1d1d1b;
  background: #ffffff;
}

.hero {
  background: #ececeb url('../images/banner-bg.png') center / cover no-repeat;
  overflow: hidden;
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: center;
  position: relative;
  background-image: url('../images/hero-devices.png');
  background-repeat: no-repeat;
  background-size: 660px auto;
  background-position: right -24px bottom 0;
}

.hero-copy {
  padding-top: 14px;
  position: relative;
  z-index: 4;
}

.hero-kicker {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 span {
  color: #6f8227;
}

.hero-desc {
  margin: 20px 0 34px;
  font-size: 19px;
  line-height: 1.9;
  font-weight: 500;
  color: #4b4b4b;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.hero-actions .btn {
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 16px;
}

.hero-actions .btn i {
  font-size: 18px;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 560px;
}

.solutions {
  background: #ffffff;
  padding: 38px 0 30px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 20px;
  row-gap: 0;
  min-height: 92px;
}

.en {
  grid-column: 1 / 2;
  grid-row: 1;
  margin: 0 0 -6px;
  color: #6f8227;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  line-height: 1;
}

.section-mainline {
  grid-column: 1 / 2;
  grid-row: 2;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.section-head h2 {
  margin: 0;
  min-width: 210px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.section-mainline .sub {
  margin: 0;
  min-height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 0 18px;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 400;
  color: #474747;
}

.section-mainline .sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 36px;
  border-left: 1px solid #cfcfcf;
  transform: translateY(-50%);
}

.section-head .btn {
  grid-column: 2 / 3;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  margin-bottom: 0;
  padding: 11px 22px;
  border-radius: 11px;
  font-size: 16px;
}

.section-head .btn i {
  font-size: 18px;
}

.card-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(268px, auto) 178px 178px;
  grid-template-areas:
    'a b c'
    'd e f'
    'd e g';
}

.service-card {
  position: relative;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 268px;
  padding: 20px 18px 56px;
  overflow: hidden;
  width: 100%;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 1;
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  pointer-events: none;
}

.service-card .num {
  display: block;
  width: 2em;
  margin: 0 0 8px;
  color: #6f8227;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums lining-nums;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  max-width: 56%;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: #353535;
  font-weight: 500;
  max-width: 52%;
}

.service-card a {
  position: relative;
  margin-top: 28px;
  color: #6f8227;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  z-index: 2;
}

.card-1 {
  grid-area: a;
  background-color: #efefee;
  background-image: url('../images/service-card-01-bg.png');
}
.card-2 {
  grid-area: b;
  background-color: #2f3f2d;
  background-image: url('../images/service-card-02-bg.png');
}
.card-3 {
  grid-area: c;
  background-color: #efefee;
  background-image: url('../images/service-card-03-bg.png');
}
.card-4 {
  grid-area: d;
  min-height: 0;
  background-color: #e59a35;
  background-image: url('../images/service-card-04-bg.png');
}
.card-5 {
  grid-area: e;
  min-height: 0;
  width: calc(100% - 60px);
  justify-self: start;
  align-self: stretch;
  background-color: #efefee;
  background-image: url('../images/service-card-05-bg.png');
}
.card-6 {
  grid-area: f;
  min-height: 0;
  width: calc(100% + 60px);
  margin-left: -60px;
  justify-self: start;
  align-self: stretch;
  background-color: #efefee;
  background-image: url('../images/service-card-06-bg.png');
}
.card-7 {
  grid-area: g;
  min-height: 0;
  width: calc(100% + 60px);
  margin-left: -60px;
  justify-self: start;
  align-self: stretch;
  background-color: #efefee;
  background-image: url('../images/service-card-07-bg.png');
}

.card-3 p,
.card-6 p,
.card-7 p {
  max-width: 50%;
}

.card-6 h3,
.card-6 p,
.card-7 h3,
.card-7 p {
  max-width: 48%;
}

.card-6 .num,
.card-7 .num {
  font-size: 26px;
  margin-bottom: 4px;
}

.card-6 h3,
.card-7 h3 {
  font-size: 18px;
  line-height: 1.28;
  margin-bottom: 5px;
}

.card-6 p,
.card-7 p {
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.card-6 a,
.card-7 a {
  margin-top: 8px;
  font-size: 14px;
}

.card-2 h3,
.card-2 p {
  max-width: 50%;
}

.card-4 h3,
.card-4 p,
.card-5 h3,
.card-5 p {
  max-width: 66%;
}

.featured {
  color: #fff;
}

.featured .num,
.featured a {
  color: #fff;
}

.featured p {
  color: #e6ebd0;
}

.featured-orange {
  color: #fff;
}

.featured-orange .num,
.featured-orange a {
  color: #fff;
}

.featured-orange p {
  color: #f7ecd8;
  max-width: 70%;
}

.card-1::after {
  width: 154px;
  height: 178px;
  right: 8px;
  background-image: url('../images/sol-01.png');
}

.card-2::after {
  width: 194px;
  height: 178px;
  right: 0;
  background-image: url('../images/sol-02.png');
}

.card-3::after {
  width: 156px;
  height: 172px;
  right: 6px;
  background-image: url('../images/sol-03.png');
}

.card-4::after {
  width: 270px;
  height: 186px;
  right: 16px;
  bottom: 14px;
  background-image: url('../images/sol-04.png');
}

.card-5::after {
  width: 176px;
  height: 292px;
  right: 18px;
  background-image: url('../images/sol-05.png');
}

.card-6::after,
.card-7::after {
  width: 168px;
  height: 106px;
  right: 6px;
  bottom: 10px;
}

.card-6::after {
  background-image: url('../images/sol-06.png');
}

.card-7::after {
  background-image: url('../images/sol-07.png');
}

.strengths {
  margin-top: 22px;
  background: #f5f5f5;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strength-item {
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 24px;
  align-items: center;
  position: relative;
}

.strength-item + .strength-item {
  border-left: none;
}

.strength-item + .strength-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 52px;
  background: #d7d7d7;
}

.strength-item i {
  font-size: 30px;
  color: #6f8227;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  justify-self: center;
}

.strength-item:nth-child(2) i,
.strength-item:nth-child(4) i {
  color: #eca135;
}

.strength-item h4 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.strength-item p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.news {
  background: #ffffff;
  padding: 36px 0 38px;
}

.news-grid {
  display: grid;
  grid-template-columns: 180px 360px 1fr;
  gap: 22px;
}

.news-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 4px;
}

.news-side .en {
  margin: 0;
  color: #6f8227;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  line-height: 1;
}

.news-side h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

.news-side .btn {
  padding: 11px 22px;
  border-radius: 11px;
  font-size: 16px;
}

.news-side .btn i {
  font-size: 18px;
}

.news-main-media {
  position: relative;
}

.news-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.date {
  display: inline-block;
  margin: 10px 0 6px;
  padding: 4px 10px;
  border-radius: 2px;
  background: #6f8227;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.news-main .date {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  font-size: 12px;
  color: #ffffff;
  z-index: 2;
}

.news-main h3 {
  margin: 2px 0 10px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-main p {
  margin: 0;
  color: #565656;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-main a {
  display: inline-flex;
  margin-top: 10px;
  color: #6f8227;
  font-size: 15px;
  font-weight: 700;
  align-items: center;
  gap: 4px;
}

.news-list article {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
}

.news-list {
  position: relative;
  padding-left: 18px;
}

.news-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #d7d7d7;
}

.news-list::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 7px;
  background:
    radial-gradient(circle, #7b8c35 0 3px, transparent 3.5px) 50% 18%/7px 7px no-repeat,
    radial-gradient(circle, #7b8c35 0 3px, transparent 3.5px) 50% 50%/7px 7px no-repeat,
    radial-gradient(circle, #7b8c35 0 3px, transparent 3.5px) 50% 82%/7px 7px no-repeat;
  pointer-events: none;
}

.news-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.news-list article > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.news-list article:not(:last-child) > div {
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}

.news-list .date {
  margin: 0 0 2px;
  font-size: 12px;
  background: #ffffff;
  color: #8a8a8a;
  padding: 3px 7px;
  border-radius: 1px;
  border: 1px solid #e3e3e3;
  font-weight: 500;
  letter-spacing: 0.1px;
  width: auto;
  max-width: max-content;
  align-self: flex-start;
}

.news-list h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list .summary {
  margin: 0;
  color: #6a6a6a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list a {
  color: #6f8227;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.clients {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.clients-wrap {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  row-gap: 10px;
  padding: 12px 0 18px;
}

.clients p {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 16px;
  color: #858585;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  background: #ffffff;
  color: #a9a9a9;
  display: grid;
  place-items: center;
}

.clients-grid {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
  padding: 10px 0 0;
}

.client-logo-item {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.client-logo-item img {
  display: block;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.client-logo-item.is-text {
  background: transparent;
}

.logo {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.logo.t7 { color: #0aa752; }
.logo.fami {
  color: #0073be;
  font-size: 20px;
}
.logo.shin { color: #e41019; }
.logo.mcd {
  color: #f4bd13;
  font-size: 36px;
}
.logo.gvo { color: #1d3c8e; }
.logo.cfh { color: #ee7416; }

.site-footer {
  color: #fff;
  background: #0f1713;
}

.footer-top {
  padding: 42px 0 30px;
  display: grid;
  grid-template-columns: 2.1fr 1fr 1.25fr 1.65fr;
  gap: 20px;
  align-items: start;
}

.foot-brand img {
  width: 205px;
}

.foot-brand p {
  margin: 14px 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .86);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .45);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
}

.footer-top > :not(:first-child) {
  position: relative;
  border-left: none;
  padding-left: 36px;
}

.footer-top > :nth-child(2) {
  border-left: none;
}

.footer-top > :nth-child(3)::before,
.footer-top > :nth-child(4)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 150px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .18);
}

.foot-links h4,
.foot-contact h4 {
  margin: 0 0 14px;
  font-size: 20px;
}

.foot-links a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.foot-contact p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.6;
}

.foot-contact .btn {
  margin-top: 12px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 16px;
}

.foot-contact .btn i {
  font-size: 18px;
}

.footer-bottom {
  background: #0b120f;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.bottom-wrap {
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .76);
}

.bottom-wrap div {
  display: flex;
  gap: 20px;
}

.contact-breadcrumb {
  background: #f4f4f4;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.contact-breadcrumb p {
  margin: 0;
  padding: 14px 0;
  font-size: 13px;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-breadcrumb span {
  color: #a4a4a4;
}

.contact-hero {
  background: #efefef;
}

.contact-hero-wrap {
  min-height: 380px;
  display: block;
  overflow: hidden;
  background: #efefef url('../images/contact-banner-bg.png') center / cover no-repeat;
}

.contact-hero-copy {
  background: #efefef;
  width: 58%;
  min-height: 354px;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  padding: 52px 102px 42px 42px;
}

.contact-hero-copy .kicker {
  margin: 0 0 8px;
  color: #6f8227;
  font-size: 16px;
  font-weight: 700;
}

.contact-hero-copy h1 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-hero-copy h1 span {
  color: #6f8227;
}

.contact-hero-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #4e4e4e;
  font-weight: 500;
  letter-spacing: 1px;
}

.contact-info-strip {
  background: #f4f4f4;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 138px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 30px 20px;
  position: relative;
}

.contact-info-item + .contact-info-item {
  border-left: none;
}

.contact-info-item + .contact-info-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 78px;
  transform: translateY(-50%);
  background: #d9d9d9;
}

.contact-info-item i {
  font-size: 44px;
  color: #6f8227;
}

.contact-info-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #4f5e1f;
}

.contact-info-item p {
  margin: 0 0 3px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #2f2f2f;
}

.contact-info-item small {
  color: #7c7c7c;
  font-size: 16px;
  line-height: 1.45;
}

.contact-main {
  background: #f4f4f4;
  padding: 18px 0 20px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 16px;
}

.contact-form-card,
.contact-side-cards {
  background: #f6f6f6;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.contact-form-card {
  padding: 18px;
}

.contact-form-card h3 {
  margin: 0;
  font-size: 18px;
  color: #2d2d2d;
}

.contact-form-card h2 {
  margin: 8px 0 16px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form-card label {
  display: block;
  color: #3c3c3c;
  font-size: 14px;
  font-weight: 700;
}

.contact-form-card label span {
  color: #e95f4d;
}

.form-row {
  margin-bottom: 10px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  margin-top: 5px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #2f2f2f;
  background: #f9f9f9;
  font-family: inherit;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card .agree {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #646464;
  font-weight: 500;
}

.contact-form-card .agree input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.contact-form-card .agree a {
  color: #4f5e1f;
  font-weight: 700;
}

.contact-form-card .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 13px 20px;
}

.contact-side-cards {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.contact-side-cards .map {
  width: 100%;
  aspect-ratio: 486 / 177;
  border-radius: 8px;
  background: url('../images/contact-map-bg.png') center / cover no-repeat;
  overflow: hidden;
}

.contact-side-cards .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.side-card {
  background: #f3f3f3;
  border-radius: 8px;
  overflow: hidden;
  min-height: 214px;
  display: flex;
  align-items: stretch;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.side-card-copy {
  width: 66%;
  padding: 18px 18px 14px;
  background: rgba(243, 243, 243, 0.9);
}

.side-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.6;
}

.side-card p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #646464;
}

.side-card .btn {
  font-size: 15px;
  padding: 9px 14px;
  border: 1px solid #798a3a;
}

.side-card-visit {
  background-image: url('../images/contact-visit-bg.png');
}

.side-card-business {
  background-image: url('../images/contact-business-bg.png');
}

.clients-contact .clients-wrap {
  min-height: 104px;
  padding-top: 12px;
}

.contact-cta {
  background: #243723;
}

.contact-cta-wrap {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px 0 64px;
}

.contact-cta-wrap > div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta p {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-cta h3 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
}

.contact-cta span {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .container {
    width: calc(100% - 48px);
  }

  .main-nav {
    gap: 24px;
    font-size: 15px;
  }

  .nav-logo img {
    width: 184px;
  }

  .hero-grid {
    background-size: 54% auto;
    background-position: right -10px bottom 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-desc {
    font-size: 17px;
  }

  .section-head .sub {
    font-size: 22px;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: 160px 1fr 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .contact-hero-copy h1 {
    font-size: 54px;
  }

  .contact-info-item p {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 46px;
    white-space: nowrap;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width: 1024px) {
  .nav-wrap {
    height: 86px;
    grid-template-columns: auto 1fr;
    row-gap: 8px;
  }

  .main-nav {
    grid-column: 1 / 3;
    justify-self: start;
    gap: 20px;
    font-size: 14px;
  }

  .main-nav .nav-dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
  }

  .main-nav .nav-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-nav .nav-dropdown-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .main-nav .nav-dropdown-group {
    border-right: 0;
    padding-right: 0;
  }

  .main-nav .nav-dropdown-visual {
    order: -1;
  }

  .main-nav .nav-dropdown-visual img {
    height: 128px;
  }

  .site-header .btn {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 28px;
    background-size: 420px auto;
    background-position: right -80px top 36px;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .section-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 10px;
  }

  .section-mainline {
    min-height: auto;
  }

  .section-mainline .sub {
    font-size: 20px;
  }

  .section-head .btn {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-template-areas:
      "a b"
      "c c"
      "d e"
      "d f"
      "d g";
  }

  .card-5,
  .card-6,
  .card-7 {
    width: 100%;
    margin-left: 0;
    justify-self: stretch;
  }

  .strengths {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-item + .strength-item {
    border-left: none;
  }

  .strength-item:nth-child(odd)::before {
    display: none;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-side .btn {
    margin-top: 6px;
  }

  .news-list {
    padding-left: 14px;
  }

  .clients-wrap {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 10px 0 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
    gap: 10px;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }

  .footer-top > :not(:first-child) {
    padding-left: 0;
  }

  .footer-top > :nth-child(3)::before,
  .footer-top > :nth-child(4)::before {
    display: none;
  }

  .contact-hero-wrap {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    clip-path: none;
    padding: 28px 24px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-item:nth-child(3) {
    border-left: none;
  }

  .contact-cta-wrap {
    min-height: 120px;
  }

  .contact-cta h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav-wrap {
    height: auto;
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .main-nav {
    grid-column: 1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 6px 0 2px;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    width: 100%;
  }

  .main-nav > a {
    padding: 10px 4px;
    border-bottom: 1px solid #eceff3;
  }

  .main-nav > a.active::after,
  .main-nav .nav-dropdown-toggle.active::after,
  .main-nav .nav-dropdown.is-open .nav-dropdown-toggle::after {
    bottom: -1px;
    height: 2px;
  }

  .main-nav .nav-dropdown {
    width: 100%;
  }

  .main-nav .nav-dropdown-toggle {
    padding: 10px 4px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #eceff3;
  }

  .main-nav .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 6px;
    box-shadow: 0 8px 18px rgba(32, 43, 12, 0.14);
    padding: 12px;
  }

  .main-nav .nav-dropdown-menu::before {
    display: none;
  }

  .main-nav .nav-dropdown-groups {
    grid-template-columns: 1fr;
  }

  .main-nav .nav-dropdown-visual img {
    height: 114px;
  }

  .site-header .btn {
    justify-self: start;
  }

  .hero-grid {
    padding: 26px 0 20px;
    background-size: 280px auto;
    background-position: right -90px top 24px;
  }

  .hero-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.58) 56%, rgba(255, 255, 255, 0.18) 86%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .hero-copy {
    padding: 12px 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(1px);
  }

  .hero-kicker {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 14px 0 22px;
  }

  .hero-actions .btn {
    padding: 11px 16px;
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 34px;
    min-width: 0;
  }

  .section-mainline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-mainline .sub {
    border-left: none;
    padding-left: 0;
    font-size: 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f"
      "g";
    gap: 10px;
  }

  .service-card {
    min-height: 240px;
    background-size: cover;
    background-position: center;
  }

  .service-card::after {
    width: 126px;
    height: 126px;
    right: 8px;
    bottom: 8px;
  }

  .card-4,
  .card-5,
  .card-6,
  .card-7 {
    min-height: 240px;
  }

  .card-4::after {
    width: 176px;
    height: 124px;
    right: 10px;
    bottom: 12px;
  }

  .card-5::after {
    width: 122px;
    height: 196px;
    right: 10px;
    bottom: 0;
  }

  .card-6::after,
  .card-7::after {
    width: 130px;
    height: 86px;
    right: 10px;
    bottom: 10px;
  }

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

  .news-main h3,
  .news-list h4 {
    font-size: 18px;
  }

  .news-main p,
  .news-list .summary {
    font-size: 14px;
  }

  .news-list article {
    grid-template-columns: 96px 1fr;
  }

  .clients-wrap {
    grid-template-columns: 1fr;
  }

  .clients p {
    font-size: 14px;
  }

  .logo {
    font-size: 20px;
  }

  .logo.fami {
    font-size: 16px;
  }

  .logo.mcd {
    font-size: 28px;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }

  .client-logo-item {
    padding: 10px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding: 28px 0 22px;
  }

  .foot-brand {
    grid-column: 1 / -1;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .foot-links {
    min-width: 0;
  }

  .foot-contact {
    grid-column: 1 / -1;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .footer-top > :not(:first-child) {
    padding-left: 0;
  }

  .footer-top > :nth-child(3)::before,
  .footer-top > :nth-child(4)::before {
    display: none;
  }

  .foot-brand img {
    width: 180px;
  }

  .foot-brand p,
  .foot-links a,
  .foot-contact p {
    font-size: 14px;
  }

  .foot-links a {
    margin: 5px 0;
    line-height: 1.5;
  }

  .foot-links h4,
  .foot-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .bottom-wrap {
    height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 12px;
  }

  .bottom-wrap div {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-breadcrumb p {
    font-size: 12px;
  }

  .contact-hero-copy {
    padding: 22px 16px;
  }

  .contact-hero-copy .kicker {
    font-size: 24px;
  }

  .contact-hero-copy h1 {
    font-size: 36px;
  }

  .contact-hero-copy p {
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-item + .contact-info-item {
    border-left: none;
    border-top: 1px solid #dfdfdf;
  }

  .contact-form-card h2 {
    font-size: 30px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .side-card {
    grid-template-columns: 1fr;
  }

  .side-card-copy {
    width: 100%;
  }

  .contact-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }

  .contact-cta h3 {
    font-size: 22px;
  }
}

/* news list page */
.news-page-hero {
  background: #ececec;
}

.news-page-hero-wrap {
  min-height: 184px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-page-hero h1 {
  margin: 0;
  font-size: 66px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.news-page-hero p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: #404040;
  font-weight: 500;
}

.news-page-deco {
  width: 280px;
  height: 120px;
  position: relative;
}

.news-page-deco::before,
.news-page-deco::after {
  content: '';
  position: absolute;
}

.news-page-deco::before {
  inset: 0;
  background: linear-gradient(130deg, transparent 30%, #d2d2d2 31%, transparent 32%, transparent 40%, #d8d8d8 41%, transparent 42%, transparent 50%, #dcdcdc 51%, transparent 52%, transparent 59%, #e0e0e0 60%, transparent 61%);
  opacity: .7;
}

.news-page-deco::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6f8227;
  left: 54px;
  top: 50px;
  box-shadow: 60px 0 0 #111;
}

.news-list-page {
  background: #f4f4f4;
  padding: 34px 0 42px;
}

.news-list-layout {
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: 28px;
  align-items: start;
}

.news-filter-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ededed;
  overflow: hidden;
}

.news-filter-card h2 {
  margin: 0;
  padding: 28px 24px 18px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.news-filter-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-filter-card li {
  border-top: 1px solid #ebebeb;
}

.news-filter-card li:first-child {
  border-top: none;
}

.news-filter-card li a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 0 16px;
  font-size: 17px;
  color: #2f2f2f;
  font-weight: 500;
}

.news-filter-card li a i {
  color: #555;
  font-size: 22px;
}

.news-filter-card li a span {
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  background: #ececec;
  color: #666;
  font-size: 14px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
}

.news-filter-card li.active a {
  border-left: 4px solid #6f8227;
  background: #e4e4db;
  padding-left: 12px;
}

.news-filter-card li.active a span {
  background: #6f8227;
  color: #fff;
}

.news-subscribe-card {
  margin: 18px 16px 18px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #efefef;
  padding: 18px 14px 16px;
}

.news-subscribe-card > i {
  font-size: 30px;
  color: #6f8227;
}

.news-subscribe-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.news-subscribe-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.news-subscribe-card .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 10px;
}

.news-subscribe-card .btn i {
  font-size: 18px;
}

.news-list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-list-toolbar p {
  margin: 0;
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 500;
}

.news-list-toolbar p span {
  color: #6f8227;
  font-weight: 800;
}

.news-sort {
  border: 1px solid #d9d9d9;
  background: #f4f4f4;
  min-width: 186px;
  height: 46px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #333;
}

.news-sort i {
  font-size: 16px;
}

.news-list-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-list-card {
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: #f4f4f4;
  min-height: 456px;
  display: flex;
  flex-direction: column;
}

.news-list-card .news-thumb {
  display: block;
  position: relative;
}

.news-list-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.news-list-card .photo-tag {
  position: absolute;
  left: 8px;
  top: 8px;
  display: inline-block;
  padding: 5px 9px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.news-list-card .photo-tag.tag-orange {
  background: #eca135;
}

.news-list-card .photo-tag.tag-green {
  background: #6f8227;
}

.news-list-card .photo-tag.tag-gray {
  background: #8e8e8e;
}

.news-list-card .date {
  margin: 12px 0 8px;
  padding: 0;
  background: transparent;
  color: #666;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.news-list-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
  min-height: 0;
  font-weight: 700;
}

.news-list-card .summary {
  margin: 4px 0 0;
  color: #636363;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  flex: 1;
}

.news-list-card .read-more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f8227;
  font-size: 15px;
  font-weight: 700;
}

.news-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.news-load-more {
  min-width: 220px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #d5d5d5;
  background: #f4f4f4;
  font-size: 16px;
  font-weight: 500;
  color: #2f2f2f;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* news content page */
.news-content-breadcrumb p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-content-page {
  background: #f4f4f4;
  padding: 20px 0 30px;
}

.news-content-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
}

.news-article {
  min-width: 0;
}

.news-content-tag {
  margin: 0;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 6px;
  background: #eca135;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.news-article h1 {
  margin: 16px 0 12px;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
}

.news-content-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #525252;
  font-size: 15px;
  font-weight: 500;
}

.news-content-meta i {
  margin-right: 6px;
  font-size: 16px;
  color: #656565;
}

.news-content-cover {
  margin-top: 16px;
}

.news-content-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.news-content-body {
  margin-top: 18px;
}

.news-content-body p {
  margin: 0 0 16px;
  color: #434343;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.news-content-body h2 {
  margin: 14px 0 8px;
  color: #4c6219;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
}

.news-content-body blockquote {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 10px;
  background: #e9e9e6;
  color: #4f6022;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
}

.news-content-body blockquote::before {
  content: '“';
  font-size: 66px;
  line-height: 1;
  position: absolute;
  left: 14px;
  top: -2px;
  color: #6f8227;
}

.news-content-body blockquote br {
  margin-top: 8px;
}

.news-content-body h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.3;
  color: #4c6219;
  font-weight: 700;
}

.news-content-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8d8d8;
}

.news-content-gallery img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.news-content-bottom-share {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-content-bottom-share p {
  margin: 0;
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.share-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
}

.share-icons a:nth-child(1) { background: #3b5998; }
.share-icons a:nth-child(2) { background: #12b24a; }
.share-icons a:nth-child(3) {
  background: #f1f1f1;
  color: #555;
  border: 1px solid #d4d4d4;
}

.news-back-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #b9b9b9;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #3c3c3c;
}

.news-related {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  background: #f1f1f1;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-related-card {
  border-radius: 8px;
  background: #f4f4f4;
  padding: 8px;
}

.news-related-card .thumb {
  display: block;
  margin-bottom: 8px;
}

.news-related-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.news-related-card .tag {
  margin: -4px 0 6px;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
  background: #6f8227;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.news-related-card .tag-orange { background: #eca135; }
.news-related-card .tag-gray { background: #8f8f8f; }

.news-related-card .date {
  margin: 0 0 4px;
  padding: 0;
  background: transparent;
  font-size: 13px;
  color: #555;
}

.news-related-card h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.news-content-side section {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ececec;
  padding: 20px 18px;
}

.news-content-side section + section {
  margin-top: 14px;
}

.news-content-side h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.news-side-info dl {
  margin: 14px 0 0;
}

.news-side-info dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #d9d9d9;
  padding: 14px 0;
  align-items: center;
}

.news-side-info dt,
.news-side-info dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #383838;
  font-weight: 500;
}

.news-side-info dd span {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eca135;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.news-side-latest article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #dbdbdb;
}

.news-side-latest article:first-of-type {
  margin-top: 8px;
}

.news-side-latest img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.news-side-latest .date {
  margin: 0 0 4px;
  padding: 0;
  background: transparent;
  color: #666;
  font-size: 12px;
  line-height: 1.2;
}

.news-side-latest h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.news-side-all {
  margin-top: 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #6f8227;
  font-size: 15px;
  font-weight: 700;
}

.news-side-cta p {
  margin: 10px 0 16px;
  color: #525252;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.news-side-cta .btn {
  padding: 13px 22px;
  font-size: 16px;
  border-radius: 11px;
}

.news-side-cta .btn i {
  font-size: 18px;
}

.news-side-cta img {
  width: 100%;
  margin-top: 18px;
  display: block;
}

@media (max-width: 1200px) {
  .news-page-hero h1 {
    font-size: 56px;
  }

  .news-page-hero p {
    font-size: 30px;
  }

  .news-filter-card h2,
  .news-subscribe-card h3,
  .news-list-toolbar p {
    font-size: 18px;
  }

  .news-filter-card li a {
    font-size: 18px;
  }

  .news-filter-card li a span,
  .news-sort,
  .news-load-more,
  .news-list-card .read-more,
  .news-side-all {
    font-size: 16px;
  }

  .news-subscribe-card p,
  .news-list-card .summary,
  .news-side-cta p,
  .news-content-body p,
  .news-side-info dt,
  .news-side-info dd,
  .news-content-meta,
  .news-back-btn,
  .news-content-bottom-share p,
  .news-side-latest h4 {
    font-size: 15px;
  }

  .news-subscribe-card .btn,
  .news-list-card h3,
  .news-article h1,
  .news-content-body h2,
  .news-content-body blockquote,
  .news-content-body h3,
  .news-content-side h3,
  .news-related-card h4 {
    font-size: 20px;
  }

  .news-list-card .date,
  .news-related-card .date,
  .news-side-latest .date {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .news-list-layout,
  .news-content-layout {
    grid-template-columns: 1fr;
  }

  .news-filter-card {
    max-width: 420px;
  }

  .news-list-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-content-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .news-content-side section + section {
    margin-top: 0;
  }

  .news-side-cta {
    grid-column: 1 / -1;
  }

  .news-page-hero-wrap {
    min-height: 138px;
  }

  .news-page-hero h1 {
    font-size: 46px;
  }

  .news-page-hero p {
    font-size: 24px;
    margin-top: 8px;
  }

  .news-page-deco {
    display: none;
  }

  .news-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-page-hero-wrap {
    min-height: 112px;
  }

  .news-page-hero h1 {
    font-size: 34px;
  }

  .news-page-hero p {
    font-size: 18px;
  }

  .news-list-page {
    padding: 20px 0 24px;
  }

  .news-list-layout {
    gap: 14px;
  }

  .news-filter-card {
    max-width: none;
  }

  .news-list-cards {
    grid-template-columns: 1fr;
  }

  .news-list-card {
    min-height: 0;
  }

  .news-sort {
    min-width: 142px;
    height: 40px;
  }

  .news-content-page {
    padding: 12px 0 20px;
  }

  .news-article h1 {
    font-size: 32px;
    margin: 12px 0 10px;
  }

  .news-content-meta {
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .news-content-meta i {
    font-size: 14px;
  }

  .news-content-cover {
    margin-top: 10px;
  }

  .news-content-body p {
    font-size: 14px;
    line-height: 1.8;
  }

  .news-content-body h2 {
    font-size: 24px;
    margin-top: 10px;
  }

  .news-content-body blockquote {
    font-size: 20px;
    padding: 14px 14px 14px 24px;
  }

  .news-content-body blockquote::before {
    font-size: 38px;
    left: 8px;
    top: 0;
  }

  .news-content-body h3 {
    font-size: 20px;
  }

  .news-content-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-content-bottom-share p {
    font-size: 14px;
  }

  .news-back-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .news-related-card h4 {
    font-size: 16px;
  }

  .news-content-side {
    grid-template-columns: 1fr;
  }

  .news-side-info dt,
  .news-side-info dd,
  .news-side-latest h4,
  .news-side-cta p,
  .news-side-all {
    font-size: 14px;
  }

  .news-side-info dd span,
  .news-related-card .tag,
  .news-content-tag {
    font-size: 12px;
  }

  .news-side-latest .date,
  .news-related-card .date {
    font-size: 12px;
  }
}

/* product vending page */
.pv-hero {
  background: #efefef;
}

.pv-hero-wrap {
  min-height: 460px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 0;
}

.pv-hero-copy {
  padding: 24px 0 24px;
}

.pv-kicker {
  margin: 0;
  color: #5f7523;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pv-kicker span {
  width: 34px;
  border-top: 2px solid #6f8227;
}

.pv-hero-copy h1 {
  margin: 18px 0 0;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
}

.pv-hero-copy h2 {
  margin: 14px 0 0;
  font-size: 40px;
  line-height: 1.15;
  color: #4f6220;
  font-weight: 700;
}

.pv-desc {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.7;
  color: #3f3f3f;
  font-weight: 500;
}

.pv-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.pv-hero-actions .btn {
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 10px;
}

.pv-hero-actions .btn i {
  font-size: 18px;
}

.pv-hero-visual {
  height: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.pv-hero-machine {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 94%;
  max-width: 680px;
  z-index: 2;
}

.pv-hero-base {
  position: absolute;
  right: -74px;
  bottom: -82px;
  width: 620px;
  height: 184px;
  border-radius: 50%;
  background: #6b7d2f;
  z-index: 1;
}

.pv-main {
  background: #f4f4f4;
  padding: 18px 0 28px;
}

.pv-feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    'a b c'
    'd e e';
}

.pv-card {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #f4f4f4;
}

.pv-card:nth-child(1) { grid-area: a; }
.pv-card:nth-child(2) { grid-area: b; }
.pv-card:nth-child(3) { grid-area: c; }
.pv-card:nth-child(4) { grid-area: d; }
.pv-card:nth-child(5) { grid-area: e; }

.pv-card-simple {
  min-height: 410px;
  padding: 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pv-card .num {
  margin: 0;
  color: #5f7523;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

.pv-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ececea;
  display: grid;
  place-items: center;
  margin: 26px auto 16px;
  align-self: center;
}

.pv-icon i {
  font-size: 50px;
  color: #5f7523;
}

.pv-card-simple h3 {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
}

.pv-card-simple > p {
  margin: 14px 0 0;
  width: 100%;
  text-align: center;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.pv-card-simple > a {
  margin-top: auto;
  color: #5f7523;
  font-size: 24px;
}

.pv-scene-card {
  min-height: 410px;
  position: relative;
  overflow: hidden;
}

.pv-scene-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pv-scene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .28) 44%, rgba(0, 0, 0, .10) 100%);
}

.pv-scene-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 18px;
  color: #fff;
  max-width: 52%;
}

.pv-scene-copy .num {
  color: #fff;
}

.pv-scene-copy h3 {
  margin: 10px 0 0;
  font-size: 38px;
  line-height: 1.2;
}

.pv-scene-copy > p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .95);
}

.pv-scene-link {
  margin-top: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 28px;
}

.pv-scene-thumbs {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pv-scene-thumbs article {
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.pv-scene-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.pv-scene-thumbs p {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .64) 100%);
}

.pv-cta {
  margin-top: 18px;
  min-height: 120px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #ecece7;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 20px;
}

.pv-cta-deco {
  color: #9dac82;
  font-size: 74px;
  line-height: 1;
}

.pv-cta-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.pv-cta-copy p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: #414141;
  font-weight: 500;
}

.pv-cta-actions {
  display: flex;
  gap: 10px;
}

.pv-cta-actions .btn {
  min-width: 222px;
  justify-content: center;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 10px;
}

.pv-cta-actions .btn i {
  font-size: 18px;
}

@media (max-width: 1200px) {
  .pv-kicker {
    font-size: 18px;
  }

  .pv-hero-copy h1 {
    font-size: 58px;
  }

  .pv-hero-copy h2 {
    font-size: 48px;
  }

  .pv-desc {
    font-size: 16px;
  }

  .pv-hero-actions .btn,
  .pv-cta-actions .btn {
    font-size: 16px;
  }

  .pv-card .num {
    font-size: 32px;
  }

  .pv-icon {
    width: 110px;
    height: 110px;
  }

  .pv-icon i {
    font-size: 52px;
  }

  .pv-card-simple h3,
  .pv-scene-copy h3,
  .pv-cta-copy h2 {
    font-size: 24px;
  }

  .pv-card-simple > p,
  .pv-scene-copy > p,
  .pv-cta-copy p,
  .pv-scene-thumbs p {
    font-size: 16px;
  }

  .pv-card-simple > a {
    font-size: 34px;
  }
}

@media (max-width: 1024px) {
  .pv-hero-wrap {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px 0 0;
  }

  .pv-hero-visual {
    min-height: 360px;
  }

  .pv-hero-machine {
    right: 50%;
    transform: translateX(50%);
    max-width: 620px;
  }

  .pv-hero-base {
    right: 50%;
    transform: translateX(50%);
    width: 560px;
    height: 170px;
    bottom: -56px;
  }

  .pv-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'a b'
      'c d'
      'e e';
  }

  .pv-card-simple {
    min-height: 350px;
  }

  .pv-scene-card {
    min-height: 390px;
  }

  .pv-cta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pv-cta-actions {
    width: 100%;
  }

  .pv-cta-actions .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .pv-kicker {
    font-size: 18px;
  }

  .pv-kicker span {
    width: 34px;
  }

  .pv-hero-copy h1 {
    font-size: 42px;
    margin-top: 10px;
  }

  .pv-hero-copy h2 {
    font-size: 34px;
    margin-top: 8px;
  }

  .pv-desc {
    font-size: 16px;
    margin-top: 14px;
    line-height: 1.8;
  }

  .pv-hero-actions {
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .pv-hero-actions .btn {
    font-size: 15px;
    padding: 12px 16px;
  }

  .pv-hero-actions .btn i {
    font-size: 16px;
  }

  .pv-hero-visual {
    min-height: 290px;
  }

  .pv-hero-machine {
    max-width: 470px;
  }

  .pv-hero-base {
    width: 410px;
    height: 126px;
  }

  .pv-main {
    padding-top: 14px;
  }

  .pv-feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'a'
      'b'
      'c'
      'd'
      'e';
    gap: 12px;
  }

  .pv-card-simple {
    min-height: 280px;
    padding: 16px;
  }

  .pv-card .num {
    font-size: 28px;
  }

  .pv-icon {
    width: 88px;
    height: 88px;
    margin: 12px auto;
  }

  .pv-icon i {
    font-size: 42px;
  }

  .pv-card-simple h3,
  .pv-scene-copy h3,
  .pv-cta-copy h2 {
    font-size: 28px;
  }

  .pv-card-simple > p,
  .pv-scene-copy > p,
  .pv-cta-copy p,
  .pv-scene-thumbs p {
    font-size: 14px;
  }

  .pv-card-simple > a {
    font-size: 26px;
  }

  .pv-scene-card {
    min-height: 330px;
  }

  .pv-scene-copy {
    left: 14px;
    top: 12px;
  }

  .pv-scene-link {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .pv-scene-thumbs {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .pv-scene-thumbs img {
    height: 64px;
  }

  .pv-cta {
    padding: 14px;
  }

  .pv-cta-deco {
    display: none;
  }

  .pv-cta-actions {
    flex-direction: column;
  }

  .pv-cta-actions .btn {
    font-size: 15px;
    padding: 12px 16px;
  }
}
