/* greeting.css - 代表挨拶ページ */

/* === 挨拶セクション === */

.greeting-section .side-by-side {
  max-width: 900px;
  margin: 0 auto;
}

.greeting-photo {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin: 0 auto;
}

.greeting-text {
  font-size: var(--font-size-body);
  line-height: 2;
}

.greeting-name {
  margin-top: var(--space-lg);
  text-align: right;
  font-size: var(--font-size-body);
  color: var(--color-primary-700);
  font-weight: 600;
}

.greeting-title {
  text-align: right;
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
}

/* === プロフィールセクション === */

.profile-section {
  background-color: var(--color-primary-50);
}

.profile-content {
  max-width: 700px;
  margin: 0 auto;
}

.profile-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-body);
}

.profile-label {
  font-weight: 600;
  color: var(--color-primary-700);
  white-space: nowrap;
  min-width: 80px;
}

@media (max-width: 767px) {
  .greeting-photo {
    width: 200px;
    height: 200px;
  }

  .greeting-text {
    line-height: 1.8;
  }

  .greeting-name,
  .greeting-title {
    text-align: center;
  }
}

@media (max-width: 375px) {
  .greeting-photo {
    width: 160px;
    height: 160px;
  }
}
