.anth-home .anth-ident {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.anth-home .anth-ident-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
  color: var(--text);
  margin: 0 0 40px;
}

.anth-home .anth-ident-title em {
  font-style: normal;
  color: var(--teal);
}

.anth-home .anth-ident-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.anth-home .anth-ident-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: var(--surface);
}

.anth-home .anth-ident-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.anth-home .anth-ident-card:hover img {
  transform: scale(1.05);
}

.anth-home .anth-ident-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 3, 8, 0.92) 0%, rgba(0, 3, 8, 0.15) 55%, transparent 75%);
}

.anth-home .anth-ident-card-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
}

.anth-home .anth-ident-card-foot p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.anth-home .anth-ident-card-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.anth-home .anth-ident-card:hover .anth-ident-card-arrow {
  background: var(--teal-solid);
  border-color: var(--teal-solid);
}

.anth-home .anth-ident-closing {
  text-align: center;
  margin-top: 56px;
}

.anth-home .anth-ident-closing p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.anth-home .anth-ident-closing-main em {
  font-style: normal;
  color: var(--teal);
}

.anth-home .anth-ident-closing-dim {
  color: var(--text-dim);
}

.anth-home .anth-ident-chevron {
  margin-top: 18px;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .anth-home .anth-ident-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .anth-home .anth-ident {
    padding: 48px 0 40px;
  }
  .anth-home .anth-ident-grid {
    grid-template-columns: 1fr;
  }
  .anth-home .anth-ident-card {
    aspect-ratio: 16 / 10;
  }
}
