@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --honda-gray-dark: #333333;
  --honda-gray-medium: #666666;
  --honda-gray-light: #F5F5F5;
  --honda-white: #FFFFFF;
}

html, body {
  font-family: "HondaGlobalFontEN-Regular", system-ui, -apple-system, sans-serif;
  color: var(--honda-gray-medium);
  line-height: 1.5;
  background: linear-gradient(to bottom right, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
  min-height: 100vh;
}

.text-light {
  font-family: "HondaGlobalFontEN-Light";
}

.text-bold {
  font-family: "HondaGlobalFontEN-Bold";
}

.text-exbold {
  font-family: "HondaGlobalFontEN-ExBold";
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  background: var(--honda-white);
  border-bottom: 1px solid var(--honda-gray-light);
}

.site-header .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 64px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  list-style: none;
}

.breadcrumb a {
  color: var(--honda-gray-medium);
  transition: all 0.2s;
}

.breadcrumb a:hover {
  color: var(--honda-gray-dark);
  text-decoration: underline;
}

.breadcrumb .current {
  color: var(--honda-gray-dark);
  font-weight: bold;
}

.breadcrumb .current a {
  color: var(--honda-gray-dark);
}

.breadcrumb-separator {
  color: var(--honda-gray-medium);
  display: flex;
  align-items: center;
}

/* ==========================================
   HERO SECTION (List Page)
   ========================================== */
.hero-section {
  padding-top: 80px;
  padding-bottom: 32px;
  overflow: hidden;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--honda-gray-dark);
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 72px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  line-height: 1.1;
  margin-bottom: 32px;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.content-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

main.list-main {
  padding-bottom: 128px;
}

/* ==========================================
   EXECUTIVE SECTION
   ========================================== */
.executive-section {
  margin-bottom: 96px;
}

.executive-section:last-child {
  margin-bottom: 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-decorator {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.decorator-line {
  width: 48px;
  height: 2px;
  background: var(--honda-gray-dark);
}

.section-badge {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: var(--honda-gray-dark);
  text-transform: uppercase;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  line-height: 1.2;
}

/* ==========================================
   EXECUTIVE GRID (List Page)
   ========================================== */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  row-gap: 80px;
}

.executive-card {
  max-width: 240px;
  margin: 0 auto;
  width: 100%;
}

.executive-card-link {
  display: block;
  cursor: pointer;
}

.executive-card-link .card-mobile {
  display: none;
}

.executive-card-link .card-desktop {
  display: block;
}

.executive-photo-container {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--honda-gray-light);
  margin-bottom: 24px;
  border-radius: 2px;
}

.executive-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease-out;
}

.executive-card-link:hover .executive-photo {
  transform: scale(1.05);
}

.executive-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.executive-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  line-height: 1.3;
  transition: color 0.2s;
}

.executive-card-link:hover .executive-name {
  color: var(--honda-gray-medium);
}

.executive-kana {
  font-size: 13px;
  color: var(--honda-gray-medium);
}

.executive-position {
  font-size: 12px;
  color: var(--honda-gray-medium);
  letter-spacing: 0.05em;
  white-space: pre-wrap;
}

/* ==========================================
   DETAIL PAGE - HERO (PC)
   ========================================== */
.detail-hero-pc {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 0;
  background: white;
}

.detail-hero-pc .hero-image-wrapper {
  position: relative;
  width: 100%;
}

.detail-hero-pc .hero-bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.detail-hero-pc .hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.detail-hero-pc .hero-text-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.detail-hero-pc .hero-text-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.detail-hero-pc .hero-text-content {
  max-width: 600px;
}

.detail-badge-container {
  height: 44px;
  display: flex;
  align-items: center;
}

