@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Syne:wght@500;700;800&display=swap");

:root {
  --bg: #edf6ff;
  --panel: rgba(245, 249, 255, 0.58);
  --line: rgba(86, 108, 183, 0.16);
  --line-strong: rgba(86, 108, 183, 0.24);
  --text: #16233f;
  --muted: #60719a;
  --cyan: #4ad7ff;
  --blue: #4e63ff;
  --violet: #8b63ff;
  --magenta: #d965ff;
  --peach: #ffd9ef;
  --night: #111a34;
  --sans: "Instrument Sans", "Segoe UI", sans-serif;
  --display: "Syne", "Instrument Sans", sans-serif;
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 6% 20%, rgba(74, 215, 255, 0.5), transparent 22%),
    radial-gradient(circle at 38% 10%, rgba(78, 99, 255, 0.22), transparent 24%),
    radial-gradient(circle at 68% 12%, rgba(217, 101, 255, 0.2), transparent 22%),
    linear-gradient(140deg, #eef8ff 0%, #edf0ff 38%, #f8edff 66%, #eaf7ff 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 26px;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.bea-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  line-height: 1;
}

.bea-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.section-blue {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(74, 215, 255, 0.5), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(217, 101, 255, 0.22), transparent 26%),
    linear-gradient(140deg, #eef8ff 0%, #edf0ff 42%, #f8edff 100%);
}

.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(86, 108, 183, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 108, 183, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 36px 24px 58px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.card-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-blue .eyebrow,
.closing-cta .eyebrow {
  color: var(--blue);
}

.hero-video {
  display: grid;
  gap: 24px;
}

.video-copy {
  max-width: none;
}

.video-copy h2 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(30px, 2.8vw, 46px);
  white-space: nowrap;
}

.video-copy p:not(.eyebrow) {
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  white-space: nowrap;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: none;
  min-height: 0;
  border: 1px solid var(--line-strong);
  background: var(--night);
  box-shadow: 0 24px 70px rgba(88, 104, 191, 0.14);
}

.video-shell iframe,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-shell iframe {
  border: 0;
  z-index: 2;
}

.video-shell:not(.has-video) iframe {
  display: none;
}

.video-placeholder {
  z-index: 1;
  display: grid;
  place-content: center;
  padding: 28px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(17, 26, 124, 0.56), rgba(7, 13, 41, 0.82)),
    url("assets/screenshots/slt-hero.png") center / cover;
}

.video-placeholder strong {
  font-size: 26px;
}

.video-placeholder p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.play-mark {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #fff;
}

.note-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 26px 0;
}

.note {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.content-section,
.competitive-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 26px;
}

.section-heading {
  max-width: 1080px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: end;
  gap: 42px;
  max-width: none;
}

.sample-heading {
  max-width: none;
}

.competitive-section .section-heading,
.competitive-section .section-heading > p {
  max-width: none;
}

.competitive-section .section-heading h2 {
  white-space: nowrap;
}

.section-heading h2,
.closing-inner h2 {
  color: var(--text);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 850;
}

