/* Home page sections */

/* ===== Hero ===== */
.home-hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgba(47,107,255,.10) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(124,58,237,.08) 0%, transparent 45%),
    linear-gradient(rgba(47,107,255,.045) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(47,107,255,.045) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(135deg, #EAF1FF 0%, #F5F8FF 60%, #FFFFFF 100%);
  border-radius: var(--radius-lg);
  padding: 30px 40px 34px;
  overflow: hidden;
  margin-bottom: 18px;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47,107,255,.18) 0%, rgba(47,107,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: hero-glow 8s ease-in-out infinite;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(47,107,255,.10) 50%, transparent 100%);
  background-size: 60% 100%;
  background-repeat: no-repeat;
  animation: hero-scan 9s linear infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

@keyframes hero-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .75; }
}

@keyframes hero-scan {
  0% { background-position: -60% 0; }
  100% { background-position: 160% 0; }
}

.home-hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.home-hero__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 1px;
}

.home-hero__subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 8px;
  margin-bottom: 18px;
}

.home-hero__decor {
  position: absolute;
  right: 28px;
  bottom: -20px;
  width: 260px;
  height: 174px;
  pointer-events: none;
  z-index: 1;
}

.home-hero .hot-keywords {
  justify-content: center;
  margin-top: 12px;
}

/* ===== AI section ===== */
.home-ai {
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
  border: 1px solid #EAF0FF;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-ai__title {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-ai__desc {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin: 12px 0 16px;
}

.home-ai__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.home-ai__feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.home-ai__feature::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.home-ai__samples {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.ai-sample {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
}

.ai-sample:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ai-sample svg {
  width: 60%;
  height: 60%;
}

.home-ai__ball {
  position: absolute;
  right: -50px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: .9;
}

/* ===== Logo Call ===== */
/* -- 状态 tabs -- */
.call-status-tabs {
  display: flex;
  gap: 4px;
  margin-left: 16px;
}
.call-status-tab {
  padding: 4px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  transition: all .2s;
}
.call-status-tab.is-active,
.call-status-tab:hover {
  background: var(--color-primary);
  color: #fff;
}

/* -- 行业 pills -- */
.call-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -4px 0 16px;
}
.call-cat {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 100px;
  background: var(--color-bg-soft);
  color: var(--color-text-secondary);
  transition: all .2s;
}
.call-cat.is-active,
.call-cat:hover {
  background: var(--color-primary-bg);
  color: var(--color-primary);
  font-weight: 600;
}
.call-cat--publish {
  color: var(--color-primary);
  font-weight: 600;
  background: transparent;
}

/* -- 卡片网格（带封面） -- */
.call-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.call-card {
  display: block;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: all .25s;
  text-decoration: none;
  color: inherit;
}
.call-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.call-card__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.call-card__cover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.call-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
}

.call-card__body {
  padding: 12px 14px 14px;
}
.call-card--text .call-card__body {
  min-height: 178px;
  padding: 16px;
}
.call-card--text .call-card__title {
  -webkit-line-clamp: 3;
}

.call-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.call-card__price .currency {
  font-size: 14px;
  margin-right: 2px;
}

.call-card__title {
  font-size: 13.5px;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.call-card:hover .call-card__title {
  color: var(--color-primary);
}

.call-card__meta {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.call-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 1280px) {
  .call-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .call-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .call-cards { grid-template-columns: 1fr; }
  .call-status-tabs { margin-left: 0; margin-top: 8px; }
}

.call-table {
  width: 100%;
  font-size: 13px;
}

.call-table th {
  text-align: left;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 10px 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.call-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text);
}

.call-table tr:last-child td {
  border-bottom: 0;
}

.call-table .price {
  color: var(--color-primary);
  font-weight: 700;
}

.call-table tr:hover td {
  background: var(--color-bg-soft);
}

.home-call__footer {
  text-align: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
}

.home-call__footer a {
  color: var(--color-primary);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== Logo Gallery ===== */
.home-gallery .section__head {
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* -- 筛选栏（色调 + 字母） -- */
.gallery-filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
  padding: 12px 14px;
  background: #fbfcff;
  border: 1px solid rgba(148, 163, 184, .18) !important;
  border-radius: 14px;
  box-shadow: none;
}

.gallery-filter-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, .16);
}

