/*
Theme Name: ISCoS 2027
Theme URI: https://iscosmeetings2027.org/
Author: Association Services Ltd
Description: Lightweight custom WordPress theme for the 66th ISCoS Annual Scientific Meeting, Basel, 6–9 October 2027.
Version: 0.2.1
Text Domain: iscos-2027
*/

:root {
  --iscos-red: #D52D27;
  --iscos-grey: #808285;
  --iscos-blue: #42B9E6;
  --iscos-light: #DFDFDF;
  --iscos-black: #000000;
  --iscos-white: #FFFFFF;
  --accent-gold: #E3BE68;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-brand: "Tw Cen MT", "Trebuchet MS", Arial, sans-serif;

  --text-xs: 0.76rem;
  --text-sm: 0.88rem;
  --text-base: 1rem;
  --text-lead: clamp(1rem, 1.25vw, 1.12rem);

  --h3: clamp(1.15rem, 1.5vw, 1.35rem);
  --h2: clamp(1.5rem, 2.1vw, 2rem);
  --h1: clamp(1.95rem, 3.1vw, 2.8rem);

  --radius-sm: 6px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-brand);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--iscos-black);
  background: var(--iscos-white);
}

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

a {
  color: inherit;
}

.iscos-container {
  width: min(
    calc(100% - (2 * var(--gutter))),
    var(--container)
  );
  margin-inline: auto;
}


/* =================================================
   HEADER
================================================= */

.site-header {
  padding: 17px 0;
  background: var(--iscos-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.home .site-header {
  display: none;
}


/* =================================================
   HERO
================================================= */

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;

  background:
    linear-gradient(
      90deg,
      rgba(8, 20, 35, 0.84) 0%,
      rgba(8, 20, 35, 0.70) 30%,
      rgba(8, 20, 35, 0.44) 52%,
      rgba(8, 20, 35, 0.14) 76%,
      rgba(8, 20, 35, 0.04) 100%
    ),
    url("https://iscosmeetings2027.org/wp-content/uploads/2026/09/iscos-2027-basel-hero.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--iscos-white);
}

.hero__inner {
  width: 100%;
  max-width: 630px;
  position: relative;
  z-index: 2;
}

.hero__branding-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 22px;
}

.hero__event-logo {
  display: block;
  width: 126px;
  height: 126px;
  flex: 0 0 126px;
  object-fit: contain;
}

.hero__eyebrow {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  color: var(--accent-gold);
  white-space: nowrap;
}

.hero h1 {
  margin: 0;
  max-width: 600px;
  font-size: var(--h1);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.hero__meta {
  margin: 20px 0 0;
  font-size: var(--text-lead);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.93);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__society-logo {
  position: absolute;
  right: clamp(30px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 46px);
  z-index: 2;
  pointer-events: none;
}

.hero__society-logo img {
  display: block;
  width: clamp(205px, 15vw, 245px);
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.38));
}


/* =================================================
   BUTTONS
================================================= */

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--light {
  background: var(--iscos-white);
  color: var(--iscos-red);
  box-shadow: var(--shadow-soft);
}

.button--light:hover {
  background: #f7f7f7;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--iscos-white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--iscos-white);
}

.updates-button {
  margin-top: 10px;
  background: var(--iscos-red);
  color: #ffffff;
  border-color: var(--iscos-red);
}

.updates-button:hover {
  background: #bd2722;
  border-color: #bd2722;
}


/* =================================================
   MAIN CONTENT
================================================= */

.content-section {
  padding: 66px 0;
}

.content-section h2 {
  margin: 0 0 16px;
  max-width: 820px;
  font-size: var(--h2);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.004em;
}

.content-section h3 {
  margin: 0 0 12px;
  font-size: var(--h3);
  font-weight: 500;
  line-height: 1.24;
}

.content-section p {
  max-width: 820px;
  margin-top: 0;
  font-size: var(--text-base);
  line-height: 1.72;
}

.notice {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--iscos-blue);
  background: #f6f6f6;
  border-radius:
    0
    var(--radius-sm)
    var(--radius-sm)
    0;
}


/* =================================================
   FOOTER
================================================= */

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
  font-size: var(--text-sm);
}


/* =================================================
   MODAL SHARED
================================================= */

body.modal-open {
  overflow: hidden;
}


/* =================================================
   CALENDAR MODAL
================================================= */

.calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.calendar-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.calendar-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 25, 0.78);
  backdrop-filter: blur(7px);
}

.calendar-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(10px);
  transition: transform 180ms ease;
}

.calendar-modal.is-open
.calendar-modal__dialog {
  transform: translateY(0);
}