.section-heading > p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.competitive-section .section-heading > p {
  font-size: 19px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sample-card,
.competitor-card {
  border: 1px solid var(--line);
  background: rgba(245, 249, 255, 0.58);
}

.sample-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  transform-origin: top left;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.sample-card.is-active {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 48px rgba(88, 104, 191, 0.12);
}

.sample-card.is-expanded {
  order: -1;
  grid-column: 1 / -1;
  min-height: auto;
  padding: 28px;
  background: rgba(245, 249, 255, 0.72);
  box-shadow: 0 24px 70px rgba(88, 104, 191, 0.1);
  animation: sampleCardOpen 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sample-card.is-closing {
  order: -1;
  grid-column: 1 / -1;
  animation: sampleCardClose 420ms cubic-bezier(0.7, 0, 0.84, 0) both;
}

.sample-card:hover,
.competitor-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 48px rgba(88, 104, 191, 0.12);
}

.sample-card.is-active:hover {
  transform: none;
}

.sample-preview {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.sample-expanded {
  display: none;
}

.sample-card.is-expanded .sample-preview {
  display: none;
}

.sample-card.is-expanded .sample-expanded,
.sample-card.is-closing .sample-expanded {
  display: block;
  transform-origin: top left;
}

.sample-card h3 {
  color: var(--text);
  font-size: 38px;
}

.sample-card p:not(.card-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.read-more,
.close-expanded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.36);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.close-expanded {
  margin-top: 0;
  width: 46px;
  min-height: 46px;
  padding: 0;
  font-size: 30px;
  line-height: 1;
}

.read-more:hover,
.close-expanded:hover {
  background: rgba(255, 255, 255, 0.7);
}

.featured-card {
  background: linear-gradient(135deg, rgba(74, 215, 255, 0.42), rgba(139, 99, 255, 0.24), rgba(217, 101, 255, 0.18));
  color: var(--text);
}

.featured-card .card-kicker,
.featured-card h3,
.featured-card p:not(.card-kicker) {
  color: var(--text);
}

.expanded-sample-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.expanded-sample-header h3 {
  color: var(--text);
  font-size: clamp(30px, 3.4vw, 48px);
}

.linkedin-post-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.linkedin-post-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(460px, 1.12fr);
  gap: 0;
  overflow: hidden;
  transform-origin: top left;
}

.sample-card.is-expanded .linkedin-post-card {
  animation: linkedinOblong 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.linkedin-post-body {
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
}

.linkedin-post-body p,
.dash-list {
  margin: 0 0 16px;
}

.sample-card .dash-list p {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 16px;
}

.sample-card .linkedin-post-body p {
  color: var(--text);
  font-size: 16px;
}

.hashtags {
  color: var(--blue);
  font-weight: 400;
}

.read-more-inline {
  color: var(--blue);
  font-size: 15px;
}

.linkedin-mockup-post {
  align-self: start;
  width: min(100%, 680px);
  margin: 24px;
  overflow: hidden;
  justify-self: center;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
  color: #1f2328;
  font-family: var(--sans);
}

.linkedin-mockup-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 16px 18px 8px;
}

.linkedin-avatar {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  object-fit: contain;
}

.linkedin-author {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.15;
}

.linkedin-author strong {
  color: #111827;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: 0;
}

.linkedin-author span {
  color: #666;
  font-size: 14px;
}

.linkedin-icon-button,
.linkedin-actions button,
.linkedin-carousel-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #444;
  cursor: pointer;
}

.linkedin-icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.linkedin-icon-button:hover,
.linkedin-actions button:hover {
  background: #f1f1f1;
}

.linkedin-icon-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.linkedin-mockup-copy {
  margin: 0;
  padding: 4px 18px 14px;
  color: #222;
  font-size: 20px;
  line-height: 1.35;
}

.linkedin-carousel-shell {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #f4f4f3;
}

.linkedin-carousel-label {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 92px);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(36, 36, 36, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.linkedin-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 48%);
  gap: 8px;
  overflow-x: auto;
  padding: 34px 10px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.linkedin-carousel::-webkit-scrollbar {
  display: none;
}

.linkedin-carousel-slide {
  width: 100%;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
}

.linkedin-carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.linkedin-carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(42, 42, 42, 0.88);
  color: #fff;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.linkedin-carousel-button:hover {
  background: rgba(20, 20, 20, 0.94);
  transform: translateY(-50%) scale(1.04);
}

.linkedin-carousel-button:disabled {
  opacity: 0;
  pointer-events: none;
}

.linkedin-carousel-button.is-prev {
  left: 10px;
}

.linkedin-carousel-button.is-next {
  right: 10px;
}

.linkedin-carousel-button svg,
.linkedin-actions svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.linkedin-engagement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border-bottom: 1px solid #ededed;
  color: #666;
  font-size: 18px;
  line-height: 1;
}

.linkedin-reactions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.reaction {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: -8px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.reaction-like {
  background: #0a66c2;
}

.reaction-love {
  background: #df704d;
}

.reaction-care {
  margin-right: 4px;
  background: #6f5fce;
}

.linkedin-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 8px 16px 10px;
}

.linkedin-actions button {
  height: 42px;
  border-radius: 8px;
}

.newsletter-card {
  max-width: 1120px;
  max-height: min(56vh, 620px);
  overflow-y: auto;
  padding: 4px 22px 4px 0;
  scrollbar-color: var(--blue) rgba(102, 122, 170, 0.16);
  scrollbar-width: thin;
}

.newsletter-card::-webkit-scrollbar {
  width: 10px;
}

.newsletter-card::-webkit-scrollbar-track {
  background: rgba(102, 122, 170, 0.16);
}

.newsletter-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--blue);
}

