.elementor .e-218af25-f8b226a{justify-content:center;.ty-event {
  --primary: #07899d;
  --primary-2: #0a9aae;
  --primary-dark: #056273;
  --primary-deep: #064e5c;

  --gold: #f9b94c;
  --gold-hover: #ffc965;
  --gold-soft: #fff5df;

  --text: #123943;
  --muted: #657b81;

  --soft: #edf8fa;
  --soft-2: #f7fbfc;
  --border: #d9e9ec;

  --white: #fff;

  --radius-lg: 28px;
  --radius-md: 18px;

  --shadow:
      0 22px 55px rgba(5, 98, 115, .11);

  width: 100%;
  color: var(--text);
  font-family: inherit;
  line-height: 1.65;
}

.ty-event,
.ty-event * {
  box-sizing: border-box;
}

.ty-event img {
  max-width: 100%;
}

.ty-event a {
  text-decoration: none;
}

.ty-event-wrap {
  max-width: 1180px;
  margin: 0 auto;
}


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

.ty-event-hero {
  position: relative;
  overflow: hidden;

  padding: clamp(34px, 5vw, 64px);

  border-radius: var(--radius-lg);

  background:
      radial-gradient(
          circle at 96% 3%,
          rgba(255,255,255,.14),
          transparent 24%
      ),
      radial-gradient(
          circle at 5% 100%,
          rgba(249,185,76,.12),
          transparent 30%
      ),
      linear-gradient(
          125deg,
          var(--primary-deep) 0%,
          var(--primary) 58%,
          var(--primary-2) 100%
      );

  box-shadow: var(--shadow);
}

.ty-event-hero:before {
  content: "";

  position: absolute;

  width: 290px;
  height: 290px;

  right: -130px;
  top: -155px;

  border: 44px solid rgba(255,255,255,.055);

  border-radius: 50%;
}

.ty-event-hero:after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: -90px;
  bottom: -115px;

  border-radius: 50%;

  background: rgba(255,255,255,.055);
}

.ty-event-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
      minmax(0, 1fr)
      minmax(250px, 330px);

  gap: clamp(35px, 6vw, 70px);

  align-items: center;
}


/* =========================================================
 LOGO / BRAND
========================================================= */

.ty-event-brand {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 26px;
}

.ty-event-logo {
  width: 76px;
  height: 76px;

  flex: 0 0 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5px;

  border-radius: 50%;

  background: #fff;

  box-shadow:
      0 8px 25px rgba(0,0,0,.12);
}

.ty-event-logo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 50%;
}

.ty-event-brand-text span {
  display: block;

  color: rgba(255,255,255,.68);

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .12em;
}

.ty-event-brand-text strong {
  display: block;

  margin-top: 2px;

  color: #fff;

  font-size: 17px;

  font-weight: 850;
}


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

.ty-event-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 11px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 850;

  letter-spacing: .09em;

  text-transform: uppercase;
}

.ty-event-eyebrow:before {
  content: "";

  width: 21px;
  height: 2px;

  border-radius: 10px;

  background: var(--gold);
}

.ty-event-title {
  max-width: 720px;

  margin: 0;

  color: #fff;

  font-size: clamp(37px, 5.2vw, 65px);

  line-height: 1.03;

  letter-spacing: -.04em;

  font-weight: 900;
}

.ty-event-title span {
  display: block;
}

.ty-event-title em {
  display: block;

  margin-top: 8px;

  color: var(--gold);

  font-style: normal;

  font-size: .48em;

  line-height: 1.25;

  letter-spacing: -.01em;
}

.ty-event-intro {
  max-width: 700px;

  margin: 22px 0 0;

  color: rgba(255,255,255,.84);

  font-size: clamp(15px, 1.5vw, 17px);

  line-height: 1.8;
}

.ty-event-intro strong {
  color: #fff;
}


/* =========================================================
 CTA
========================================================= */

.ty-event-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 11px;

  margin-top: 26px;
}

.ty-event-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 48px;

  padding: 12px 19px;

  border-radius: 10px;

  font-size: 14px;

  font-weight: 850;

  transition:
      .2s transform,
      .2s background,
      .2s box-shadow;
}

.ty-event-btn:hover {
  transform: translateY(-2px);
}

.ty-event-btn-primary {
  color: var(--primary-deep) !important;

  background: var(--gold);

  box-shadow:
      0 12px 28px rgba(60,40,0,.15);
}

.ty-event-btn-primary:hover {
  background: var(--gold-hover);
}

.ty-event-btn-secondary {
  color: #fff !important;

  border: 1px solid rgba(255,255,255,.25);

  background: rgba(255,255,255,.08);
}

.ty-event-btn-secondary:hover {
  background: rgba(255,255,255,.14);
}

.ty-event-btn svg {
  width: 17px;
  height: 17px;

  flex: 0 0 auto;
}


/* =========================================================
 DATE CARD
========================================================= */

.ty-event-date {
  position: relative;

  overflow: hidden;

  padding: 27px 25px;

  border-radius: 21px;

  background: rgba(255,255,255,.98);

  box-shadow:
      0 22px 45px rgba(2,60,72,.22);
}

