/* ============================================================
   WTC Page Design System — based on Semrush staging site
   Extracted from wtc.html / wtc_files/
   ============================================================ */


/* ============================================================
   CUSTOM FONTS
   ============================================================ */

/* Lazzer — primary brand font (used in header, footer, body) */
@font-face {
  font-family: 'Lazzer';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/thin.woff2') format('woff2');
}
@font-face {
  font-family: 'Lazzer';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/light.woff2') format('woff2');
}
@font-face {
  font-family: 'Lazzer';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lazzer';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Lazzer';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Lazzer';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Lazzer';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('wtc_files/heavy.woff2') format('woff2');
}


/* ============================================================
   DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* --- Color palette --- */
  --color-black:          #181e15;   /* near-black primary text */
  --color-white:          #ffffff;
  --color-lavender:       #c190ff;   /* primary brand accent / CTA */
  --color-lavender-dark:  #b072ff;   /* hover state for lavender */
  --color-mint:           #dceeeb;   /* light green-teal background */
  --color-mint-dark:      #bfddda;
  --color-dark-grey:      #6c6e79;   /* secondary text / icons */
  --color-mid-grey:       #2d2e33;   /* body copy on white */
  --color-light-grey:     #d1d2d5;   /* borders, dividers */
  --color-bg-subtle:      #f4f5f9;   /* hover backgrounds */
  --color-blue-link:      #0071bc;   /* in-text links */
  --color-focus-ring:     #008ff880; /* keyboard focus outline */
  --color-green-cta:      #4fae33;   /* legacy green CTA button */
  --color-green-cta-dark: #1d9c00;

  /* --- Typography --- */
  --font-primary:   'Lazzer', 'Inter', sans-serif;
  --font-fallback:  'Inter', sans-serif;

  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;
  --text-4xl:  48px;

  --leading-tight:  1;
  --leading-snug:   1.2;
  --leading-normal: 1.4;
  --leading-relaxed:1.5;

  --tracking-tight:   -0.32px;  /* used on 16px semibold */
  --tracking-tighter: -1.28px;  /* used on 32px headings */
  --tracking-wide:    0.28px;   /* used on uppercase labels */

  /* --- Spacing --- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 48px;
  --space-9: 60px;
  --space-10:80px;

  /* --- Border radius --- */
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl:32px;
  --radius-pill:100px;

  /* --- Shadows --- */
  --shadow-dropdown: 0 0 30px 0 rgba(0, 0, 0, 0.20);
  --shadow-card:     0 1px 12px rgba(25, 27, 35, 0.15);
  --shadow-focus:    0 0 0 3px var(--color-focus-ring);

  /* --- Layout / Z-index --- */
  --z-header:   500;
  --z-dropdown: 600;
  --z-modal:    10010;
  --z-toast:    9999;

  /* --- Header --- */
  --header-height:        84px;
  --underheader-height:   calc(100vh - var(--header-height));

  /* --- Max widths --- */
  --container-outer: 1170px;
  --container-wide:  1440px;
}

@media (max-width: 1023px) {
  :root {
    --header-height: 70px;
  }
}


/* ============================================================
   RESET / BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid var(--color-light-grey);
}

html {
  font-size: 12px;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-fallback);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  min-height: 100%;
  min-width: 320px;
}

@media (max-width: 767px) {
  body {
    font-size: var(--text-base);
  }
}

a {
  color: var(--color-blue-link);
}

/* Common reset for interactive elements */
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: none;
}


/* ============================================================
   PAGE LAYOUT GRID
   ============================================================ */

.srf-layout {
  display: grid;
  grid-template-areas:
    "notification notification"
    "header       header"
    "sidebar      body"
    "footer       footer";
  grid-template-columns: auto 1fr;
  grid-template-rows: min-content auto 1fr max-content;
  min-height: 100vh;
}

.srf-layout__notification { grid-area: notification; }
.srf-layout__header       { grid-area: header; font-family: var(--font-primary); }
.srf-layout__sidebar      { grid-area: sidebar; }
.srf-layout__body         { grid-area: body; font-family: var(--font-fallback); max-width: 100%; min-width: 1px; }
.srf-layout__footer       { grid-area: footer; font-family: var(--font-primary); }

.srf-layout-main-content-wrapper {
  display: grid;
  grid-area: body;
  grid-template-areas: "body" "footer";
  grid-template-rows: 1fr max-content;
}

@media (orientation: landscape) {
  .srf-layout__body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}


/* ============================================================
   CONTAINER
   ============================================================ */