.gallery-filter-row:last-child {
  border-bottom: 0;
}

.gallery-filter__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  flex-shrink: 0;
}

.gallery-filter__label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(47,107,255,.10);
}

/* 色调圆点 */
.color-chips {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.color-chip {
  width: auto;
  min-width: 66px;
  height: 30px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 28px;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  color: var(--color-text-secondary);
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .20);
  box-shadow: none;
  overflow: hidden;
}

.color-chip::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  transform: translateY(-50%);
  background: var(--chip-color, #CBD5E1);
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, .12);
}

.color-chip::after {
  content: attr(title);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.color-chip:hover {
  border-color: rgba(47, 107, 255, .28) !important;
  background: var(--color-primary-soft) !important;
  color: var(--color-primary) !important;
  box-shadow: none;
}

.color-chip.is-active {
  color: var(--color-primary) !important;
  background: var(--color-primary-soft) !important;
  border-color: rgba(47, 107, 255, .28) !important;
  box-shadow: none;
}

.color-chip.is-active::before {
  background: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, .08);
}

/* 字母 chips */
.alpha-chips {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.alpha-chip {
  min-width: 38px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 8px;
  transition: all var(--duration-fast) var(--ease-out);
  padding: 0 10px;
}

.alpha-chip:hover {
  background: var(--color-primary-soft);
  border-color: rgba(47, 107, 255, .16);
  color: var(--color-primary);
}

.alpha-chip.is-active {
  background: var(--color-primary-soft);
  border-color: rgba(47, 107, 255, .28);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: none;
}

@media (max-width: 760px) {
  .gallery-filters {
    padding: 4px 14px;
    border-radius: var(--radius-md);
  }

  .gallery-filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .gallery-filter__label {
    min-height: 28px;
  }

  .color-chips,
  .alpha-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .color-chips::-webkit-scrollbar,
  .alpha-chips::-webkit-scrollbar {
    display: none;
  }

  .color-chip,
  .alpha-chip {
    flex: 0 0 auto;
  }
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

/* 首页 Logo 展示：5 列× 2 行 = 10 张 */
.home-gallery .logo-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.home-gallery .logo-grid .logo-card:nth-child(n+11) {
  display: none;
}
@media (max-width: 1280px) {
  .home-gallery .logo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .home-gallery .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .home-gallery .logo-grid { grid-template-columns: repeat(2, 1fr); }
}

.logo-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  transition: all .2s;
  cursor: pointer;
  overflow: hidden;
}

.logo-card__icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}
.logo-card__icon svg {
  width: 55%;
  height: 55%;
  flex: 0 0 auto;
}
.logo-card__icon img,
.logo-card__img {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: block;
  object-fit: contain;
  box-sizing: border-box;
  background: #fff;
}

.logo-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 12px 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-card__category {
  font-size: 11px;
  color: var(--color-text-muted);
  padding: 2px 12px 0;
  text-align: left;
}

.logo-card__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 0 12px 12px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
}

