/*
Theme Name: La Terra
Theme URI: https://laterra.jp
Author: La Terra Group
Description: Custom theme for La Terra HIRASAWA resort website
Version: 1.0.0
Text Domain: laterra
*/

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --color-bg: #F6F6F6;
  --color-key: #1a4548;
  --color-key-light: #2a6569;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-sub: #aaaaaa;
  --color-border: #e0e0e0;
  --color-hero-overlay: rgba(26, 69, 72, 0.6);
  --color-dark-overlay: rgba(0, 0, 0, 0.4);

  --font-heading: 'Cormorant Garamond', 'Noto Serif JP', 'Yu Mincho', 'Times New Roman', serif;
  --font-body: 'Noto Serif JP', 'Yu Mincho', 'Times New Roman', serif;

  --header-height: 80px;
  --content-max-width: 1200px;
  --content-narrow: 900px;
}

/* ============================================
   Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state - dark text on light background */
.site-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .hamburger-btn span {
  background-color: var(--color-text);
}

.site-header.is-scrolled .site-logo a {
  color: var(--color-text);
}

.site-header.is-scrolled .main-nav a {
  color: var(--color-text);
}

.site-header.is-scrolled .main-nav a::after {
  background-color: var(--color-key);
}

.site-header.is-scrolled .btn-reserve {
  border-color: var(--color-key);
  color: var(--color-key);
}

.site-header.is-scrolled .btn-reserve:hover {
  background-color: var(--color-key);
  color: var(--color-white);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Button */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 201;
  position: relative;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Site Logo */
.site-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.site-logo a {
  color: var(--color-white);
}

.site-logo a:hover {
  opacity: 0.8;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-transform: capitalize;
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 28px 6px 12px;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.3s ease;
}

.lang-dropdown-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.lang-dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 110;
}

.lang-dropdown.is-open .lang-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-list li {
  margin: 0;
}

.lang-dropdown-list a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}

.lang-dropdown-list a:hover {
  background-color: var(--color-bg);
}

.lang-dropdown-list a.is-current {
  color: var(--color-key);
  font-weight: 500;
}

/* Scrolled state overrides for dropdown */
.site-header.is-scrolled .lang-dropdown-btn {
  color: var(--color-text);
  border-color: rgba(51, 51, 51, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333333' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.site-header.is-scrolled .lang-dropdown-btn:hover {
  border-color: rgba(51, 51, 51, 0.6);
}

/* Reserve Button */
.btn-reserve {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-reserve:hover {
  background-color: var(--color-white);
  color: var(--color-key);
}

/* ============================================
   Hamburger Menu Overlay
   ============================================ */
.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 69, 72, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hamburger-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Close Button (inside overlay - always clickable) */
.hamburger-close {
  position: absolute;
  top: 28px;
  left: 48px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-close span {
  position: absolute;
  display: block;
  width: 28px;
  height: 1.5px;
  background-color: var(--color-white);
}

.hamburger-close span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.hamburger-close:hover span {
  opacity: 0.7;
}

.hamburger-menu {
  text-align: center;
}

.hamburger-menu-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-white);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hamburger-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger-menu-list li {
  margin-bottom: 20px;
}

.hamburger-menu-list a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.hamburger-menu-list a:hover {
  opacity: 0.7;
}

/* ============================================
   Hero - Home (/hirasawa/)
   ============================================ */
.hero-home {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.hero-home-grid .grid-col {
  background-size: cover;
  background-position: center;
  background-color: #2a3a2e;
}

.hero-home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-hero-overlay);
}

.hero-home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 800px;
}

.hero-home-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  margin: 0 0 24px;
}

.hero-home-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
  opacity: 0.9;
}

/* ============================================
   Hero - Sub Page (/hirasawa/facility)
   ============================================ */
.hero-page {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a2a1e;
  opacity: 0.3;
}

.hero-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark-overlay);
}

.hero-page-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px 60px;
}

.hero-page-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: capitalize;
}

/* ============================================
   Content Section
   ============================================ */
.content-section {
  background-color: var(--color-white);
  padding: 80px 40px;
}

.content-inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.content-label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--color-sub);
  text-transform: capitalize;
  margin-bottom: 40px;
}

.content-text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

/* ============================================
   Image Carousel
   ============================================ */
.carousel {
  position: relative;
  width: 100%;
  max-width: 893px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 893 / 620;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--color-border);
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
  color: var(--color-text);
  font-size: 14px;
}

.carousel-btn:hover {
  border-color: var(--color-key);
  color: var(--color-key);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.carousel-dot.is-active {
  background-color: var(--color-key);
}

/* ============================================
   Facility Heading & Location
   ============================================ */
.facility-heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 40px;
  letter-spacing: 0.04em;
}

.facility-location {
  margin-top: 60px;
}

.facility-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.facility-map-pin {
  flex-shrink: 0;
  color: var(--color-text);
  margin-top: 2px;
}

.facility-address-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