.s-container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

.s-container.-outer {
  width: var(--container-outer);
}

@media (max-width: 1200px) {
  .s-container.-outer {
    width: 970px;
  }
}

.container-wide {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--container-wide);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .container-wide {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.heading-xl {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: var(--tracking-tighter);
  line-height: 1;
  text-transform: uppercase;
}

.heading-lg {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: var(--tracking-tighter);
  line-height: 1;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.96px;
  line-height: var(--leading-snug);
}

.heading-sm {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.36px;
  line-height: var(--leading-normal);
}

.label-uppercase {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.body-md {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-relaxed);
}

.body-sm {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: var(--leading-normal);
}

.text-muted {
  color: var(--color-dark-grey);
}

.text-mid {
  color: var(--color-mid-grey);
}


/* ============================================================
   HEADER  (srf-header-2026)
   ============================================================ */

.srf-layout__header {
  container-type: inline-size;
  display: contents;
}

/* Sticky header bar */
#srf-header {
  align-items: center;
  background-color: var(--color-white);
  block-size: var(--header-height);
  contain: paint layout style size;
  display: flex;
  gap: 16px;
  grid-area: header;
  inset-block-start: 0;
  padding-inline: 24px;
  position: sticky;
  will-change: background-color;
  z-index: var(--z-header);
}

@media (max-width: 1023px) {
  #srf-header {
    padding-inline: 16px;
  }
}

/* Logo */
.srf-header__logo {
  block-size: 22px;
  inline-size: 151px;
  display: block;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1023px) {
  .srf-header__logo {
    block-size: 17px;
    inline-size: 117px;
  }
}

/* Nav links */
.srf-header__menu-item {
  align-items: center;
  background-color: transparent;
  border-radius: var(--radius-lg);
  color: var(--color-black);
  display: flex;
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  padding: var(--space-1) var(--space-2);
  text-decoration: none;
  white-space: nowrap;
}

.srf-header__menu-item:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header CTA buttons */
.srf-header__link-button {
  align-items: center;
  border-radius: var(--radius-pill);
  color: var(--color-black);
  display: flex;
  font-size: var(--text-base);
  font-weight: 600;
  justify-content: center;
  letter-spacing: var(--tracking-tight);
  padding: 16px 24px;
  text-decoration: none;
  white-space: nowrap;
}

/* Filled (Sign Up) */
.srf-header__link-button[data-variant="primary-filled"] {
  background-color: var(--color-lavender);
}
.srf-header__link-button[data-variant="primary-filled"]:hover {
  background-color: var(--color-lavender-dark);
}

/* Outlined (Log In) */
.srf-header__link-button[data-variant="primary-outlined"] {
  border: 1px solid var(--color-black);
}
.srf-header__link-button[data-variant="primary-outlined"]:hover {
  background-color: var(--color-lavender-dark);
  border-color: transparent;
}

/* Mobile overrides */
@media (max-width: 1023px) {
  .srf-header__link-button[data-variant="primary-filled"] {
    background-color: var(--color-black);
    color: var(--color-white);
  }
  .srf-header__link-button[data-variant="primary-filled"]:hover {
    background-color: #2a3025;
  }
  .srf-header__link-button {
    block-size: 48px;
    box-sizing: border-box;
  }
}


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

/* Primary — lavender */
.btn-primary {
  align-items: center;
  background-color: var(--color-lavender);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--color-black);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  justify-content: center;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  padding: 16px 24px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-lavender-dark);
}

.btn-primary:active {
  background-color: var(--color-lavender);
}

.btn-primary:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: none;
}

/* Secondary — outlined */
.btn-secondary {
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--color-black);
  border-radius: var(--radius-pill);
  color: var(--color-black);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  justify-content: center;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  padding: 16px 24px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--color-lavender-dark);
  border-color: transparent;
}

.btn-secondary:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: none;
}

/* Large (footer size) */
.btn-lg {
  padding: 21px 30px;
}

/* Legacy green CTA (srf-btn) */
.srf-btn {
  background-color: var(--color-green-cta);
  border-radius: var(--radius-md);
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-fallback);
  font-size: var(--text-base);
  line-height: 42px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.srf-btn:hover {
  background-color: var(--color-green-cta-dark);
}

.srf-btn:focus-visible {
  box-shadow: inset 0 0 0 3px #006dca;
  outline: none;
}

.srf-btn .srf-btn__text {
  display: inline-block;
  letter-spacing: -0.024em;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-overflow: ellipsis;
  vertical-align: top;
}


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