.logo-card__stats span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* ===== Industry (独立区块) ===== */
.home-industry {
  background: linear-gradient(135deg, #F8FAFF 0%, #F0F4FF 100%);
  border-radius: var(--radius-lg, 12px);
  padding: 24px 28px 28px;
  border: 1px solid rgba(47, 107, 255, .06);
}
.home-industry .section__head {
  margin-bottom: 16px;
}

.home-industry .section__title {
  font-weight: 500;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.industry-card {
  background: var(--color-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .22s var(--ease-out, ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 60px;
  height: 60px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .25s ease;
}

.industry-card:hover {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.industry-card:hover::after {
  opacity: .04;
}

.industry-card__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #F3F4F6;
  color: #64748B;
  border: 1px solid #E5E7EB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.home-industry .industry-card__icon {
  background: #EEF4FF !important;
  color: #2F6BFF !important;
  border-color: #D9E5FF;
}

.home-industry .industry-card:hover .industry-card__icon {
  background: #E5EEFF !important;
  color: #1D4ED8 !important;
}

.home-industry .industry-card__icon svg,
.home-industry .industry-card__svg {
  color: inherit;
  stroke: currentColor;
}

.industry-card:hover .industry-card__icon {
  transform: scale(1.08) rotate(-3deg);
}

.industry-card__text strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.industry-card__text span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===== News ===== */

/* section head 让分类居中、more 靠右 */
.home-news .section__head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.home-news .section__title { margin-right: 4px; }
.home-news .section__more { margin-left: auto; }

/* 分类 pills */
.news-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.news-cat {
  padding: 5px 12px;
  font-size: 12.5px;
  color: var(--color-text-secondary);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all .18s;
  cursor: pointer;
}
.news-cat:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}
.news-cat.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #6E8FFF);
  box-shadow: 0 2px 8px rgba(47,107,255,.25);
}

/* ====== 新闻卡片网格 ====== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s var(--ease-out, ease);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.news-card__cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.news-card__cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-card__cover {
  transform: scale(1.06);
}

.news-card__body {
  padding: 14px 14px 16px;
}

.news-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 41px;
  transition: color .2s;
}
.news-card:hover .news-card__title { color: var(--color-primary); }

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.news-card__meta .dot { color: var(--color-border); }

.news-card__meta .news-views {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* ====== 通用分类彩标 ====== */
.news-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border-radius: var(--radius-sm);
  letter-spacing: .3px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.45);
  z-index: 2;
}
.news-tag--trend { background: linear-gradient(135deg, #2F6BFF, #7C3AED); }
.news-tag--brand { background: linear-gradient(135deg, #DB2777, #9333EA); }
.news-tag--case  { background: linear-gradient(135deg, #EA580C, #DC2626); }
.news-tag--prize { background: linear-gradient(135deg, #D97706, #B45309); }
.news-tag--tool  { background: linear-gradient(135deg, #059669, #0D9488); }


/* ===== Responsive ===== */
@media (max-width: 1500px) {
  .logo-grid { grid-template-columns: repeat(6, 1fr); }
  .industry-grid { grid-template-columns: repeat(8, 1fr); }
  .news-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1280px) {
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .home-call__body { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .home-ai { grid-template-columns: 1fr; }
  .home-ai__samples { grid-template-columns: repeat(4, 1fr); }
  .home-hero { padding: 30px 22px; }
  .home-hero__title { font-size: 26px; }
  .home-hero__decor { display: none; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .call-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .home-hero__title { font-size: 22px; }
  .home-ai__samples { grid-template-columns: repeat(2, 1fr); }
}

/* Refined latest-news layout */
.home-news {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border: 1px solid rgba(226, 232, 240, .9);
  overflow: hidden;
}
.home-news .section__head {
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border-light);
}
.home-news .news-cats {
  gap: 8px;
}
.home-news .news-cat {
  padding: 5px 11px;
  background: #F8FAFC;
  border: 1px solid transparent;
}
.home-news .news-cat:hover {
  background: #fff;
  border-color: rgba(47, 107, 255, .18);
}
.home-news .news-cat.is-active {
  color: var(--color-primary);
  background: #fff;
  border-color: rgba(47, 107, 255, .26);
  box-shadow: 0 4px 12px rgba(47, 107, 255, .08);
}
.home-news .news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-news .news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  transition: transform .22s var(--ease-out, ease), box-shadow .22s var(--ease-out, ease), border-color .22s var(--ease-out, ease);
}
.home-news .news-card:first-child {
  grid-column: auto;
  grid-row: auto;
}
.home-news .news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 107, 255, .22);
  box-shadow: 0 18px 44px rgba(47, 107, 255, .12);
}
.home-news .news-card__cover-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  background: #EFF4FF;
}
.home-news .news-card:first-child .news-card__cover-wrap {
  aspect-ratio: 16 / 10;
}
.home-news .news-card__body {
  min-width: 0;
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-news .news-card:first-child .news-card__body {
  padding: 14px 15px 16px;
}
.home-news .news-card__title {
  min-height: 0;
  font-size: 15px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}
.home-news .news-card:first-child .news-card__title {
  font-size: 15px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}
.home-news .news-card__excerpt {
  display: none;
}
.home-news .news-card__meta {
  margin-top: auto;
  padding-top: 10px;
}

@media (max-width: 1280px) {
  .home-news .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-news .news-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .home-news .news-grid {
    grid-template-columns: 1fr;
  }
  .home-news .news-card,
  .home-news .news-card:first-child {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .home-news .news-card__cover-wrap,
  .home-news .news-card:first-child .news-card__cover-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
