/* ============================================
   Inner Page Common Styles
   适用于所有内页: about, products, news, support, jobs, contact 等
   ============================================ */

/* --- Page Banner --- */
.page-banner {
  top:0;
  position: relative;
  height: 420px;
  background-image: url('/images/b7.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.page-banner-content h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.page-banner-content p {
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* --- Breadcrumb --- */
.breadcrumb-wrapper {
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb li a:hover { color: #CC0000; }
.breadcrumb li.sep {
  color: #ccc;
  margin: 0 8px;
}
.breadcrumb li.current {
  color: #CC0000;
  font-weight: 500;
}

/* ============================================
   About Page
   ============================================ */
.about-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-page-intro .about-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.about-page-intro .about-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-page-intro .about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.about-stat-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.about-stat-card:hover { transform: translateY(-4px); }
.about-stat-card .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #CC0000;
  margin-bottom: 6px;
}
.about-stat-card .stat-label {
  font-size: 14px;
  color: #888;
}

/* --- Timeline --- */
.about-timeline {
  margin-top: 50px;
}
.about-timeline .timeline-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 36px;
}
.timeline-list {
  position: relative;
  padding-left: 30px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #CC0000;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #CC0000;
}
.timeline-item .timeline-year {
  font-size: 16px;
  font-weight: 700;
  color: #CC0000;
  margin-bottom: 4px;
}
.timeline-item .timeline-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ============================================
   Honors Page
   ============================================ */
.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.honor-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
  text-align: center;
}
.honor-card:hover { transform: translateY(-6px); box-shadow: 0 8px 40px rgba(0,0,0,0.16); }
.honor-card .honor-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0;
}
.honor-card .honor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.honor-card:hover .honor-img img { transform: scale(1.05); }
.honor-card .honor-info {
  padding: 18px;
}
.honor-card .honor-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.honor-card .honor-info p {
  font-size: 13px;
  color: #999;
}

/* ============================================
   Equipment Page
   ============================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.equipment-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.equipment-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.14); }
.equipment-card .eq-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
}
.equipment-card .eq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.equipment-card:hover .eq-img img { transform: scale(1.05); }
.equipment-card .eq-info {
  padding: 20px;
}
.equipment-card .eq-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.equipment-card .eq-info p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* ============================================
   Products List Page
   ============================================ */
.products-list-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar filter */
.products-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-filter {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}
.sidebar-filter .filter-title {
  background: #CC0000;
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
}
.sidebar-filter .filter-list { list-style: none; padding: 8px 0; }

/* 大类链接 */
.sidebar-filter .filter-list > li > a,
.filter-cat-row > a {
  display: block;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  letter-spacing: 0.5px;
}
.sidebar-filter .filter-list > li > a:hover,
.filter-cat-row > a:hover {
  color: #CC0000;
  background: #fefafa;
  border-left-color: #CC0000;
}
.sidebar-filter .filter-list > li > a.active,
.filter-cat-row > a.active {
  color: #CC0000;
  background: #fef0f0;
  border-left-color: #CC0000;
  font-weight: 600;
}

/* Category accordion */
.filter-cat-item {
  position: relative;
}
.filter-cat-row {
  display: flex;
  align-items: center;
}
.filter-cat-row > a {
  flex: 1;
  min-width: 0;
}
.cat-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: #bbb;
  cursor: pointer;
  border-radius: 3px;
  border: none;
  background: transparent;
  transition: all 0.2s;
  user-select: none;
  line-height: 1;
}
.cat-toggle:hover {
  color: #CC0000;
  background: #fef5f5;
}
.cat-toggle.open {
  color: #CC0000;
}

/* 小类列表 */
.filter-sub-list {
  list-style: none;
  padding: 2px 0 6px 0;
  margin: 0;
  background: #fafafa;
}
.filter-sub-list li a {
  display: block;
  padding: 8px 20px 8px 48px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  position: relative;
}
.filter-sub-list li a::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d5d5d5;
  transition: background 0.2s;
}
.filter-sub-list li a:hover {
  color: #CC0000;
  background: #fff;
}
.filter-sub-list li a:hover::before {
  background: #CC0000;
}
.filter-sub-list li a.active {
  color: #CC0000;
  background: #fef0f0;
  border-left-color: #CC0000;
  font-weight: 600;
}
.filter-sub-list li a.active::before {
  background: #CC0000;
}

/* Products content */
.products-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.products-list-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
.products-list-header .sort {
  font-size: 13px;
  color: #999;
}
.products-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================
   News List Page
   ============================================ */
