.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem 0;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
}

.hero-links a:hover {
  border-color: #999;
  text-decoration: none;
}

.rg-icon {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.03em;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 780px);
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-photo img {
  width: clamp(150px, 18vw, 220px);
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #ddd;
}

.hero-text {
  max-width: 780px;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo img {
    width: clamp(150px, 45vw, 220px);
  }
}