.calendar-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.calendar-modal__visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 34px 38px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;

  background-image:
    url("https://iscosmeetings2027.org/wp-content/uploads/2026/09/iscos-2027-basel-hero.jpg");

  background-size: cover;
  background-position: center 48%;
}

.calendar-modal__visual-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 19, 33, 0.83) 0%,
      rgba(7, 19, 33, 0.54) 50%,
      rgba(7, 19, 33, 0.10) 100%
    );
}

.calendar-modal__roundel {
  position: absolute;
  top: 26px;
  left: 36px;
  z-index: 2;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.calendar-modal__visual-copy {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.calendar-modal__visual-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.calendar-modal__visual-copy strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.calendar-modal__visual-copy small {
  display: block;
  margin-top: 13px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.calendar-modal__content {
  padding: 34px 38px 38px;
}

.calendar-modal__kicker {
  margin: 0 0 6px;
  color: var(--iscos-red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-modal__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.calendar-modal__intro {
  max-width: 660px;
  margin: 0 0 24px;
  color: #454545;
  line-height: 1.65;
}

.calendar-modal__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 27px;
}

.calendar-modal__details div {
  padding: 15px 17px;
  background: #f5f6f7;
  border-radius: 8px;
}

.calendar-modal__details span {
  display: block;
  margin-bottom: 3px;
  color: #777;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-modal__details strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
}

.calendar-modal__choose {
  margin: 0 0 12px;
  font-weight: 600;
}

.calendar-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.calendar-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  background: #ffffff;
  color: #171717;
  text-align: left;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.calendar-option:hover {
  border-color: var(--iscos-blue);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.calendar-option__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f1f3f4;
  color: var(--iscos-red);
  font-size: 0.92rem;
  font-weight: 700;
}

.calendar-option strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.calendar-option small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 0.75rem;
}

.calendar-modal__footnote {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid #eeeeee;
  color: #6a6a6a;
  font-size: 0.78rem;
  line-height: 1.55;
}

.calendar-modal__footnote a {
  color: var(--iscos-red);
  text-decoration: underline;
}


/* =================================================
   SUBSCRIBE MODAL
================================================= */

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.subscribe-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 25, 0.80);
  backdrop-filter: blur(7px);
}

.subscribe-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 850px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(10px);
  transition: transform 180ms ease;
}

.subscribe-modal.is-open
.subscribe-modal__dialog {
  transform: translateY(0);
}

.subscribe-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.subscribe-modal__visual {
  position: relative;
  min-height: 245px;
  display: flex;
  align-items: flex-end;
  padding: 32px 38px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;

  background-image:
    url("https://iscosmeetings2027.org/wp-content/uploads/2026/09/iscos-2027-basel-hero.jpg");

  background-size: cover;
  background-position: center 48%;
}

.subscribe-modal__visual-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 19, 33, 0.84) 0%,
      rgba(7, 19, 33, 0.55) 50%,
      rgba(7, 19, 33, 0.12) 100%
    );
}

.subscribe-modal__roundel {
  position: absolute;
  top: 25px;
  left: 36px;
  z-index: 2;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.subscribe-modal__visual-copy {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.subscribe-modal__visual-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.subscribe-modal__visual-copy strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.subscribe-modal__visual-copy small {
  display: block;
  margin-top: 13px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.subscribe-modal__content {
  padding: 32px 38px 38px;
}

.subscribe-modal__kicker {
  margin: 0 0 6px;
  color: var(--iscos-red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subscribe-modal__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.subscribe-modal__intro {
  max-width: 680px;
  margin: 0 0 24px;
  color: #4b4b4b;
  line-height: 1.65;
}


/* Subscribe form */

.subscribe-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subscribe-form__field {
  margin-bottom: 16px;
}

.subscribe-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #252525;
}

.subscribe-form__field label span {
  color: var(--iscos-red);
}

.subscribe-form__field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfd4d8;
  border-radius: 6px;
  background: #ffffff;
  font: inherit;
  color: #222;
  outline: none;

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.subscribe-form__field input:focus {
  border-color: var(--iscos-blue);

  box-shadow:
    0 0 0 3px
    rgba(66, 185, 230, 0.16);
}

.subscribe-form__consent {
  margin-top: 3px;
  padding: 16px 17px;
  background: #f5f6f7;
  border-radius: 8px;
}

.subscribe-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  color: #333;
  font-size: 0.88rem;
  line-height: 1.5;
}

.subscribe-form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: var(--iscos-red);
}

.subscribe-form__privacy {
  margin: 15px 0 0;
  color: #6b6b6b;
  font-size: 0.76rem;
  line-height: 1.55;
}

.subscribe-form__privacy a {
  color: var(--iscos-red);
  text-decoration: underline;
}

.subscribe-form__honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subscribe-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 21px;
  padding: 0 24px;
  border: 1px solid var(--iscos-red);
  border-radius: 6px;
  background: var(--iscos-red);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;

  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.subscribe-form__submit:hover {
  background: #bd2722;
  border-color: #bd2722;
  transform: translateY(-1px);
}

.subscribe-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.subscribe-form__note {
  margin: 11px 0 0;
  color: #777;
  font-size: 0.75rem;
}


/* Error */

.subscribe-form__error {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--iscos-red);
  border-radius: 0 6px 6px 0;
  background: #fff3f2;
  color: #343434;
  font-size: 0.82rem;
  line-height: 1.5;
}

.subscribe-form__error strong,
.subscribe-form__error span {
  display: block;
}

.subscribe-form__error span {
  margin-top: 3px;
}


/* Success */

.subscribe-success__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #eef8f0;
  color: #26883a;
  font-size: 1.6rem;
  font-weight: 700;
}