.detail-badge {
  font-size: 11px;
  color: var(--honda-gray-dark);
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.detail-position-main {
  font-size: 17px;
  color: var(--honda-gray-dark);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-position-sub {
  font-size: 14px;
  color: var(--honda-gray-dark);
  letter-spacing: 0.05em;
}

.detail-position-single {
  font-size: 14px;
  color: var(--honda-gray-dark);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.detail-position-block {
  margin-bottom: 12px;
}

.detail-name {
  font-size: 64px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.detail-kana {
  font-size: 16px;
  color: var(--honda-gray-dark);
  margin-bottom: 32px;
}

/* ==========================================
   DETAIL PAGE - HERO (Mobile)
   ========================================== */
.detail-hero-mobile {
  display: none;
  padding-top: 0;
  overflow: hidden;
  background: white;
}

.detail-hero-mobile .mobile-photo {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.detail-hero-mobile .mobile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.detail-hero-mobile .mobile-text {
  padding: 24px;
  background: white;
}

.detail-hero-mobile .detail-position-sub {
  color: var(--honda-gray-medium);
}

.detail-hero-mobile .detail-position-single {
  color: var(--honda-gray-medium);
}

.detail-hero-mobile .detail-name {
  font-size: 40px;
}

.detail-hero-mobile .detail-kana {
  color: var(--honda-gray-medium);
}

/* ==========================================
   BIOGRAPHY SECTION
   ========================================== */
.biography-main {
  padding-top: 64px;
  padding-bottom: 96px;
}

.biography-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.biography-article {
  max-width: 1024px;
  margin: 0 auto;
}

.biography-header {
  margin-bottom: 32px;
}

.biography-header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.biography-section-title {
  font-size: 40px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  line-height: 1.2;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--honda-gray-dark);
  font-size: 14px;
  transition: all 0.2s;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.pdf-download-btn:hover {
  text-decoration: underline;
}

.pdf-download-btn:hover .pdf-icon {
  transform: translateY(2px);
}

.pdf-icon {
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}

.biography-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--honda-gray-light);
  border-radius: 2px;
  padding: 48px;
}

.biography-table {
  width: 100%;
  border-collapse: collapse;
}

.biography-table tr {
  border-bottom: 1px solid rgba(245, 245, 245, 0.5);
  transition: color 0.3s;
}

.biography-table tr:last-child {
  border-bottom: none;
}

.biography-table tr:hover td:last-child {
  color: var(--honda-gray-dark);
}

.biography-table td {
  padding: 12px 0;
  font-size: 16px;
  vertical-align: top;
  line-height: 1.7;
}

.biography-table td:first-child {
  padding-right: 48px;
  color: var(--honda-gray-dark);
  white-space: nowrap;
}

.biography-table td:last-child {
  color: var(--honda-gray-medium);
}

.biography-bold {
  font-weight: bold;
  color: var(--honda-gray-dark);
}

.biography-footer {
  margin-top: 24px;
}

.biography-footer-right {
  font-size: 16px;
  color: var(--honda-gray-medium);
  line-height: 1.7;
  text-align: right;
}

.biography-footer-bold {
  font-size: 16px;
  color: var(--honda-gray-dark);
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
}

/* ==========================================
   PHOTO DOWNLOAD SECTION
   ========================================== */
.photo-download-section {
  max-width: 1024px;
  margin: 96px auto 0;
}

.photo-download-header {
  margin-bottom: 32px;
}

.photo-download-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  line-height: 1.2;
}

.photo-download-desc {
  font-size: 12px;
  color: var(--honda-gray-medium);
  margin-top: 12px;
}

.photo-download-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--honda-gray-light);
  border-radius: 2px;
  padding: 24px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.photo-thumb-btn {
  width: 100%;
  background: white;
  border: 1px solid var(--honda-gray-light);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.photo-thumb-btn:hover {
  border-color: var(--honda-gray-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo-thumb-btn .thumb-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--honda-gray-light);
}

.photo-thumb-btn .thumb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

.photo-thumb-btn:hover .thumb-img-wrap img {
  transform: scale(1.05);
}

.photo-usage-note {
  margin-top: 16px;
  padding: 12px;
  background: var(--honda-gray-light);
  border-radius: 2px;
}

.photo-usage-note p {
  font-size: 12px;
  color: var(--honda-gray-medium);
  line-height: 1.6;
}

.photo-usage-note strong {
  color: var(--honda-gray-dark);
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.2s ease-out;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 2px;
  max-width: 672px;
  width: 100%;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: modalAppear 0.2s ease-out;
}

.modal-body {
  padding: 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--honda-gray-medium);
  transition: color 0.2s;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal-close-btn:hover {
  color: var(--honda-gray-dark);
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--honda-gray-dark);
  margin-bottom: 16px;
  padding-right: 32px;
}

.modal-scroll-area {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.modal-preview {
  margin-bottom: 16px;
}

.modal-preview-img-wrap {
  background: var(--honda-gray-light);
  border-radius: 2px;
  overflow: hidden;
}

.modal-preview-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 35vh;
  object-fit: contain;
}

.modal-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--honda-gray-medium);
}