.news-list-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.news-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* News Card Grid (3 columns) */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.13);
}
.nc-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #eee;
}
.nc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.news-card:hover .nc-img img {
  transform: scale(1.06);
}
.nc-info {
  padding: 18px 20px 20px;
}
.nc-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .nc-info h4 {
  color: #CC0000;
}
.nc-sub {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nc-date {
  font-size: 12px;
  color: #bbb;
  display: block;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* News Sidebar */
.news-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-widget {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}
.sidebar-widget .widget-title {
  background: #CC0000;
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.category-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.category-list li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.category-list li a:hover {
  color: #CC0000;
  background: #fefafa;
  border-left-color: #CC0000;
}
.category-list li a.active {
  color: #CC0000;
  background: #fef0f0;
  border-left-color: #CC0000;
  font-weight: 600;
}

.news-list-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: all 0.3s;
  text-decoration: none;
}
.news-list-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.news-list-item .nl-img {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  overflow: hidden;
  background: #eee;
}
.news-list-item .nl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-list-item:hover .nl-img img { transform: scale(1.05); }
.news-list-item .nl-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-list-item .nl-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.news-list-item:hover .nl-info h4 { color: #CC0000; }
.news-list-item .nl-info .nl-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-item .nl-info .nl-date {
  font-size: 12px;
  color: #bbb;
  margin-top: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
}
.pagination a, .pagination span {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #666;
  transition: all 0.3s;
}
.pagination a:hover { background: #CC0000; color: #fff; border-color: #CC0000; }
.pagination span.active { background: #CC0000; color: #fff; border-color: #CC0000; font-weight: 600; }
.pagination .ellipsis { border: none; color: #999; }

/* ============================================
   Support Page
   ============================================ */
.support-list-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.support-list-main {
  min-width: 0;
}

/* Support Card Grid (3 columns) */
.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.13);
}
.sc-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f0f0f0;
}
.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.support-card:hover .sc-img img {
  transform: scale(1.06);
}
.sc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ccc;
}
.sc-info {
  padding: 18px 20px 20px;
}
.sc-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.support-card:hover .sc-info h4 {
  color: #CC0000;
}
.sc-sub {
  font-size: 13px;
  color: #CC0000;
  font-weight: 500;
  margin-bottom: 10px;
}
.sc-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Support Sidebar */
.support-sidebar {
  position: sticky;
  top: 80px;
}

/* Support responsive */
@media (max-width: 1024px) {
  .support-list-layout {
    grid-template-columns: 1fr;
  }
  .support-sidebar {
    position: static;
  }
  .support-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .support-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Support Page FAQ */
.faq-section-support {
  margin-top: 50px;
}
.faq-section-support .faq-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
}
.faq-section-support .faq-list {
  display: flex;
  flex-direction: column;
}
.faq-section-support .faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}
.faq-section-support .faq-item + .faq-item {
  margin-top: 10px;
}
.faq-section-support .faq-item.open {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-color: #f0d0d0;
}
.faq-section-support .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: #fafafa;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.25s;
  gap: 16px;
}
.faq-section-support .faq-question:hover {
  background: #fef5f5;
  color: #CC0000;
}
.faq-section-support .faq-item.open .faq-question {
  background: #fef5f5;
  color: #CC0000;
}
.faq-section-support .faq-q-text {
  flex: 1;
  line-height: 1.5;
}
.faq-section-support .faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-section-support .faq-arrow::before,
.faq-section-support .faq-arrow::after {
  content: '';
  position: absolute;
  background: #bbb;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.faq-section-support .faq-arrow::before {
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
}
.faq-section-support .faq-arrow::after {
  top: 3px;
  left: 10px;
  width: 2px;
  height: 16px;
}
.faq-section-support .faq-question:hover .faq-arrow::before,
.faq-section-support .faq-question:hover .faq-arrow::after {
  background: #CC0000;
}
.faq-section-support .faq-item.open .faq-arrow {
  transform: rotate(45deg);
}
.faq-section-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-section-support .faq-item.open .faq-answer {
  max-height: 3000px;
}
.faq-section-support .faq-answer-inner {
  padding: 4px 24px 20px 24px;
  font-size: 15px;
  line-height: 2;
  color: #555;
}

/* ============================================
   Jobs Page
   ============================================ */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
}
.job-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.job-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.job-card .job-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.job-card .job-info .job-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #999;
}
.job-card .job-info .job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.job-card .btn-apply {
  padding: 10px 24px;
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}
.job-card .btn-apply:hover { background: #c62828; }

/* ============================================
   Contact Page
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-info-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s;
}
.contact-info-card:hover { transform: translateY(-2px); }
.contact-info-card .cic-icon {
  font-size: 28px;
  color: #CC0000;
  margin-bottom: 8px;
}
.contact-info-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 260px;
  background: #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-form-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #CC0000;
  display: inline-block;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form .form-row.single { grid-template-columns: 1fr; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #CC0000;
}
.contact-form textarea {
  height: 140px;
  resize: vertical;
}
.contact-form .btn-submit {
  width: 100%;
  padding: 14px;
  background: #CC0000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 4px;
}
.contact-form .btn-submit:hover { background: #A00000; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .about-page-intro { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .honors-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: 1fr; }
  .products-list-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .news-list-layout { grid-template-columns: 1fr; }
  .news-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .news-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-banner { height: 130px; }
  .page-banner-content h1 { font-size: 22px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .honors-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .products-list-grid { grid-template-columns: 1fr; }
  .news-list-item { flex-direction: column; }
  .news-list-item .nl-img { width: 100%; height: 180px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
