.en-industry-entry {
  width: 80%;
  max-width: 1280px;
  margin: 80px auto 0;
}

.en-industry-entry__shell {
  display: grid;
  /* 第二列不要用 minmax(380px,…)：窄屏时会把左侧挤成几像素宽，标题逐字断行 */
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.en-industry-entry__content {
  min-width: 0;
}

.en-industry-entry__headline {
  position: relative;
  max-width: 560px;
}

.en-industry-entry__headline h2 {
  max-width: 540px;
}

.en-industry-entry__description {
  max-width: 560px;
  margin-top: 16px;
  color: #6a6a73;
}

.en-industry-entry__actions {
  display: grid;
  gap: 12px;
}

.en-industry-entry__card {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.en-industry-entry__card:hover {
  border-color: #d0d5dd;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.en-industry-entry__card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.en-industry-entry__card span {
  color: #303033;
}
@media (max-width: 1279px) {
  .en-industry-entry {
    width: calc(100% - 64px);
  }
}

/* 与 iPad 竖屏一致：≤1023px 改为上下结构，避免双列 + 最小列宽把正文压扁 */
@media (max-width: 1023px) {
  .en-industry-entry {
    width: calc(100% - 48px);
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .en-industry-entry__shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .en-industry-entry__actions {
    max-width: 100%;
  }
}

@media (max-width: 799px) {
  .en-industry-entry {
    width: calc(100% - 32px);
    margin-top: 48px;
    padding: 0;
  }

  .en-industry-entry__headline {
    max-width: 100%;
  }

  .en-industry-entry__headline h2,
  .en-industry-entry__description {
    max-width: 100%;
  }

  .en-industry-entry__card {
    min-height: 72px;
    padding: 0 16px;
    border-radius: 14px;
  }
}
