/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

:root {
  --bg: #f7f8fa;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --text: #1f2328;
  --text-muted: #6b7280;
  --accent: #3b6cf6;
  --accent-hover: #2f5ad6;
  --border: #e5e7eb;
  --tag-bg: rgba(59, 108, 246, 0.08);
  --shadow-soft: 0 1px 2px rgba(31, 35, 40, 0.04),
    0 8px 24px rgba(31, 35, 40, 0.035);
  --shadow-hover: 0 14px 32px rgba(31, 35, 40, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 108, 246, 0.08), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(139, 92, 246, 0.055), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 顶部栏 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 250, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

/* ===== 主体布局 ===== */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 64px;
}

/* ===== 个人定位 ===== */
.intro-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}

.intro-hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(59, 108, 246, 0.1);
  filter: blur(8px);
}

.intro-copy,
.intro-visual {
  position: relative;
  z-index: 1;
}

.intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.intro-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.intro-copy h1 span {
  color: var(--accent);
  background: linear-gradient(110deg, var(--accent) 0%, #7657e8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-copy > p {
  max-width: 470px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.intro-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s,
    transform 0.2s, box-shadow 0.2s;
}

.hero-button svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-button-primary {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 6px 14px rgba(59, 108, 246, 0.2);
}

.hero-button-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(59, 108, 246, 0.26);
}

.hero-button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
}

.hero-button-secondary:hover {
  color: var(--accent);
  background: #fff;
  border-color: rgba(59, 108, 246, 0.35);
  transform: translateY(-2px);
}

.hero-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.intro-topics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(59, 108, 246, 0.1);
}

.intro-topics span {
  color: var(--text-muted);
  font-size: 11px;
}

.intro-topics span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(107, 114, 128, 0.5);
}

/* Hero 代码窗口 */
.code-window {
  overflow: hidden;
  color: #d7dce8;
  background: #171a23;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 22px 42px rgba(33, 38, 58, 0.22);
  transform: rotate(1deg);
}

.code-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #737b8f;
  background: #1e222d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b68;
}

.window-dots i:nth-child(2) {
  background: #f5bd4f;
}

.window-dots i:nth-child(3) {
  background: #61c554;
}

.code-window pre {
  overflow: hidden;
  padding: 18px 16px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10.5px;
  line-height: 1.9;
  white-space: pre-wrap;
}

.code-purple {
  color: #b99cff;
}

.code-green {
  color: #94ddb5;
}

.code-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  color: #7f8799;
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 9px;
}

.code-status span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.code-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #61c554;
  box-shadow: 0 0 0 3px rgba(97, 197, 84, 0.12);
}

.excerpt {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ===== 内容区标题 ===== */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.section-kicker {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 22px;
  line-height: 1.3;
}

.section-heading > a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.section-heading > a:hover {
  color: var(--accent);
}

/* ===== 精选项目 ===== */
.projects-widget {
  scroll-margin-top: 88px;
}

.widget-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.widget-title-row .widget-title {
  margin: 0;
  padding: 0;
  border: 0;
}

.widget-title-row > a {
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  transition: color 0.2s;
}

.widget-title-row > a:hover {
  color: var(--accent);
}

.sidebar-project-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-project-item {
  padding: 14px;
  background: rgba(59, 108, 246, 0.025);
  border: 1px solid rgba(59, 108, 246, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}

.sidebar-project-item:hover {
  background: rgba(59, 108, 246, 0.055);
  border-color: rgba(59, 108, 246, 0.28);
  transform: translateY(-1px);
}

.sidebar-project-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sidebar-project-heading > div {
  min-width: 0;
}

.project-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #6d4aff;
  background: rgba(109, 74, 255, 0.1);
}

.project-icon-blue {
  color: var(--accent);
  background: var(--tag-bg);
}

.project-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-project-heading h4 {
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.4;
}

.sidebar-project-heading h4 a:hover {
  color: var(--accent);
}

.sidebar-project-item p {
  margin: 10px 0 8px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
}

.project-tech,
.sidebar-project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
}

.project-tech {
  color: var(--text-muted);
}

.sidebar-project-link {
  color: var(--accent);
  font-weight: 600;
}

.language-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #858585;
}

.language-dot.rust {
  background: #dea584;
}

.language-dot.css {
  background: #563d7c;
}

.articles-heading {
  margin-top: 4px;
  scroll-margin-top: 88px;
}