.subscribe-success h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
}

.subscribe-success > p:not(.subscribe-modal__kicker) {
  max-width: 650px;
  color: #4b4b4b;
  line-height: 1.65;
}

.subscribe-success__meeting {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 17px 18px;
  border-radius: 9px;
  background: #f5f6f7;
}

.subscribe-success__meeting img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 58px;
}

.subscribe-success__meeting strong {
  display: block;
  font-size: 0.93rem;
}

.subscribe-success__meeting span {
  display: block;
  margin-top: 3px;
  color: #6e6e6e;
  font-size: 0.8rem;
}

.subscribe-success__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 24px;
  border: 1px solid var(--iscos-red);
  border-radius: 6px;
  background: var(--iscos-red);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}


/* =================================================
   TABLET
================================================= */

@media (max-width: 900px) {

  .hero {
    min-height: 640px;
    padding: 70px 0 66px;

    background:
      linear-gradient(
        90deg,
        rgba(8, 20, 35, 0.80) 0%,
        rgba(8, 20, 35, 0.60) 50%,
        rgba(8, 20, 35, 0.20) 100%
      ),
      url("https://iscosmeetings2027.org/wp-content/uploads/2026/09/iscos-2027-basel-hero.jpg");

    background-size: cover;
    background-position: 58% center;
  }

  .hero__inner {
    max-width: 560px;
  }

  .hero__branding-row {
    gap: 20px;
  }

  .hero__event-logo {
    width: 106px;
    height: 106px;
    flex-basis: 106px;
  }

  .hero__eyebrow {
    font-size: 1rem;
    letter-spacing: 0.22em;
  }

  .hero__society-logo {
    right: 24px;
    bottom: 24px;
  }

  .hero__society-logo img {
    width: 185px;
  }

}


/* =================================================
   MOBILE
================================================= */

@media (max-width: 700px) {

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

  .site-title {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 620px;
    align-items: center;
    padding: 54px 0 110px;

    background:
      linear-gradient(
        180deg,
        rgba(8, 20, 35, 0.54) 0%,
        rgba(8, 20, 35, 0.66) 46%,
        rgba(8, 20, 35, 0.84) 100%
      ),
      url("https://iscosmeetings2027.org/wp-content/uploads/2026/09/iscos-2027-basel-hero.jpg");

    background-size: cover;
    background-position: 62% center;
  }

  .hero__inner {
    max-width: 100%;
  }

  .hero__branding-row {
    gap: 14px;
    margin-bottom: 18px;
  }

  .hero__event-logo {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .hero__eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7.8vw, 2.45rem);
    line-height: 1.14;
  }

  .hero__meta {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    font-size: 0.88rem;
  }

  .hero__society-logo {
    right: 18px;
    bottom: 18px;
  }

  .hero__society-logo img {
    width: 142px;
  }

  .content-section {
    padding: 50px 0;
  }

}


/* =================================================
   MODALS MOBILE
================================================= */

@media (max-width: 650px) {

  .calendar-modal,
  .subscribe-modal {
    padding: 12px;
  }

  .calendar-modal__dialog,
  .subscribe-modal__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 12px;
  }

  .calendar-modal__visual,
  .subscribe-modal__visual {
    min-height: 205px;
    padding: 26px 22px;
    border-radius: 12px 12px 0 0;
  }

  .calendar-modal__roundel,
  .subscribe-modal__roundel {
    top: 20px;
    left: 22px;
    width: 64px;
    height: 64px;
  }

  .calendar-modal__content,
  .subscribe-modal__content {
    padding: 25px 22px 28px;
  }

  .calendar-modal__details,
  .calendar-options,
  .subscribe-form__row {
    grid-template-columns: 1fr;
  }

  .subscribe-form__submit,
  .subscribe-success__close {
    width: 100%;
  }

}