* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  color: #333;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.topline {
  background: #efefef;
  border-bottom: 1px solid #e0e0e0;
  color: #727272;
  font-size: 13px;
}

.topline-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topline-links a:hover {
  color: #f08200;
}

.header {
  background: #fff;
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 1px;
  color: #a0822f;
}

.brand p {
  margin: 6px 0 0;
  font-size: 20px;
  color: #353535;
  font-weight: 700;
}

.contact {
  text-align: right;
  color: #4d4d4d;
}

.contact p {
  margin: 0;
  font-size: 16px;
}

.contact strong {
  font-size: 42px;
  line-height: 1.2;
  color: #d96e00;
}

.main-nav {
  background: #0b4fae;
  border-bottom: 3px solid #083f95;
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 2px;
}

.main-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero {
  background: linear-gradient(180deg, #1396ed 0, #0879d8 100%);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0d87e3;
}

.hero-slide {
  display: none;
  animation: heroFade 0.5s ease;
}

.hero-slide.active {
  display: block;
}

.hero-image {
  display: block;
  width: min(1200px, 94vw);
  margin: 0 auto;
  height: min(540px, 46vw);
  object-fit: cover;
}

.hero-slide-alt .hero-image {
  filter: saturate(1.15) hue-rotate(10deg) brightness(1.03);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-arrow-prev {
  left: max(calc((100% - min(1200px, 94vw)) / 2 + 14px), 10px);
}

.hero-arrow-next {
  right: max(calc((100% - min(1200px, 94vw)) / 2 + 14px), 10px);
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8d6f2;
  cursor: pointer;
}

.dot.active {
  background: #ff8a00;
}

@keyframes heroFade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.hot-search {
  border-bottom: 1px solid #e1e1e1;
  background: #fff;
}

.hot-search-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.keywords {
  color: #6a6a6a;
  font-size: 14px;
}

.keywords a {
  margin-left: 8px;
}

.keywords a:hover {
  color: #0a4ca8;
}

.search-form {
  display: flex;
  width: 340px;
}

.search-form input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-right: 0;
  outline: 0;
  padding: 8px 10px;
}

.search-form button {
  border: 0;
  background: #f08500;
  color: #fff;
  width: 64px;
  cursor: pointer;
}

.section {
  padding: 40px 0;
}

.business.section {
  background: #efefef;
  padding: 26px 0 34px;
}

.home-env {
  background: linear-gradient(rgba(7, 24, 58, 0.76), rgba(7, 24, 58, 0.76)), url("../img/lunbo/3.jpg") center / cover no-repeat;
}

.home-env-overlay {
  padding: 28px 0 26px;
}

.home-env-inner {
  width: min(760px, 92vw);
}

.home-env-title {
  margin: 0;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 700;
}

.home-env-title span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}

.home-env-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.home-env-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-env-card img {
  display: block;
  width: 100%;
  aspect-ratio: 11 / 7;
  object-fit: cover;
}