.clear-filter {
  padding: 5px 0;
  color: var(--text-muted);
  background: none;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.clear-filter:hover {
  color: var(--accent);
}

.clear-filter:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== 文章列表 ===== */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-list.is-refreshed {
  animation: list-refresh 0.28s ease-out;
}

@keyframes list-refresh {
  from {
    opacity: 0.4;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.post-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.post-card h3 a:hover {
  color: var(--accent);
}

.post-source {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
}

.post-source > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.external-arrow {
  color: var(--accent);
  font-size: 14px;
  white-space: nowrap;
}

.post-empty-state {
  padding: 48px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(59, 108, 246, 0.28);
  border-radius: 12px;
}

.empty-state-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  background: var(--tag-bg);
  border-radius: 12px;
}

.empty-state-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-empty-state h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.post-empty-state p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.empty-reset {
  min-height: 38px;
  padding: 7px 14px;
  color: var(--accent);
  background: var(--tag-bg);
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.empty-reset:hover {
  color: #fff;
  background: var(--accent);
  transform: translateY(-1px);
}

.empty-reset:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* 文章元信息 */
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags span {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--tag-bg);
  color: var(--accent-hover);
}

.read-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.read-more:hover {
  text-decoration: underline;
}

/* ===== 分页 ===== */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.pagination button {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.pagination button:hover:not(:disabled):not(.current) {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.pagination button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pagination button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pagination .previous,
.pagination .next {
  padding: 0 16px;
}

/* ===== 侧边栏 ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.widget-title {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* 关于我 */
.about-widget {
  text-align: center;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
}

.about-widget h3 {
  margin-bottom: 12px;
}

.profile-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-badges span {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--accent-hover);
  background: var(--tag-bg);
  font-size: 11px;
  font-weight: 600;
}

.profile-contact-links {
  justify-content: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* 最近在做 */
.widget-title-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-indicator {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.activity-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent);
  background: var(--tag-bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.activity-list strong,
.activity-list li > div > span {
  display: block;
}

.activity-list strong {
  margin-bottom: 1px;
  font-size: 13px;
  line-height: 1.45;
}

.activity-list li > div > span {
  color: var(--text-muted);
  font-size: 11px;
}

/* 技术栈 */
.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-list span {
  padding: 5px 10px;
  border: 1px solid rgba(59, 108, 246, 0.12);
  border-radius: 7px;
  color: var(--text-muted);
  background: rgba(59, 108, 246, 0.045);
  font-size: 12px;
  transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.skill-list span:hover {
  color: var(--accent);
  background: var(--tag-bg);
  transform: translateY(-1px);
}

/* 内容索引 */
.content-index {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.content-index button {
  display: grid;
  width: 100%;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 9px;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 9px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.content-index button:hover,
.content-index button.is-active {
  color: var(--accent);
  background: var(--tag-bg);
  transform: translateX(2px);
}

.content-index button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.index-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #6d4aff;
  background: rgba(109, 74, 255, 0.1);
}

.index-icon-tools {
  color: #2b7e74;
  background: rgba(43, 126, 116, 0.1);
}

.index-icon-thinking {
  color: #d28224;
  background: rgba(210, 130, 36, 0.11);
}

.index-icon-interview {
  color: #d14f79;
  background: rgba(209, 79, 121, 0.1);
}

.index-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.index-copy strong,
.index-copy small {
  display: block;
}

.index-copy strong {
  font-size: 13px;
  line-height: 1.45;
}

.index-copy small {
  margin-top: 1px;
  color: var(--text-muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.index-arrow {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #a1a7b2;
  border-radius: 50%;
  font-size: 0;
  transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.index-arrow::before {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s;
}

.content-index button:hover .index-arrow {
  color: var(--accent);
}

.content-index button:hover:not(.is-active) .index-arrow::before {
  transform: translateX(2px);
}

.content-index button.is-active .index-arrow {
  color: #fff;
  background: var(--accent);
  transform: none;
}

.content-index button.is-active .index-arrow::before {
  content: "×";
  font-size: 17px;
  font-weight: 500;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .post-list.is-refreshed {
    animation: none;
  }
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* 标签云 */
.tag-cloud {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-cloud a {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--tag-bg);
  color: var(--accent-hover);
  transition: all 0.2s;
}

.tag-cloud a:hover {
  background: var(--accent);
  color: #fff;
}

/* 最近更新 */
.recent-list {
  list-style: none;
}

.recent-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.recent-list li:last-child {
  border-bottom: none;
}

.recent-list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.recent-list a:hover {
  color: var(--accent);
}

/* 联系 */
.contact-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.contact-links svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.contact-links svg[fill="none"] {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-links a:hover {
  color: var(--accent);
  background: var(--tag-bg);
  transform: translateY(-1px);
}

.contact-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== 页脚 ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== 响应式 ===== */
@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .projects-widget {
    grid-column: 1 / -1;
  }

  .sidebar-project-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .header-inner {
    min-height: 64px;
    height: auto;
    gap: 16px;
  }

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

  .projects-widget {
    grid-column: auto;
  }

  .sidebar-project-list {
    display: flex;
  }

  .intro-hero {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .intro-copy h1 {
    font-size: 32px;
  }

  .intro-visual {
    display: none;
  }
}