.facility-map {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.facility-map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* ============================================
   Facility Intro Section (Top page)
   ============================================ */
.facility-intro {
  padding: 100px 40px;
  background-color: var(--color-bg);
}

.facility-intro-inner {
  position: relative;
  max-width: var(--content-max-width);
  margin: 0 auto;
  height: 760px;
}

/* Image Grid */
.facility-intro-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.fi-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-color: #ccc;
}

.fi-img--top-left {
  top: 0;
  left: 0;
  width: 38%;
  height: 40%;
}

.fi-img--bottom-left {
  bottom: 0;
  left: 0;
  width: 38%;
  height: 52%;
}

.fi-img--right {
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
}

/* Content Card */
.facility-intro-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  padding: 60px 56px;
  width: 380px;
  z-index: 2;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.facility-intro-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin: 0 0 20px;
  line-height: 1.2;
}

.facility-intro-divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: 28px;
}

.facility-intro-status {
  font-size: 15px;
  color: var(--color-text);
  margin: 0 0 48px;
  line-height: 1.8;
}

.facility-intro-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-key);
  border-color: var(--color-key);
  color: var(--color-white);
}

.btn-text {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-text:hover span {
  transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 80px 64px 0;
}

.footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

/* Footer Top - 3 column layout */
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-icons {
  margin-bottom: 24px;
}

.footer-logo-img {
  width: 120px;
  height: auto;
}

.footer-brand-text-img {
  width: 160px;
  height: auto;
}

/* Address Column */
.footer-address-col {
  padding-top: 4px;
}

.footer-address-block {
  margin-bottom: 32px;
}

.footer-address-label {
  font-size: 14px;
  color: var(--color-text);
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

.footer-address {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  font-style: normal;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  color: var(--color-key);
}

/* Navigation Columns */
.footer-nav-col {
  padding-top: 4px;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 16px;
}

.footer-link-list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.footer-link-list a:hover {
  color: var(--color-key);
}

.footer-link-list-right {
  display: flex;
  flex-direction: column;
}

.footer-link-list--extra {
  margin-top: 8px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.footer-copy {
  font-size: 13px;
  color: var(--color-sub);
  margin: 0;
  letter-spacing: 0.03em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--color-key);
}

/* ============================================
   Page Content (for standard pages)
   ============================================ */
.page-content {
  padding: 60px 40px 80px;
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.page-content p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1.5em;
}

/* ============================================
   Utility
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .site-header {
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .lang-dropdown {
    display: none;
  }

  .hero-home-title {
    font-size: 42px;
  }

  .hero-home-desc {
    font-size: 16px;
  }

  .hero-page-title {
    font-size: 42px;
  }

  .content-section {
    padding: 60px 24px;
  }

  .facility-heading {
    font-size: 38px;
  }

  .facility-map iframe {
    height: 380px;
  }

  /* Facility Intro */
  .facility-intro {
    padding: 60px 24px;
  }

  .facility-intro-inner {
    height: 600px;
  }

  .facility-intro-card {
    width: 340px;
    padding: 48px 40px;
  }

  .facility-intro-title {
    font-size: 38px;
  }

  /* Footer */
  .site-footer {
    padding: 60px 24px 0;
  }

  .footer-top {
    grid-template-columns: 160px 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 16px;
  }

  .btn-reserve {
    padding: 8px 20px;
    font-size: 12px;
  }

  .hero-home {
    min-height: 500px;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
  }

  .hero-home-grid .grid-col:nth-child(2),
  .hero-home-grid .grid-col:nth-child(3) {
    display: none;
  }

  .hero-home-title {
    font-size: 32px;
    letter-spacing: 0.1em;
  }

  .hero-home-desc {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-home-content {
    padding: 0 20px;
  }

  .hero-page {
    min-height: 280px;
  }

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

  .hero-page-content {
    padding: 0 20px 40px;
  }

  .content-section {
    padding: 48px 20px;
  }

  .content-label {
    margin-bottom: 24px;
  }

  .facility-heading {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .facility-map iframe {
    height: 300px;
  }

  .hamburger-menu-list a {
    font-size: 22px;
  }

  .hamburger-close {
    top: 20px;
    left: 20px;
  }

  /* Facility Intro - stack vertically */
  .facility-intro {
    padding: 48px 20px;
  }

  .facility-intro-inner {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .facility-intro-images {
    position: relative;
    height: 300px;
  }

  .fi-img--top-left {
    width: 48%;
    height: 45%;
  }

  .fi-img--bottom-left {
    width: 48%;
    height: 48%;
  }

  .fi-img--right {
    width: 48%;
    height: 100%;
  }

  .facility-intro-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 40px 24px;
    margin-top: -40px;
    z-index: 2;
  }

  .facility-intro-title {
    font-size: 32px;
  }

  .facility-intro-status {
    margin-bottom: 32px;
  }

  .facility-intro-actions {
    gap: 20px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 40px 20px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
  }

  .footer-logo-icons {
    margin-bottom: 0;
  }

  .footer-logo-img {
    width: 80px;
  }

  .footer-nav-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }

  .footer-legal {
    gap: 16px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .hero-home-title {
    font-size: 26px;
  }

  .hero-home-desc {
    font-size: 13px;
  }

  .hero-page-title {
    font-size: 26px;
  }
}
