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

/* Базовые настройки */
body {
  font-family: 'GT Eesti Pro Display', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f2f8fc;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/*Настройка логотипа*/
.logo img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo img:hover {
  transform: scale(1.04);
}


/* менюшка */
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5494cf;
  width: 100%;
  padding: 0 3% 0 10%;
  position: sticky;
  top: 0;
  z-index: 1000;
  cursor: pointer;
}

.nav-menu .dropdown ul li a {
  display: block;
  font-family: 'GT Eesti Pro Display', sans-serif;
  color: #1A3055;
  text-decoration: none;
  font-size: calc(12px + (18+12)*((100vw-350px)/(1600-300)));
  padding: 5% 0 5% 10%;
  border-radius: 15px;
}

.nav-menu .dropdown ul li a:hover {
  background-color: #cde3f7;

}

.nav-menu .dropdown ul li ul {
  flex-direction: column;
  position: absolute;
  right: 0;
  width: 18rem;
  background-color: #e8f3fc;
  opacity: 0;
  border-radius: 15px;
  transition: 0.3s;
  margin-top: 45%;
  visibility: hidden;
}

/* Активное меню (открытое по клику) */
.nav-menu .dropdown ul li ul.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-menu .dropdown ul li {
  position: relative;
  list-style: none;
}



.nav-brand {
  gap: 10px;
  display: flex;
  align-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  margin-left: 4px;
  font-size: calc(20px + (35+20)*((100vw-350px)/(1600-300)));
}

.menu-item {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  text-decoration: none;
  color: #f8f3e7;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-name {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f8f3e7;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  color: #f8f3e7;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  margin-left: -4px;
  border: 0;
  border-radius: 50%;
  background-color: #858b94;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle::before {
  content: "☾";
  font-size: 18px;
  line-height: 1;
}

.theme-toggle:hover {
  background-color: #6e747c;
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(248, 243, 231, 0.85);
  outline-offset: 3px;
}

body.theme-dark {
  background-color: #121923;
  color: #e7edf5;
}

body.theme-dark .nav-menu,
body.theme-dark .site-footer {
  background-color: #243140;
}

body.theme-dark .nav-menu .dropdown ul li ul {
  background-color: #1b2430;
}

body.theme-dark .nav-menu .dropdown ul li a,
body.theme-dark .brand-name,
body.theme-dark .brand-subtitle,
body.theme-dark .menu-item,
body.theme-dark .mail,
body.theme-dark .footer-nav a,
body.theme-dark .footer-contact a,
body.theme-dark .footer-brand-block h3,
body.theme-dark .footer-brand-block p,
body.theme-dark .footer-bottom p,
body.theme-dark .community-card-header a,
body.theme-dark .address-line span,
body.theme-dark .community-guide-list p,
body.theme-dark .community-guide-note,
body.theme-dark .community-guide h3,
body.theme-dark .community-guide h4 {
  color: #e7edf5;
}

body.theme-dark .nav-menu .dropdown ul li a:hover {
  background-color: #334254;
}

body.theme-dark .centers-wrapper,
body.theme-dark .map-section,
body.theme-dark .community-card,
body.theme-dark .mail,
body.theme-dark dialog {
  background-color: #1b2430;
}

body.theme-dark .community-card,
body.theme-dark .community-card-header,
body.theme-dark .centers-map,
body.theme-dark .card-go-btn {
  border-color: #3a4858;
}