.ty-event-date:before {
  content: "";

  position: absolute;

  right: -35px;
  top: -35px;

  width: 110px;
  height: 110px;

  border-radius: 50%;

  background: var(--gold-soft);
}

.ty-event-date-label {
  position: relative;

  color: var(--primary);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.ty-event-date-number {
  position: relative;

  margin: 8px 0 0;

  color: var(--primary);

  font-size: 72px;

  font-weight: 900;

  line-height: .9;

  letter-spacing: -.075em;
}

.ty-event-date-month {
  margin-top: 9px;

  color: #e79d20;

  font-size: 17px;

  font-weight: 900;
}

.ty-event-date-year {
  margin-top: 2px;

  color: var(--muted);

  font-size: 12px;

  font-weight: 650;
}

.ty-event-date-divider {
  margin: 21px 0;

  height: 1px;

  background: var(--border);
}

.ty-event-mini {
  display: grid;

  grid-template-columns: 38px 1fr;

  gap: 11px;

  align-items: center;
}

.ty-event-mini + .ty-event-mini {
  margin-top: 14px;
}

.ty-event-mini-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  color: var(--primary);

  border-radius: 10px;

  background: var(--soft);
}

.ty-event-mini-icon svg {
  width: 18px;
  height: 18px;
}

.ty-event-mini small {
  display: block;

  color: var(--muted);

  font-size: 9px;

  font-weight: 850;

  text-transform: uppercase;

  letter-spacing: .07em;
}

.ty-event-mini strong {
  display: block;

  margin-top: 1px;

  color: var(--text);

  font-size: 13px;

  line-height: 1.4;
}


/* =========================================================
 QUICK BAR
========================================================= */

.ty-event-quickbar {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns:
      .8fr 1.2fr 1fr;

  margin:
      clamp(22px, 3vw, 30px)
      auto 0;

  border: 1px solid var(--border);

  border-radius: 17px;

  background: #fff;

  box-shadow:
      0 15px 38px rgba(7,107,125,.07);
}

.ty-event-quick-item {
  display: flex;

  gap: 13px;

  align-items: center;

  padding: 20px 23px;
}

.ty-event-quick-item + .ty-event-quick-item {
  border-left: 1px solid var(--border);
}

.ty-event-quick-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  border-radius: 11px;

  background: var(--soft);

  color: var(--primary);
}

.ty-event-quick-icon svg {
  width: 19px;
  height: 19px;
}

.ty-event-quick-item small {
  display: block;

  margin-bottom: 2px;

  color: var(--muted);

  font-size: 10px;

  font-weight: 850;

  letter-spacing: .06em;

  text-transform: uppercase;
}

.ty-event-quick-item strong {
  display: block;

  color: var(--text);

  font-size: 14px;

  line-height: 1.45;
}


/* =========================================================
 CONTENT AREA
========================================================= */

.ty-event-content {
  padding-top: clamp(54px, 7vw, 82px);
}

.ty-event-content-grid {
  display: grid;

  grid-template-columns:
      minmax(0, 1.45fr)
      minmax(280px, .55fr);

  gap: clamp(35px, 6vw, 70px);

  align-items: start;
}


/* =========================================================
 INVITATION COPY
========================================================= */

.ty-event-copy-label {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 10px;

  color: var(--primary);

  font-size: 11px;

  font-weight: 900;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.ty-event-copy-label:before {
  content: "";

  width: 24px;
  height: 2px;

  border-radius: 10px;

  background: var(--gold);
}

.ty-event-copy h2 {
  max-width: 700px;

  margin: 0;

  color: var(--primary-deep);

  font-size: clamp(28px, 4vw, 42px);

  line-height: 1.18;

  letter-spacing: -.035em;

  font-weight: 900;
}

.ty-event-copy-intro {
  margin: 17px 0 0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.9;
}

.ty-event-copy-intro strong {
  color: var(--text);
}


/* =========================================================
 VALUES
========================================================= */

.ty-event-values {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 25px;
}

.ty-event-value {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 9px 12px;

  border-radius: 999px;

  color: var(--primary-dark);

  background: var(--soft);

  font-size: 12px;

  font-weight: 800;
}

.ty-event-value svg {
  width: 16px;
  height: 16px;
}


/* =========================================================
 LOCATION CARD
========================================================= */

.ty-event-location {
  padding: 25px;

  border: 1px solid var(--border);

  border-radius: 20px;

  background: var(--soft-2);
}

.ty-event-location-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  margin-bottom: 16px;

  border-radius: 13px;

  color: var(--primary);

  background: #fff;

  box-shadow:
      0 8px 22px rgba(7,107,125,.08);
}

.ty-event-location-icon svg {
  width: 21px;
  height: 21px;
}