.modal-caption strong {
  color: var(--honda-gray-dark);
}

.modal-terms {
  margin-bottom: 16px;
  padding: 12px;
  background: var(--honda-gray-light);
  border-radius: 2px;
}

.modal-terms p {
  font-size: 12px;
  color: var(--honda-gray-medium);
  line-height: 1.6;
}

.modal-terms strong {
  color: var(--honda-gray-dark);
}

.modal-agree {
  margin-bottom: 16px;
}

.modal-agree label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.modal-agree input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  accent-color: var(--honda-gray-dark);
}

.modal-agree span {
  font-size: 14px;
  color: var(--honda-gray-dark);
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-shrink: 0;
}

.modal-btn-cancel {
  flex: 1;
  border: 2px solid var(--honda-gray-dark);
  color: var(--honda-gray-dark);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-btn-cancel:hover {
  background: var(--honda-gray-light);
}

.modal-btn-download {
  flex: 1;
  background: var(--honda-gray-dark);
  color: white;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.modal-btn-download:hover {
  opacity: 0.9;
}

.modal-btn-download:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Back Link */
.back-link-container {
  margin-top: 80px;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--honda-gray-dark);
  color: var(--honda-gray-dark);
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.back-link:hover {
  background: var(--honda-gray-dark);
  color: white;
}

.back-link:hover .back-arrow {
  transform: translateX(-4px);
}

.back-arrow {
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================
   RESPONSIVE: Tablet (max 1279px)
   ========================================== */
@media (max-width: 1279px) {
  .executive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 64px;
  }

  .detail-name {
    font-size: 56px;
  }
}

/* ==========================================
   RESPONSIVE: Small Tablet (max 1023px)
   ========================================== */
@media (max-width: 1023px) {
  .executive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .detail-name {
    font-size: 56px;
  }

  .photo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ==========================================
   RESPONSIVE: Tablet (max 767px)
   ========================================== */
@media (min-width: 768px) {
  .biography-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .site-header .container {
    padding: 24px 32px;
  }

  .hero-section {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .hero-container {
    padding: 0 32px;
  }

  .hero-title {
    font-size: 32px;
  }

  .content-container {
    padding: 0 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .executive-section {
    margin-bottom: 80px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .executive-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    row-gap: 48px;
  }

  .executive-card {
    max-width: none;
  }

  .executive-card-link .card-desktop {
    display: none;
  }

  .executive-card-link .card-mobile {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .card-mobile .executive-info {
    flex: 1;
    justify-content: center;
    order: 1;
  }

  .card-mobile .executive-photo-container {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    margin-bottom: 0;
    order: 2;
    aspect-ratio: auto;
  }

  .card-mobile .executive-name {
    font-size: 18px;
  }

  .card-mobile .executive-kana {
    font-size: 12px;
  }

  .card-mobile .executive-position {
    font-size: 11px;
  }

  /* Detail page mobile */
  .detail-hero-pc {
    display: none;
  }

  .detail-hero-mobile {
    display: block;
  }

  .biography-container {
    padding: 0 32px;
  }

  .biography-card {
    padding: 32px 24px;
  }

  .biography-table td {
    font-size: 14px;
  }

  .biography-table td:first-child {
    padding-right: 32px;
  }

  .biography-section-title {
    font-size: 32px;
  }

  .biography-main {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .biography-footer-right,
  .biography-footer-bold {
    font-size: 14px;
  }

  .back-link-container {
    margin-top: 64px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-download-section {
    margin-top: 64px;
  }

  .modal-body {
    padding: 24px;
  }

  .modal-title {
    font-size: 20px;
  }
}

/* ==========================================
   PRINT STYLES (browser print)
   Shows the A4 print view, hides everything else
   ========================================== */
@media print {
  @page {
    size: A4 portrait;
    margin: 0mm 10mm 0mm 10mm;
  }

  html, body {
    background: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .l-header,
  .l-footer,
  .l-footer-pagetop,
  .site-header,
  .detail-hero-pc,
  .detail-hero-mobile,
  .biography-main,
  .modal-overlay,
  .back-link-container,
  .photo-download-section,
  .pdf-download-btn {
    display: none !important;
  }

  #printWrapper {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

.print-container {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  page-break-inside: avoid;
  
  background: white;
  font-family: "HondaGlobalFontEN-Regular", sans-serif;
  color: #333333;
  position: relative;
  box-sizing: border-box;
}

.print-content {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.print-header {
  margin-bottom: 16px;
  flex-shrink: 0;
}

.honda-logo {
  width: 72px;
  height: auto;
  max-height: 22px;
  object-fit: contain;
  margin-bottom: 6px;
}

.print-header-line {
  width: 100%;
  height: 1px;
  background: #333333;
}

.print-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.print-profile-section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.print-photo-container {
  width: 140px;
  min-width: 140px;
  flex-shrink: 0;
  order: 2;
}

.print-photo-container img {
  width: 100%;
  height: auto;
  display: block;
}

.print-photo {
  width: 100%;
  height: auto;
  display: block;
}

.print-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  flex: 1;
  order: 1;
}

.print-label {
  font-size: 9px;
  color: #333333;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.print-position {
  font-size: 11px;
  color: #666666;
  margin-bottom: 6px;
  line-height: 1.4;
}

.print-position div {
  line-height: 1.4;
  color: #666666;
}

.print-name {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  line-height: 1.2;
  margin-bottom: 4px;
}

.print-kana {
  font-size: 10px;
  color: #666666;
  margin-bottom: 10px;
}

.print-biography-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible !important;
}

.print-section-header {
  margin-bottom: 10px;
  flex-shrink: 0;
}

.print-section-line {
  width: 32px;
  height: 1px;
  background: #333333;
  margin-bottom: 6px;
}

.print-section-title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 1.2;
}

.print-biography-table {
  background: white;
  border: 1px solid #F5F5F5;
  padding: 12px 16px;
  flex: 1;
  overflow: visible !important;
}

.print-biography-table table {
  width: 100%;
  border-collapse: collapse;
}

.print-table-row {
  border-bottom: 1px solid #F5F5F5;
}

.print-table-row:last-child {
  border-bottom: none;
}

.print-table-date {
  padding: 5px 16px 5px 0;
  font-size: 10px;
  color: #333333;
  font-weight: normal;
  white-space: nowrap;
  vertical-align: top;
  width: 85px;
}

.print-table-content {
  padding: 5px 0;
  font-size: 10px;
  color: #666666;
  line-height: 1.5;
}

.print-footer {
  margin-top: auto;
  padding-top: 8px;
  flex-shrink: 0;
}

.print-footer-line {
  width: 100%;
  height: 1px;
  background: #F5F5F5;
  margin-bottom: 8px;
}

.print-footer-text {
  font-size: 9px;
  color: #666666;
  text-align: center;
}