body.theme-dark .community-card {
  background: linear-gradient(135deg, #1b2430 0%, #202c3a 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

body.theme-dark .community-card-header img {
  border-color: #314255;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}

body.theme-dark .centers-map {
  border-color: #314255;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

body.theme-dark .card-go-btn {
  background: rgba(36, 49, 64, 0.92);
  color: #e7edf5;
}

body.theme-dark .card-go-btn:hover {
  background: #5f94c7;
  border-color: #5f94c7;
  color: #ffffff;
}

body.theme-dark .back-to-top {
  background-color: #334254;
}

body.theme-dark .back-to-top:hover {
  background-color: #415164;
}

body.theme-dark .theme-toggle {
  background-color: #a0a6ae;
  color: #1b2430;
}

body.theme-dark .theme-toggle::before {
  content: "☀";
}

body.theme-dark iframe {
  filter: saturate(0.9) brightness(0.88);
}

body.theme-dark .community-help-button {
  background-color: #334254;
}

body.theme-dark .community-help-button:hover {
  background-color: #415164;
}

body.theme-dark dialog::backdrop {
  background: rgba(5, 10, 17, 0.6);
}

body.theme-dark .dialog-close {
  background: #243140;
  color: #e7edf5;
}

body.theme-dark .dialog-close:hover {
  background-color: #334254;
}

body.theme-dark .community-guide-icon {
  color: #f0f5fb;
}

/*фото-баннер для главной страницы*/
.image-container {
  position: relative;
  width: 100%;
  margin: 0 auto 5%;
  overflow: hidden;
}

.photo-shape {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.text-overlay {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4%;
  flex-direction: column;
}

.text-overlay h1 {
  color: #f2f8fc;
  font-family: 'GT Eesti Pro Display', Arial, sans-serif;
  font-size: 75pt;
  font-weight: 600;
  margin: 0;
  max-width: 80%;

}

/* Основной контейнер */
.centers-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 34%);
  gap: 5%;
  width: 90%;
  margin: auto;
  align-items: start;
}

/* Секция с картой */
.map-section {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.centers-map {
  width: 100%;
  height: 540px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(84, 149, 207, 0.2);
  border: 3px solid #fff;
}

/* Секция с карточками */
.cards-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Улучшенная карточка */
.community-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  border: 2px solid #c5d9ed;
  border-radius: 20px;
  padding: 4% 4% 11% 4%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(84, 149, 207, 0.1);
  position: relative;
  overflow: hidden;
}

.community-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.community-card-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eaf0f8;
  box-shadow: 0 3px 10px rgba(84, 149, 207, 0.2);
  transition: transform 0.3s;
}

.community-card-header a {
  color: #5495cf;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-weight: 600;
  font-size: 22pt;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s;
  line-height: 1.2;
}

.address-line {
  margin-top: 8px;
  border-top: 1px dashed #bdd4e8;
  padding-top: 8px;
  margin-bottom: 4px;
}

.address-line span {
  display: block;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-size: 14pt;
  color: #2c3e4e;
  line-height: 1.4;
  text-align: left;
}

.address-line p1 {
  margin-top: 8px;
  font-size: 14pt;
  color: #2c3e4e;
  line-height: 1.4;
  text-align: left;
}

.card-go-btn {
  position: absolute;
  bottom: 4%;
  right: 4%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff8d5c;
  min-width: 128px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 60px;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #c2d8ec;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

  z-index: 2;
}

.card-go-btn:hover {
  background: #ff8d5c;
  border-color: #5495cf;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(84, 149, 207, 0.3);
}

.community-help-button {
  position: fixed;
  right: 32px;
  bottom: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: #5494cf;
  color: transparent;
  text-decoration: none;
  border-radius: 50%;
  font-family: 'GT Eesti Pro Display', sans-serif;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 1000;
}

.community-help-button::before {
  content: "☎";
  position: static;
  color: #f8f3e7;
  font-size: 28px;
  line-height: 1;
  font-family: 'GT Eesti Pro Display', sans-serif;
}

.community-help-button::after {
  display: none;
}

.community-help-button:hover {
  background-color: #467fb2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

dialog {
  margin: 4% auto 0;
  padding: 0;
  width: min(92%, 47.5rem);
  min-width: 0;
  border: none;
  background-color: #e3f2ff;
  border-radius: 28px;
  outline: none;
  box-shadow: 0 28px 60px rgba(26, 48, 85, 0.2);
  overflow: hidden;
}

dialog::backdrop {
  background: rgba(26, 48, 85, 0.32);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: sticky;
  float: right;
  right: 18px;
  top: 18px;
  cursor: pointer;
  font-family: 'GT Eesti Pro Display', sans-serif;
  color: #1A3055;
  border: none;
  background: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(26, 48, 85, 0.12);
}

.dialog-close:focus-visible,
.community-help-button:focus-visible,
.upload-btn-nomer-pdf:focus-visible {
  outline: 3px solid #EAF0F8;
  outline-offset: 4px;
}

.Dowload
{

  width: 70%;
  height: auto;
  z-index: 8;
  
}

.upload-btn-nomer-pdf{

 position: sticky;
  float: left;
top: 78px;
  left:92%;
  cursor: pointer;
  font-family: 'GT Eesti Pro Display', sans-serif;
  color: #1A3055;
  border: none;
  background: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(26, 48, 85, 0.12);
  z-index: 7;

}

.upload-btn-nomer-pdf:hover {
  background-color: #f8f3e7;
}






.community-guide {
  padding: 26px 54px 34px;
  text-align: center;
}

.community-guide-icon {
  margin: 0 auto 16px;
  color: #1a1a1a;
  font-size: 64px;
  line-height: 1;
}

.community-guide h3 {
  margin: 0 0 34px;
  color: #111111;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
}

.community-guide-list {
  display: grid;
  gap: 24px;
}

.community-guide-list p {
  margin: 0;
  color: #2c3e4e;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.35;
}

.community-guide-note {
  margin: 44px 0 18px;
  color: #1A3055;
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.4;
}

.community-guide h4 {
  margin: 0;
  color: #ff8d5c;
  font-family: 'GT Eesti Pro Display', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.dialog-close:hover {
  background-color: #f8f3e7;
}

.dialog-close:focus-visible,
.community-help-button:focus-visible {
  outline: 3px solid #EAF0F8;
  outline-offset: 4px;
}


.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: #5494cf;
  color: transparent;
  text-decoration: none;
  border-radius: 50%;
  font-family: 'GT Eesti Pro Display', sans-serif;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 1000;
}

.back-to-top::before,
.back-to-top::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 14px;
  height: 14px;
  border-top: 10px solid #f8f3e7;
  border-left: 10px solid #f8f3e7;
  transform: rotate(45deg);
}

.back-to-top::after {
  content: "";
  position: absolute;
  top: 26px;
  width: 4px;
  height: 18px;
  background-color: #f8f3e7;
  border-radius: 999px;
}

.back-to-top:hover {
  background-color: #467fb2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid #EAF0F8;
  outline-offset: 4px;
}

.site-footer {
  margin-top: 56px;
  padding: 32px 40px 24px;
  background-color: #5494cf;
  color: #f8f3e7;
  width: calc(100% + (var(--page-gutter) * 2));
  margin-left: calc(var(--page-gutter) * -1);
  margin-right: calc(var(--page-gutter) * -1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand-block h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
}

.footer-brand-block p,
.footer-contact p,
.footer-bottom p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.footer-nav a,
.footer-contact a {
  color: #f8f3e7;
  text-decoration: none;
}

.footer-nav a {
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-nav a:hover {
  transform: scale(1.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 243, 231, 0.28);
}

@media (max-width: 1200px) {
  .nav-menu {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-brand,
  .nav-links,
  .mail {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    padding: 18px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-subtitle,
  .menu-item,
  .mail {
    font-size: 16px;
  }

  .community-intro,
  .community-card,
  dialog {
    padding: 28px 20px;
  }

  .community-help-button {
    right: 32px;
    bottom: 95px;
  }

  .back-to-top {
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .back-to-top::before {
    top: 16px;
    width: 12px;
    height: 12px;
    border-top-width: 3px;
    border-left-width: 3px;
  }

  .back-to-top::after {
    top: 23px;
    width: 3px;
    height: 16px;
  }

  .site-footer {
    padding: 28px 20px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .community-card {
    width: 100%;
    text-align: left;
    padding: 18px 18px 78px;
  }

  .community-card-header {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .community-card-header img {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .community-card-header a {
    font-size: 19px;
    line-height: 1.2;
  }

  .address-line {
    margin-top: 0;
    padding-top: 12px;
  }

  .address-line span,
  .address-line p1 {
    display: block;
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
  }
}

iframe {
  margin-left: 0;
  max-width: 100%;
}


.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #ffffff;
  padding: 40px 20px;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-10px);
}

/* Число статистики */
.stat-number {
  font-size: 72pt;
  font-weight: 700;
  color: #5495cf;
  line-height: 1;
  margin-bottom: 15px;
  font-family: 'GT Eesti Pro Display', sans-serif;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(212, 100, 114, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: #ff8d5c;
  transform: scale(1.1);
}

/* Подпись */
.stat-item div:last-child {
  font-size: 16pt;
  color: #2c3e4e;
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .nav-menu {
    padding: 10px 12px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .brand-text {
    min-width: 0;
    margin-left: 0;
  }

  .brand-name,
  .brand-subtitle {
    white-space: normal;
  }

  .brand-name {
    font-size: clamp(18px, 5vw, 24px);
  }

  .brand-subtitle {
    font-size: clamp(12px, 3vw, 14px);
  }

  .nav-menu .dropdown ul li ul {
    width: min(280px, calc(100vw - 24px));
    margin-top: 12px;
  }

  .centers-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 12px 0;
  }

  .map-section,
  .cards-section {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .logo img {
    width: 52px;
    height: 52px;
  }

  .text-overlay h1 {
    font-size: clamp(28px, 10vw, 52px);
  }

  dialog {
    width: min(92vw, 700px);
    margin-top: 16px;
    padding: 0;
    position: relative;
  }

  .dialog-close,
  .upload-btn-nomer-pdf {
    position: absolute;
    float: none;
    top: 16px;
    right: 16px;
    left: auto;
    width: 44px;
    height: 44px;
    z-index: 3;
  }

  .upload-btn-nomer-pdf {
    top: 72px;
  }

  .community-guide {
    padding: 28px 20px 30px;
  }

  .community-guide-icon {
    margin-bottom: 14px;
    font-size: 58px;
  }

  .community-guide h3 {
    margin: 0 0 28px;
    padding: 0 36px;
    font-size: clamp(28px, 7.6vw, 48px);
    line-height: 1.06;
  }

  .community-guide-list {
    gap: 18px;
  }

  .community-guide-list p {
    font-size: clamp(17px, 4.9vw, 21px);
    line-height: 1.3;
  }

  .community-guide-note {
    margin: 34px 0 16px;
    font-size: clamp(17px, 4.6vw, 20px);
  }

  .community-guide h4 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.12;
  }

  iframe,
  .centers-map {
    width: 100%;
    max-width: 100%;
  }

  .stats {
    padding: 24px 16px;
    gap: 16px;
  }

  .stat-item {
    flex: 1 1 140px;
  }

  .stat-number {
    font-size: clamp(40px, 12vw, 72px);
  }

  .stat-item div:last-child {
    font-size: 15px;
  }

  .back-to-top,
  .community-help-button {
    right: 12px;
    width: 48px;
    height: 48px;
  }

  .back-to-top {
    bottom: 12px;
  }

  .community-help-button {
    bottom: 68px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    padding: 8px 10px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .text-overlay h1 {
    font-size: 24px;
  }

  .community-card {
    padding: 18px 18px 68px;
  }

  .community-card-header a {
    font-size: 18px;
  }

  .address-line span,
  .address-line p1 {
    font-size: 14px;
    line-height: 1.4;
  }

  dialog {
    width: calc(100vw - 16px);
    margin-top: 6px;
    padding: 0;
    border-radius: 26px;
  }

  .dialog-close,
  .upload-btn-nomer-pdf {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .upload-btn-nomer-pdf {
    top: 66px;
  }

  .community-guide {
    padding: 24px 18px 26px;
  }

  .community-guide h3 {
    margin-bottom: 24px;
    padding: 0 34px;
    font-size: clamp(26px, 8.4vw, 40px);
  }

  .community-guide-list {
    gap: 16px;
  }

  .community-guide-list p {
    font-size: 16px;
    line-height: 1.32;
  }

  .community-guide-note {
    margin-top: 28px;
    font-size: 16px;
  }

  .community-guide h4 {
    font-size: 23px;
  }
}

@media (max-width: 375px) {
  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .community-card {
    padding: 16px 14px 64px;
  }

  .community-card-header img {
    width: 58px;
    height: 58px;
  }

  .card-go-btn {
    min-width: 112px;
    font-size: 14px;
    padding: 10px 14px;
  }
}