.home-env-pager {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-env-btn {
  width: 64px;
  height: 22px;
  border: 0;
  cursor: pointer;
  background: #0a45b5;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.home-env-btn:hover {
  background: #0d53d9;
}

.home-news-showcase {
  background: #efefef;
  padding-top: 24px;
}

.home-news-wrap {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.home-news-media {
  background: #fff;
  border: 1px solid #ddd;
}

.home-news-heading {
  margin: 0;
  background: #0d5ea3;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  padding: 16px 20px;
}

.home-news-image-link {
  display: block;
}

.home-news-image-link img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.home-news-more {
  display: block;
  text-align: right;
  padding: 10px 14px 12px;
  color: #333;
  font-size: 14px;
}

.home-news-more:hover {
  color: #0a4ca8;
}

.home-news-content {
  background: #fff;
  border: 1px solid #ddd;
}

.home-news-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
}

.home-news-row:last-child {
  border-bottom: 0;
}

.home-news-row time {
  color: #666;
  text-align: center;
  line-height: 1.1;
}

.home-news-row time span {
  display: block;
  font-size: 30px;
}

.home-news-row time em {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-style: normal;
}

.home-news-text h3 {
  margin: 2px 0 8px;
  font-size: 16px;
  font-weight: 400;
}

.home-news-text h3 a:hover {
  color: #0a4ca8;
}

.home-news-text p {
  margin: 0;
  color: #6e6e6e;
  font-size: 13px;
  line-height: 1.6;
}

.product-title {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1.15;
  color: #222;
}

.product-divider {
  width: 48px;
  height: 4px;
  border-radius: 99px;
  background: #1b1b1b;
  margin: 12px auto 22px;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 0 auto 16px;
  width: min(940px, 90vw);
}

.product-tabs a {
  display: block;
  background: #0f66af;
  border: 1px solid #2c79b9;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 34px;
  height: 34px;
}

.product-tabs a:hover,
.product-tabs a.active {
  background: #0d5ea3;
}

.product-grid {
  width: min(980px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 16px;
}

.product-card {
  background: #f5f5f5;
  border: 1px solid #ececec;
  padding: 0;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card h4 {
  margin: 0;
  padding: 10px 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  background: #f5f5f5;
}

.product-page {
  background: #efefef;
}

.product-listing {
  padding-top: 18px;
}

.product-list-inner {
  width: min(1080px, 94vw);
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.breadcrumb a:hover {
  color: #0a4ca8;
}

.product-filter-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  padding: 10px 14px;
  margin-bottom: 18px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.product-filter-tabs a {
  text-align: center;
  font-size: 13px;
  line-height: 26px;
  color: #333;
  border: 1px solid transparent;
}

.product-filter-tabs a:hover,
.product-filter-tabs a.active {
  color: #0a4ca8;
  border-color: #d8d8d8;
  background: #fff;
}

.product-list-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-list-grid .product-card {
  width: calc((100% - 48px) / 4);
  min-width: 220px;
}

.product-pagination {
  margin-top: 20px;
  text-align: center;
}

.product-pagination a {
  display: inline-block;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  color: #666;
  margin: 0 3px;
}

.product-pagination a.active {
  background: #666;
  color: #fff;
}

.alt {
  background: #f7f8fa;
}

.block-title {
  margin: 0 0 24px;
  text-align: center;
  color: #1a3e7a;
  font-size: 42px;
  line-height: 1.15;
}

.block-title span {
  display: block;
  color: #777;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 2px;
}

.about-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 22px;
  line-height: 1.9;
  color: #505050;
  font-size: 16px;
}

.company-profile {
  display: grid;
  gap: 14px;
}

.company-profile-intro {
  margin: 0;
  color: #4e4e4e;
  line-height: 1.9;
}

.company-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.company-product-card {
  background: #f8f8f8;
  border: 1px solid #e7e7e7;
  padding: 12px 12px 10px;
}

.company-product-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
  color: #1f3f74;
}

.company-product-card p {
  margin: 0 0 6px;
  line-height: 1.8;
  color: #525252;
}

.company-address {
  margin: 0;
  padding: 8px 12px;
  border-left: 4px solid #f08500;
  background: #fff8ef;
  color: #3f3f3f;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.news-item:hover span {
  color: #0a4ca8;
}

.news-item time {
  color: #8a8a8a;
}

.footer {
  margin-top: 40px;
  background: #2a2a2a;
  color: #e7e7e7;
  /* 版权条 position:fixed 不占文档流高度，预留与底部固定条等高的内边距 */
  padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 28px 0;
}

.footer h4 {
  margin: 0 0 10px;
  color: #fff;
}

.footer p {
  margin: 6px 0;
}

.copyright {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  color: #e7e7e7;
  background: #2a2a2a;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 1100px) {
  .contact strong {
    font-size: 34px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-list-grid .product-card {
    width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 900px) {
  .brand h1 {
    font-size: 28px;
  }
  .brand p {
    font-size: 17px;
  }
  .contact strong {
    font-size: 30px;
  }
  .header-inner {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .contact {
    text-align: left;
  }
  .nav-inner {
    flex-wrap: wrap;
  }
  .product-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-filter-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-list-grid .product-card {
    width: calc((100% - 16px) / 2);
  }
  .company-product-grid {
    grid-template-columns: 1fr;
  }
  .home-env-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-news-wrap {
    grid-template-columns: 1fr;
  }
  .home-news-media {
    max-width: 360px;
  }
  .home-news-row {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 10px 12px;
  }
  .home-news-row time span {
    font-size: 24px;
  }
  .footer .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, 96vw);
  }
  .brand h1 {
    font-size: 24px;
    line-height: 1.25;
  }
  .brand p {
    font-size: 15px;
    line-height: 1.5;
  }
  .contact p {
    font-size: 14px;
  }
  .contact strong {
    font-size: 25px;
  }
  .nav-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .main-nav a {
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .topline-inner,
  .hot-search-inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 8px 0;
    gap: 8px;
  }
  .search-form {
    width: 100%;
  }
  .product-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-filter-tabs {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }
  .product-list-grid .product-card {
    width: 100%;
    min-width: 0;
  }
  .home-env-title {
    font-size: 20px;
  }
  .home-env-title span {
    font-size: 16px;
  }
  .home-env-grid {
    grid-template-columns: 1fr;
  }
  .home-news-heading {
    font-size: 24px;
  }
  .home-news-text h3 {
    font-size: 15px;
  }
  .home-news-text p {
    font-size: 12px;
  }
  .about-box {
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.75;
  }
  .about-panel {
    padding: 14px 12px;
    line-height: 1.8;
  }
  .company-product-card h3 {
    font-size: 16px;
  }
  .company-product-card p {
    font-size: 13px;
    line-height: 1.65;
  }
  .block-title {
    font-size: 30px;
  }
  .block-title span {
    font-size: 24px;
  }
}

.factory-page {
  background: #efefef;
}

.about-page {
  background: #e9e9e9;
}

.about-layout {
  padding: 10px 0 32px;
}

.about-layout-inner {
  width: min(1120px, 94vw);
}

.about-location {
  margin: 0 0 10px;
  font-size: 12px;
  color: #666;
}

.about-location a:hover {
  color: #0a4ca8;
}

.about-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #ebebeb;
  border: 1px solid #dfdfdf;
  padding: 8px 10px;
}

.about-tabs a {
  display: inline-block;
  min-width: 68px;
  padding: 4px 12px;
  color: #5f5f5f;
  font-size: 12px;
  text-align: center;
}

.about-tabs a.active {
  background: #48515c;
  color: #fff;
}

.about-panel {
  margin-top: 16px;
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  padding: 26px 56px 20px;
  color: #333;
  line-height: 2;
  font-size: 13px;
}

.about-panel p {
  margin: 0 0 12px;
  text-indent: 2em;
}

.about-panel .company-profile-intro,
.about-panel .company-product-card p,
.about-panel .company-address {
  text-indent: 0;
}

.about-license {
  margin-top: 8px;
  text-align: center;
}

.about-license img {
  width: min(420px, 100%);
  height: auto;
}

.honor-page {
  background: #efefef;
}

.honor-listing {
  min-height: 520px;
}

.honor-grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  min-height: 230px;
  padding-top: 8px;
}

.honor-card {
  width: 300px;
}

.honor-card img {
  display: block;
  width: 100%;
  height: auto;
}

.honor-card h4 {
  margin: 8px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  color: #4d4d4d;
  font-weight: 400;
}

.honor-pagination {
  margin-top: 34px;
}

.factory-showcase {
  min-height: 420px;
  padding: 26px 0 44px;
}

.factory-showcase-inner {
  width: min(980px, 94vw);
}

.factory-breadcrumb {
  margin: 0 0 18px;
  color: #6f6f6f;
  font-size: 13px;
}

.factory-breadcrumb a:hover {
  color: #0a4ca8;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.factory-card {
  margin: 0;
}

.factory-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.factory-card h3 {
  margin: 10px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
  color: #333;
  font-weight: 400;
}

.factory-pagination {
  margin-top: 34px;
  text-align: center;
}

.factory-pagination a {
  display: inline-block;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  color: #666;
  margin: 0 3px;
}

.factory-pagination a.active {
  background: #666;
  color: #fff;
}

.news-center-page {
  background: #efefef;
}

.news-center-layout {
  padding: 16px 0 34px;
}

.news-center-inner {
  width: min(1120px, 94vw);
}

.news-center-location {
  margin: 0 0 14px;
  font-size: 12px;
  color: #666;
}

.news-center-location a:hover {
  color: #0a4ca8;
}

.news-center-list {
  display: grid;
  gap: 14px;
}

.news-card {
  display: grid;
  grid-template-columns: 220px 1fr 140px;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
}

.news-card-image {
  display: block;
}

.news-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
}