.srf-footer {
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Footer reveal — mint-green decorative section */
.srf-footer-reveal {
  align-items: flex-end;
  background-color: var(--color-mint);
  box-sizing: border-box;
  display: flex;
  height: 393px;
  justify-content: center;
  overflow: hidden;
  padding: 0 16px 16px;
  position: relative;
}

@media (min-width: 768px) {
  .srf-footer-reveal {
    height: 450px;
    padding: 0 24px 24px;
  }
}

@media (min-width: 1024px) {
  .srf-footer-reveal {
    height: 491px;
    padding: 0 32px 32px;
  }
}

@media (min-width: 1280px) {
  .srf-footer-reveal {
    height: 550px;
    padding: 0 32px 32px;
  }
}

/* Footer content wrapper */
.srf-footer-content {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 16px 48px;
  width: 100%;
}

@media (min-width: 768px) {
  .srf-footer-content {
    padding: 80px 24px 32px;
  }
}

@media (min-width: 1280px) {
  .srf-footer-content {
    margin: 0 auto;
    max-width: var(--container-wide);
  }
}

/* "Get Started" CTA block */
.srf-footer__get-started {
  padding-bottom: 34px;
  width: 100%;
}

@media (min-width: 1280px) {
  .srf-footer__get-started {
    width: 44.5%;
  }
}

.srf-footer__get-started-title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: var(--tracking-tighter);
  max-width: 460px;
  padding-bottom: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .srf-footer__get-started-title {
    font-size: var(--text-4xl);
    letter-spacing: -1.92px;
    line-height: 1;
    padding-bottom: 17px;
  }
}

.srf-footer__get-started-subtitle {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  line-height: 150%;
  padding-bottom: 32px;
}

/* Footer CTA button */
.srf-footer__button {
  background-color: var(--color-lavender);
  border: none;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  color: var(--color-black);
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  padding: 16px 22px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.srf-footer__button:hover,
.srf-footer__button:active {
  background-color: var(--color-lavender-dark);
  color: #191b23;
}

.srf-footer__button:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-black);
  outline: none;
}

@media (min-width: 768px) {
  .srf-footer__button {
    padding: 21px 30px;
  }
}

/* Footer nav menu */
.srf-footer__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .srf-footer__menu {
    flex-direction: row;
    padding-bottom: 117px;
  }
}

@media (min-width: 1280px) {
  .srf-footer__menu {
    width: 55.5%;
  }
}

.srf-footer__menu-block-title {
  border-bottom: 1px solid var(--color-light-grey);
  color: var(--color-black);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 17px 0;
  position: relative;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .srf-footer__menu-block-title {
    background: none;
    border: 0;
    font-size: var(--text-base);
    font-weight: 600;
    padding-bottom: 26px;
  }
}

.srf-footer__menu-block-list-item a {
  color: var(--color-black);
  display: inline-block;
  font-size: var(--text-sm);
  line-height: 140%;
  padding: 6px 0;
  text-decoration: none;
  width: 100%;
}

.srf-footer__menu-block-list-item a:hover {
  text-decoration: underline;
}

/* Footer social icons */
.srf-footer__social-list {
  display: flex;
  margin-left: -9px;
}

.srf-footer__social-link {
  display: inline-block;
  height: 24px;
  margin-bottom: 40px;
  padding: 8px;
  transition: transform 0.1s;
  width: 24px;
}

.srf-footer__social-link:hover {
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .srf-footer__social-link {
    transition: none;
  }
  .srf-footer__social-link:hover {
    transform: none;
  }
}

/* Footer copyright */
.srf-footer__copyright {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.28px;
  margin-bottom: 32px;
}

.srf-footer__year {
  font-weight: 600;
}


/* ============================================================
   NAVIGATION DROPDOWN
   ============================================================ */

.srf-header-dropdown-popover:popover-open {
  background-color: var(--color-white);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  box-shadow: var(--shadow-dropdown);
  box-sizing: border-box;
  display: grid;
  inline-size: 100%;
  overflow-y: auto;
  position: fixed;
  z-index: var(--z-dropdown);
}

@media (max-width: 1440px) {
  .srf-header-dropdown-popover:popover-open {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }
}

.srf-header__dropdown-columns {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
}

.srf-header__menu-sublist-column-title {
  color: var(--color-black);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-block-end: 32px;
}

.srf-header__menu-sublist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.srf-header__menu-sublist-item {
  color: var(--color-black);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: var(--leading-normal);
  text-decoration: none;
}

.srf-header__menu-sublist-item:hover {
  color: var(--color-dark-grey);
}