.sample-card .newsletter-card p {
  max-width: 980px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.newsletter-card h4 {
  max-width: 980px;
  margin: 0 0 22px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.sample-card .newsletter-card ul {
  display: grid;
  gap: 8px;
  max-width: 980px;
  margin: 0 0 20px;
  padding-left: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.competitive-section {
  padding-top: 30px;
}

.competitor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.competitor-card {
  min-height: 0;
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.competitor-card:nth-child(odd) {
  background: rgba(245, 249, 255, 0.72);
}

.competitor-card:nth-child(even) {
  background: rgba(239, 252, 255, 0.7);
}

.competitor-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(34px, 3vw, 46px);
  letter-spacing: 0;
}

.competitor-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.competitor-link:hover {
  color: var(--violet);
}

.competitor-focus {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.competitor-card dl,
.competitor-card dd {
  margin: 0;
}

.competitor-card dl {
  display: grid;
  gap: 12px;
}

.competitor-card div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.competitor-card dt {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.competitor-card dd {
  color: var(--muted);
  font-size: 15px;
}

.closing-cta {
  padding: 84px 26px;
}

.closing-inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.closing-inner h2,
.closing-inner p {
  color: var(--text);
}

.closing-inner h2 {
  font-size: clamp(30px, 2.8vw, 46px);
  white-space: nowrap;
}

.closing-inner p:last-child {
  max-width: none;
  color: var(--muted);
  font-size: 20px;
  white-space: nowrap;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 76px max(26px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.brand-light {
  color: var(--text);
}

.brand-light .brand-text small {
  color: var(--muted);
}

.footer-brand p {
  max-width: 340px;
  margin: 24px 0 0;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  font-style: normal;
}

.footer-contact strong {
  grid-column: 1 / -1;
  color: var(--text);
  font-size: 24px;
}

.footer-contact a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes linkedinOblong {
  from {
    clip-path: inset(0 58% 34% 0);
    transform: scaleY(0.82);
  }
  to {
    clip-path: inset(0 0 0 0);
    transform: scaleY(1);
  }
}

@keyframes sampleCardOpen {
  from {
    opacity: 0;
    transform: scaleX(0.32) scaleY(0.72);
  }
  to {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}

@keyframes sampleCardClose {
  from {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
  to {
    opacity: 0;
    transform: scaleX(0.32) scaleY(0.72);
  }
}

@keyframes sampleContentIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
  }

  .section-heading.split,
  .closing-inner,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .sample-grid,
  .competitor-grid {
    grid-template-columns: 1fr;
  }

  .linkedin-post-card {
    grid-template-columns: 1fr;
  }

  .linkedin-post-body {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .linkedin-mockup-post {
    margin: 22px auto;
  }

  .competitor-card {
    min-height: 0;
  }

  .competitor-card h3 {
    min-height: 0;
  }

  .video-copy h2,
  .video-copy p:not(.eyebrow),
  .competitive-section .section-heading h2,
  .closing-inner h2,
  .closing-inner p:last-child {
    white-space: normal;
  }
}

@media (min-width: 1041px) and (max-width: 1500px) {
  .closing-inner h2 {
    font-size: clamp(30px, 2.4vw, 38px);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .main-nav {
    font-size: 14px;
  }

  .hero {
    padding: 34px 16px 48px;
  }

  .video-shell {
    min-height: 260px;
    max-height: none;
  }

  .section-heading > p {
    font-size: 18px;
  }

  .video-copy h2,
  .section-heading h2,
  .closing-inner h2 {
    font-size: 36px;
  }

  .note-band,
  .content-section,
  .competitive-section,
  .closing-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-section,
  .competitive-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .sample-card,
  .competitor-card {
    padding: 26px;
  }

  .expanded-sample-header {
    display: grid;
  }

  .linkedin-carousel {
    grid-auto-columns: minmax(210px, 72%);
    padding: 34px 10px 16px;
  }

  .linkedin-mockup-post {
    margin: 18px 0 0;
  }

  .linkedin-mockup-header {
    padding: 14px 14px 8px;
  }

  .linkedin-mockup-copy {
    padding: 2px 14px 12px;
    font-size: 17px;
  }

  .linkedin-engagement {
    align-items: start;
    font-size: 15px;
  }

  .linkedin-carousel-label {
    max-width: calc(100% - 72px);
    font-size: 12px;
  }

  .linkedin-carousel-button {
    width: 40px;
    height: 40px;
  }

  .newsletter-card {
    max-height: 58vh;
    padding: 2px 16px 2px 0;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

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