.ty-event-location small {
  display: block;

  color: var(--primary);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.ty-event-location h3 {
  margin: 6px 0 0;

  color: var(--text);

  font-size: 20px;

  line-height: 1.35;

  font-weight: 850;
}

.ty-event-location p {
  margin: 9px 0 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}

.ty-event-location .ty-event-btn {
  width: 100%;

  margin-top: 18px;
}


/* =========================================================
 INVITATION QUOTE
========================================================= */

.ty-event-message {
  position: relative;

  overflow: hidden;

  margin-top: clamp(48px, 6vw, 70px);

  padding: clamp(30px, 5vw, 48px);

  border: 1px solid var(--border);

  border-radius: 23px;

  background:
      linear-gradient(
          120deg,
          #f2fafb 0%,
          #fff 55%,
          #fff9ec 100%
      );
}

.ty-event-message:after {
  content: "“";

  position: absolute;

  top: -8px;
  right: 25px;

  color: rgba(249,185,76,.2);

  font-family: Georgia, serif;

  font-size: 130px;

  line-height: 1;
}

.ty-event-message-inner {
  position: relative;
  z-index: 2;

  max-width: 860px;
}

.ty-event-message h3 {
  margin: 0;

  color: var(--primary-deep);

  font-size: clamp(23px,3.2vw,34px);

  line-height: 1.3;

  letter-spacing: -.025em;

  font-weight: 900;
}

.ty-event-message p {
  max-width: 820px;

  margin: 14px 0 0;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.85;
}


/* =========================================================
 FINAL CTA
========================================================= */

.ty-event-final {
  position: relative;

  overflow: hidden;

  margin-top: clamp(55px,7vw,82px);

  padding: clamp(38px,6vw,60px);

  border-radius: 26px;

  text-align: center;

  background:
      radial-gradient(
          circle at 100% 0,
          rgba(249,185,76,.17),
          transparent 28%
      ),
      linear-gradient(
          125deg,
          var(--primary-deep),
          var(--primary)
      );
}

.ty-event-final:before {
  content: "";

  position: absolute;

  width: 210px;
  height: 210px;

  left: -100px;
  bottom: -125px;

  border-radius: 50%;

  border: 36px solid rgba(255,255,255,.045);
}

.ty-event-final-inner {
  position: relative;

  z-index: 2;

  max-width: 720px;

  margin: 0 auto;
}

.ty-event-final-mark {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin: 0 auto 17px;

  border-radius: 50%;

  color: var(--primary-deep);

  background: var(--gold);
}

.ty-event-final-mark svg {
  width: 23px;
  height: 23px;
}

.ty-event-final h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(29px,4.3vw,43px);

  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -.035em;
}

.ty-event-final p {
  max-width: 600px;

  margin: 14px auto 0;

  color: rgba(255,255,255,.82);

  font-size: 15px;

  line-height: 1.8;
}

.ty-event-final .ty-event-btn {
  margin-top: 22px;
}

.ty-event-signature {
  margin-top: 23px;

  color: var(--gold);

  font-size: 11px;

  font-weight: 900;

  letter-spacing: .13em;

  text-transform: uppercase;
}


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

@media (max-width: 900px) {

  .ty-event-hero-grid,
  .ty-event-content-grid {
      grid-template-columns: 1fr;
  }

  .ty-event-date {
      max-width: 480px;
  }

  .ty-event-quickbar {
      grid-template-columns: 1fr 1fr;
  }

  .ty-event-quick-item:nth-child(3) {
      grid-column: 1 / -1;

      border-left: 0;

      border-top: 1px solid var(--border);
  }
}


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

@media (max-width: 680px) {

  .ty-event-hero {
      padding: 27px 20px 24px;

      border-radius: 20px;
  }

  .ty-event-brand {
      margin-bottom: 21px;
  }

  .ty-event-logo {
      width: 64px;
      height: 64px;

      flex-basis: 64px;
  }

  .ty-event-brand-text strong {
      font-size: 15px;
  }

  .ty-event-title {
      font-size: clamp(36px, 11vw, 50px);
  }

  .ty-event-title em {
      font-size: .48em;
  }

  .ty-event-actions {
      display: grid;

      grid-template-columns: 1fr;
  }

  .ty-event-btn {
      width: 100%;
  }

  .ty-event-date {
      padding: 23px;

      width: 100%;
  }

  .ty-event-date-number {
      font-size: 64px;
  }

  .ty-event-quickbar {
      grid-template-columns: 1fr;

      margin-top: 16px;
  }

  .ty-event-quick-item {
      padding: 17px 18px;
  }

  .ty-event-quick-item + .ty-event-quick-item,
  .ty-event-quick-item:nth-child(3) {
      grid-column: auto;

      border-left: 0;

      border-top: 1px solid var(--border);
  }

  .ty-event-content {
      padding-top: 48px;
  }

  .ty-event-copy h2 {
      font-size: 30px;
  }

  .ty-event-values {
      display: grid;

      grid-template-columns: 1fr;
  }

  .ty-event-value {
      border-radius: 12px;
  }

  .ty-event-message {
      margin-top: 45px;

      padding: 27px 21px;
  }

  .ty-event-message:after {
      right: 3px;

      font-size: 90px;
  }

  .ty-event-final {
      margin-top: 48px;

      padding: 36px 22px;

      border-radius: 21px;
  }
}\n}