.news-card-body h3 a:hover {
  color: #0a4ca8;
}

.news-card-body p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  text-align: right;
  color: #939393;
}

.news-card-meta time {
  display: block;
  line-height: 1;
}

.news-card-meta time span {
  display: block;
  font-size: 42px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.news-card-meta time em {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-style: normal;
  white-space: nowrap;
}

.news-card-meta p {
  margin: 10px 0 0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .factory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .factory-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .factory-grid {
    grid-template-columns: 1fr;
  }
  .news-center-layout {
    padding-top: 10px;
  }
  .news-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .news-card-body h3 {
    font-size: 16px;
  }
  .news-card-body p {
    margin-top: 6px;
    font-size: 13px;
    -webkit-line-clamp: 4;
  }
  .news-card-meta {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .about-panel {
    padding: 18px 22px;
  }
  .honor-card h4 {
    font-size: 14px;
  }
  .news-card {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
  .news-card-meta {
    grid-column: 2 / 3;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 10px;
    margin-top: 8px;
  }
  .news-card-meta time {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .news-card-meta time span {
    font-size: 24px;
  }
  .news-card-meta time em {
    margin-top: 0;
    font-size: 14px;
  }
  .news-card-meta p {
    margin: 0;
    font-size: 12px;
  }
  .news-card-body h3 {
    font-size: 16px;
  }
  .news-card-body p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .news-card-meta {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 0;
  }
}

.contact-page {
  background: #efefef;
}

.contact-layout {
  padding: 10px 0 34px;
}

.contact-inner {
  width: min(1120px, 94vw);
}

.contact-location {
  margin: 0 0 10px;
  font-size: 12px;
  color: #666;
}

.contact-location a:hover {
  color: #0a4ca8;
}

.contact-card {
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}

.contact-item {
  padding: 34px 20px 26px;
  text-align: center;
}

.contact-item + .contact-item {
  border-left: 1px solid #e2e2e2;
}

.contact-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  border: 1px solid #f2b299;
  border-radius: 50%;
  color: #e99370;
  line-height: 28px;
  font-size: 18px;
}

.contact-item h3 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 400;
  color: #222;
  line-height: 1;
}

.contact-item p {
  margin: 4px 0;
  font-size: 16px;
  color: #555;
}

.contact-map-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.contact-map-fallback {
  margin: 8px 4px 2px;
  font-size: 13px;
  color: #666;
}

.contact-map-fallback a {
  color: #0a4ca8;
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-item + .contact-item {
    border-left: 0;
    border-top: 1px solid #e2e2e2;
  }
  .contact-item h3 {
    font-size: 24px;
  }
  .contact-item p {
    font-size: 14px;
  }
  .contact-map-card iframe {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .contact-item {
    padding: 24px 12px 18px;
  }
  .contact-item h3 {
    font-size: 20px;
  }
  .contact-map-card iframe {
    height: 300px;
  }
}