/* ============================================================
   SKIP TO CONTENT (ACCESSIBILITY)
   ============================================================ */

.srf-layout__skip-to-content {
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  height: 64px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: -9999px;
  transform: translateY(-100%);
  transition: transform 0.3s;
  width: 155px;
  z-index: 999999;
}

.srf-layout__skip-to-content:focus-within {
  box-shadow: inset 0 0 0 3px #006dca;
  top: 0;
  transform: translateY(16px);
}

.srf-layout__skip-to-content > button {
  background: transparent;
  border: 0;
  color: #006dca;
  font-family: var(--font-fallback);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}


/* ============================================================
   ICONS (srf-icon)
   ============================================================ */

.srf-icon {
  display: inline-block;
  fill: currentcolor;
  height: 16px;
  line-height: 1;
  vertical-align: middle;
  width: 16px;
}

.srf-icon.-xs { height: 12px; width: 12px; }
.srf-icon.-s  { height: 16px; width: 16px; }
.srf-icon.-m  { height: 22px; width: 22px; }
.srf-icon.-l  { height: 44px; width: 44px; }
.srf-icon.-highlight { fill: #ff7f00; }


/* ============================================================
   LEGACY GRID  (s-col-*)
   ============================================================ */

.s-row {
  margin-left: -14px;
  margin-right: -14px;
}

.s-row::before,
.s-row::after {
  content: "";
  display: table;
}

.s-row::after {
  clear: both;
}

.s-col-1, .s-col-2, .s-col-3, .s-col-4,
.s-col-5, .s-col-6, .s-col-7, .s-col-8,
.s-col-9, .s-col-10, .s-col-11, .s-col-12 {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  min-width: 54px;
  padding-left: 14px;
  padding-right: 14px;
  position: relative;
}

.s-col-1  { width: 8.3333%; }
.s-col-2  { width: 16.6667%; }
.s-col-3  { width: 25%; }
.s-col-4  { width: 33.3333%; }
.s-col-5  { width: 41.6667%; }
.s-col-6  { width: 50%; }
.s-col-7  { width: 58.3333%; }
.s-col-8  { width: 66.6667%; }
.s-col-9  { width: 75%; }
.s-col-10 { width: 83.3333%; }
.s-col-11 { width: 91.6667%; }
.s-col-12 { width: 100%; }


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.hide   { display: none !important; }
.s-text-center { text-align: center; }
.s-text-left   { text-align: left; }
.s-text-right  { text-align: right; }

.clearfix::before,
.clearfix::after { content: ""; display: table; }
.clearfix::after { clear: both; }

/* Surface backgrounds */
.bg-white  { background-color: var(--color-white); }
.bg-mint   { background-color: var(--color-mint); }
.bg-lavender { background-color: var(--color-lavender); }
.bg-black  { background-color: var(--color-black); }

/* Text colour utilities */
.text-black   { color: var(--color-black); }
.text-white   { color: var(--color-white); }
.text-grey    { color: var(--color-dark-grey); }
.text-lavender { color: var(--color-lavender); }

/* Divider */
.divider {
  background-color: var(--color-light-grey);
  block-size: 1px;
  margin-block: var(--space-2);
}


/* ============================================================
   MODAL / OVERLAY
   ============================================================ */

.modal-overlay {
  background: rgba(0, 0, 0, 0.50);
  display: flex;
  inset: 0;
  overflow: auto;
  padding: 10px;
  position: fixed;
  z-index: var(--z-modal);
}

.modal-panel {
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.40);
  font-size: var(--text-sm);
  margin: auto;
  position: relative;
}

.modal-close {
  align-items: center;
  background: transparent;
  border: 0;
  color: #ccc;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}

.modal-close:hover { color: #adadad; }


/* ============================================================
   TOAST / NOTICE BUBBLE
   ============================================================ */

#srf-notice-bubble-container {
  container-name: notice-bubble-container;
  container-type: inline-size;
  pointer-events: none;
  position: fixed;
  right: 12px;
  top: 12px;
  width: 300px;
  z-index: var(--z-toast);
}

@media (max-width: 767px) {
  #srf-notice-bubble-container {
    width: calc(100% - 24px);
  }
}


/* ============================================================
   RESPONSIVE BREAKPOINTS (reference)
   ============================================================

   Mobile:   max-width: 767px
   Tablet:   min-width: 768px
   Laptop:   min-width: 1024px
   Desktop:  min-width: 1280px
   Wide:     min-width: 1440px
   ============================================================ */
