/* Reset */
*, *:before, *:after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}
input, button, textarea, select {
  font: inherit;
}
*:focus {
  outline: none;
}

/* Fonts */
@font-face {
  font-family: 'Murecho';
  src: url('../fonts/Murecho/Murecho-SemiBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Murecho';
  src: url('../fonts/Murecho/Murecho-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Murecho';
  src: url('../fonts/Murecho/Murecho-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LT Superior Serif';
  src: url('../fonts/SuperiorSerif/LTSuperiorSerif-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  /* Font Families */
  --sans: 'Murecho', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --serif: 'LT Superior Serif', Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --mono: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Colors */
  --color-primary: #f8f7f7;
  --color-primary-dark: #f0e9e9;
  --color-secondary: #e7feda;
  --color-secondary-dark: #e1f7d5;
  --color-background: #ffffff;
  --color-text: #070707;
  --color-text-light: #757474;

  /* Typography */
  --font-size-base: 14px;
  --font-weight-normal: 400;
  --font-weight-bold: 600;

  /* Radius */
  --radius: 6px;

  /* Spacing */
  /* --base-spacing: 8px; */
  --base-spacing: clamp(4px, 2vw, 8px);
  --s-0: calc(var(--base-spacing) * 0.5);  /* up to 4px */
  --s-1: calc(var(--base-spacing) * 1);    /* up to 8px */
  --s-2: calc(var(--base-spacing) * 2);    /* up to 16px */
  --s-3: calc(var(--base-spacing) * 4);    /* up to 32px */
  --s-4: calc(var(--base-spacing) * 8);    /* up to 64px */
  --s-5: calc(var(--base-spacing) * 16);   /* up to 128px */
  
  /* Containers */
  --container: 1320px;
  --container-sm: 920px;
  --container-text: 75ch;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-duration: 0.3s;
  --transition-ease: ease-in-out;
}

/* Containers */
.container,
.container-fluid,
.container-sm,
.container-text {
	padding-inline: var(--s-2);
	margin-inline: auto;
}
.container-fluid {
  max-width: 100%;
}
/* Text Container */
@media (min-width: 75ch) {
  .container-text {
    max-width: var(--container-text);
  }
}
/* Small Container */
@media (min-width: 920px) {
  .container-sm {
    max-width: var(--container-sm);
  }
}
/* Regular Container */
@media (min-width: 1320px) {
  .container {
    max-width: var(--container);
  }
}

/* Global */
html {
  font-size: 100%;
}
body {
  font-family: var(--sans);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  font-style: normal;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-background);
  color: var(--color-text);
}
a {
  color: var(--color-text); 
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.8;
}
a:focus {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
hr {
  border:0;
  border-bottom: 1px solid var(--color-text);
  margin-block: var(--font-size-base);
}
strong {
  font-weight: var(--font-weight-bold);
}
blockquote {
  margin: var(--s-2) 0;
  padding: var(--s-2);
  border-left: 4px solid var(--color-text);
}
details {
  padding-top: var(--s-2);
}
details summary {
  font-size: 1.2em;
  line-height: 1.2;
  cursor: pointer;
  padding-bottom: var(--s-2);
}
p {
  margin-bottom: var(--font-size-base);
}
img + p,
img + h2,
img + h3,
img + h4,
img + h5,
img + h6 {
  padding-top: 1em;
}
p + h2, p + h3, p + h4, p + h5, p + h6 {
  padding-top: var(--font-size-base);
}
@media screen and (max-width: 75ch) {
  main ul, main ol {
    margin-left: 1em;
  }
}
/* Headlines */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

/* Utilities */
.image-placeholder {
  background-color: #e0e0e0;
  height: 545px; /* Adjust height as needed */
  border-radius: var(--radius);
}
.section-title {
  display: inline-block;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-family: var(--mono);
  padding-top: var(--s-0);
	padding-inline: var(--s-2);
	margin-inline: auto;
}
.animate {
  opacity: 0;
  transition: all 1s;
}
.animate.show {
  opacity: 1;
}

/* Font sizes */
h1, .h1 { font-size: clamp(2.074em, 5vw, 2.986em); } /* font-size: clamp(2em, 5vw, 2.986em); */
h2, .h2 { font-size: clamp(1.728em, 4vw, 2.488em); }
h3, .h3 { font-size: clamp(1.728em, 3vw, 2.074em); }
h4, .h4 { font-size: clamp(1.44em, 2vw, 1.728em); }
h5, .h5 { font-size: 1.44em; }
h6, .h6 { font-size: 1.2em; }
p { font-size: 1em; }
small { font-size: 0.833em; }
.tiny { font-size: 0.694em; }

/* Rounded corners*/
pre, code, input, select, textarea {
  border-radius: var(--radius)
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1em 0;
  width: 100%;
}
th, td {
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--color-text);;
  padding: var(--s-1);
}
thead, tfoot {
  background: var(--color-secondary);
}

/* Forms */
fieldset {
  border: none;
}
fieldset + p {
  padding-top: 1rem;
}
form .form-group {
  margin-bottom: var(--s-2);
}
input, select, textarea {
  color: var(--color-text);
  background: var(--color-primary);
  padding: var(--s-0);
  font-family: var(--sans);
  display: block;
  width: 100%;
  border: 0;
  /* border-bottom: 1px solid var(--color-text); */
  border-radius: var(--radius);
}
input[aria-hidden=true]{
  visibility: hidden;
  display: none;
}
form input[type=submit] {
  width: auto;
  min-width: 160px;
}
/* Form "start" */
.form-start fieldset p {
  line-height: 2;
}
.form-start fieldset p, .form-start input:not([type="submit"]), .form-start select {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 2.4rem);
}
.form-start input, .form-start select {
  display: inline;
line-height: normal;
}
.form-start input{
  width: clamp(200px, 30vw, 580px);
}
.form-start select {
  width: clamp(200px, 30vw, 440px);
}
.form-start input[type=submit] {
  margin-top: var(--s-3);
}

/* Buttons */
button, input[type=submit], input[type=reset], input[type="button"], a.button {
  display: inline-block;
  color: var(--color-text);
  background: var(--color-secondary);
  border: 0;
  border-radius: var(--radius);
  padding: var(--s-0) var(--s-2);
  cursor: pointer;
  text-align: center;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, a.button:hover {
  background: var(--color-secondary-dark);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  opacity: 1; /* REVISIT */
}
button.large, input[type=submit].large, input[type=reset].large, input[type="button"].large, a.button.large {
  padding: var(--s-1) var(--s-3);;
}
button.large:hover, button.large:focus, input[type="submit"].large:hover, input[type="reset"].large:hover, input[type="button"].large:hover, a.button.large:hover {
  box-shadow: var(--shadow-lg);
}

/* Header */
header .container {
  display: grid;
  grid-template-columns: 170px auto 170px; /* Adjust the fractions as needed */
  align-content: center;
  align-items: center;
  height: 80px;
}
header .logo {
  grid-column: 1;
}
header .navigation {
  grid-column: 2;
  text-align: center;
}
header .cta-button {
  grid-column: 3;
  text-align: right;
}
header .navigation ul {
  list-style-type: none;
}
header .navigation li {
  display: inline;
  margin: 0 1rem;
}
header a {
  text-decoration: none;
}
header .burger-button {
  display: none;
}
header .burger-icon {
  display: block;
  width: 16px;
  height: 2px;
  background-color: var(--color-text);
  margin: 4px auto;
}
header .mobile-menu {
  display: none;
}

/* Mobile menu */
@media screen and (max-width: 960px) {
  header .navigation, header .container > .cta-button {
    display: none;
  }
  header .container {
    grid-template-columns: 170px auto;
  }
  header .burger-menu {
    justify-self: right;
  }
  header .burger-button {
    display: block;
    background-color: var(--color-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
  }
  header .mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    box-shadow: var(--shadow-md);
    z-index: 1;
    padding-bottom: var(--s-2);
  }
  header .mobile-menu ul {
    list-style-type: none;
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
  }
  header .mobile-menu li {
    margin: 10px 0;
  }
  header .mobile-menu .cta-button {
    text-align: center;
  }
}

/* Main */
main {
  padding-block: var(--s-4) var(--s-5);
}

/* Footer */
footer {
  background-color: var(--color-secondary);
  color: var(--color-background);
  font-family: var(--mono);
  padding-top: 1em; /* TEMP */
}
footer .footer-container {
  background-color: var(--color-text);
  margin-inline: var(--s-2);
  padding-inline: var(--s-3);
  padding-block: var(--s-5) var(--s-2);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
footer a {
  text-decoration: none;
}
footer a:hover {
  opacity: 1;
}
footer ul {
  list-style-type: none;
}
footer li {
 line-height: 2;
}
footer address {
  padding-top: var(--s-2);
  line-height: 1.4;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-1);
}
.footer-top .footer-widget h6 {
  opacity: .6;
  font-size: var(--font-size-base);
}
.footer-top .footer-widget a {
  color: var(--color-primary);
}
.footer-top .widget-status {
  text-transform: uppercase;
}
.footer-top .widget-status .status-info {
  display: flex;
  align-items: center;
}
.footer-top .widget-status .status-circle {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: grey;
  margin-right: 0.5em;
  border-radius: 50%;
}
.footer-top .widget-status .status-circle:not(.active) {
  display: none;
}
.footer-top .widget-status .status-circle.active {
  background-color: var(--color-secondary);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0; }
}
.footer-cta {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding-block: var(--s-4) var(--s-3);
  height: clamp(200px, 20vw, 400px);
}
.footer-cta .scrolling-text {
  display: flex;
  position: absolute;
  white-space: nowrap;
}
.footer-cta a {
  color: var(--color-background);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 10rem);
}
.footer-cta a:hover {
  text-decoration: none;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-top: 20px;
  font-size: calc(var(--font-size-base) - 2px);
}
.footer-bottom a {
  color: var(--color-background);
  opacity: .6;
}
.footer-bottom-legal {
  text-align: right;
}
.footer-bottom-legal a + a {
  padding-left: 3em;
}
.footer-bottom-copy {
  text-align: left;
}
.footer-bottom-lang {
  text-align: center;
}
.footer-bottom-legal {
  text-align: right;
}
/* Mobile Styles */
@media screen and (max-width: 960px) {
  .footer-top, .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .footer-top .footer-widget {
    text-align: center;
  }
  .footer-top .footer-widget:not(:first-of-type) {
    padding-top: var(--s-3);
  }
  .footer-top .widget-status .status-info {
    justify-content: center;
  }
  .footer-bottom-copy {
    text-align: center;
    order: 3;
  }
  .footer-bottom-lang {
    order: 2;
  }
  .footer-bottom-legal {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
  .footer-bottom-legal a {
    text-align: right;
  }
  .footer-bottom-legal a + a {
    text-align: left;
    padding-left: 0;
  }
}
@media screen and (max-width: 460px) {
  .footer-bottom-legal {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-bottom-legal a, .footer-bottom-legal a + a {
    text-align: center;
  }
}

/* Blog */
.blog h1 {
  font-size: clamp(3rem, 14vw, 12rem);
}
.blog h1+p {
  font-size: 1.728em;
  line-height: 1.2;
  padding-bottom: var(--s-4);
}
@media (max-width: 768px) {
  .blog h1+p {
    font-size: 1.2em;
  }
}
article .post-date {
  display: flex;
  align-items: center;
}

article .post-date img {
  display: inline-block;
  height: 1em;
  margin-right: 0.4em;
  margin-top: -2px;
}
article .post-date span {
  line-height: 1;
  vertical-align: middle;
}
article img {
  border-radius: var(--radius);
}
article h3 a,
article h3 a:hover,
article h5 a,
article h5 a:hover {
  text-decoration: none;
}
article .post-excerpt {
  padding-block: var(--s-2);
}
.blog article {
  padding-block: var(--s-3);
}
.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.pagination a {
  margin: 0 var(--s-0);
  padding: var(--s-1) var(--s-2);
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: var(--radius);
}
.pagination a.active {
  background-color: var(--color-text);
  color: white;
}
.pagination a:hover {
  background-color: var(--color-text);
  color: white;
  opacity: 1;
}

/* Post */
.post article .post-date {
  padding-bottom: var(--s-2);
}

/* Work */
.work h1 {
  font-size: clamp(3rem, 14vw, 12rem);
  line-height: 1;
}
.work h1+p {
  font-size: 1.728em;
  line-height: 1.2;
  max-width: 60%;
  padding-bottom: var(--s-4);
}
.websites {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.websites img {
  border-radius: var(--radius);
}
.websites h2 {
  text-decoration: none;
  margin-block: var(--s-2) var(--s-0);
  padding: 0;
}
@media (min-width: 1080px) {
  .websites .website:nth-child(2n) {
    margin-top: var(--s-5); /* Adjust the value as needed */
  }
}
@media (max-width: 768px) {
  .work h1+p {
    font-size: 1.2em;
    max-width: 100%;
  }
  .websites {
    grid-template-columns: 1fr;
  }
}

/* About */
.about section.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-5);
}
@media (max-width: 768px) {
  .about section.grid {
    grid-template-columns: 1fr;
  }
}

/* Services */
main.services {
  padding-bottom: 0;
}
.services section {
  margin-block: var(--s-3) var(--s-5);
}
.services h2 {
  font-size: clamp(3rem, 14vw, 12rem);
  line-height: 1;
}
.services p {
  font-size: 1.728em;
  line-height: 1.2;
}
.services ol {
  font-size: 1.2em;
}
.services li {
  line-height: 3;
}
.services .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s-5);
  padding-top: var(--s-2);
}
@media (max-width: 768px) {
  .services p {
    font-size: 1.2em;
  }
  .services .grid {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
}

/* Contact */
.contact h1 {
  font-size: clamp(3rem, 14vw, 8rem);
  line-height: 1;
}
.contact h1+p {
  font-size: 1.728em;
  line-height: 1.2;
  max-width: 70%;
}
.contact hr {
  margin-block: var(--s-4);
}
@media (max-width: 768px) {
  .contact h1+p {
    font-size: 1.2em;
    max-width: 100%;
  }
}

/* Latest */
.latest {
  background-color: var(--color-secondary);
  border-top: 1px solid var(--color-primary-dark);
}
.latest .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 600px)); /* 3 columns */
  justify-content: center;
  gap: 2em;
  padding-block: var(--s-4);
}
@media (max-width: 1080px) {
  .latest .grid {
    grid-template-columns: minmax(0, 600px);
    gap: var(--s-4);
  }
}

/* Home */
.home {
  padding-block: 0;
}
.home section {
  border-top: 1px solid var(--color-primary-dark);
}

/* Home / About */
.home-about .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  padding-block: var(--s-4) var(--s-5);
}
.home-about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-about-text h1 {
  font-size: clamp(2.074em, 4vw, 3.4em);
  line-height: 1;
  padding-bottom: 1em;
}
.home-about-animation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .home-about .grid {
    grid-template-columns: 1fr;
    padding-block: var(--s-4) var(--s-5);
    gap: var(--s-2);
  }
} 

/* Home / Expertise */
.home-expertise .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  padding-block: var(--s-5);
}
.home-expertise .expertise-item {
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure full height for the item */
  max-width: 400px;
  margin-inline: auto;
}
.home-expertise .expertise-title {
  display: flex; /* Align items in a row */
  align-items: center; /* Center items vertically */
  justify-content: space-between; /* Space between title and icon */
  background-color: var(--color-primary);
  padding: var(--s-2);
  border-radius: var(--radius);
  min-height: 80px; /* Adjust height as needed for consistency */
}
.home-expertise .expertise-title img {
  margin-left: var(--s-2); /* Space between title and icon */
  align-self: flex-center; /* Align the icon to the top if needed */
}
.home-expertise .expertise-title span {
  width: 5px; /* Adjust width as needed */
  height: 100%; /* Full height */
  border-radius: var(--radius);
  margin-right: var(--s-2); /* Space between the line and title */
}
.home-expertise .expertise-title h2 {
  margin: 0; /* Remove default margin */
  flex-grow: 1; /* Allow title to take available space */
}
.line-concept {background-color: #f279ea;}
.line-design {background-color: #d95578;}
.line-development {background-color: #f2d95c;}
.line-support {background-color: #6cd9ce;}
.home-expertise .expertise-text {
  margin-top: var(--s-2);
  background-color: var(--color-primary);
  padding: var(--s-2);
  flex: 1; /* Allow this div to grow and fill space */
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space items evenly */
}
.home-expertise .expertise-text p {
  font-weight: var(--font-weight-bold);
}
.home-expertise .keywords {
  margin-top: auto; /* Push keywords to the bottom */
  padding-top: var(--s-4);
}
.home-expertise .keywords a {
  font-size: 14px;
  color: white;
  background-color: var(--color-text);
  border-radius: var(--radius);
  padding: var(--s-0) var(--s-1);
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  margin-block: var(--s-0);
  margin-right: var(--s-0);
}
@media (max-width: 1200px) {
  .home-expertise .grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on tablet */
    row-gap: var(--s-4);
  }
}
@media (max-width: 768px) {
  .home-expertise .grid {
    grid-template-columns: 1fr; /* One column on mobile */
    padding-block: var(--s-4) var(--s-5);
  }
}

/* Home / Work */
.home-work .grid {
  padding-block: var(--s-5);
  column-count: 2; /* Two columns */
  column-gap: var(--s-4); /* Gap between columns */
}
.home-work .grid-title {
  display: block; /* Make sure the title is treated as a block */
  width: 100%; /* Take full width */
  break-inside: avoid; /* Prevent breaking inside columns */
  margin-bottom: var(--s-4); /* Spacing below the title */
  max-width: 18ch;
}
.home-work .work-item {
  break-inside: avoid; /* Prevent items from breaking inside columns */
  margin-bottom: var(--s-4); /* Space between items */
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .home-work .grid {
    column-count: 1; /* One column on mobile */
    padding-block: var(--s-4) var(--s-3);
  }
}

/* Home / Clients */
.home-clients .clients-slider {
  overflow: hidden; /* Hide overflowing logos */
  display: flex; /* Add flexbox to align children */
  padding: var(--s-5);
}
.home-clients .slider-wrapper {
  display: flex; /* Flexbox for horizontal layout */
  transition: transform 0.5s ease; /* Smooth transition */
}
.home-clients .client-logo {
  flex: 0 0 auto; /* Prevent logos from shrinking */
  margin-right: var(--s-5); /* Space between logos */
  align-content: center;
}
.home-clients .client-logo img {
  width: 180px; /* Fixed width for logos */
  max-width: 100%;
  height: auto;
  max-height: 100px;
}
@media (max-width: 768px) {
  .home-clients .clients-slider {
    padding-block: var(--s-4) var(--s-5);
  }
}

/* Home / Testimonials */
.home-testimonials .grid {
  padding-block: var(--s-5);
  column-count: 2;
  gap: 0;
}
.home-testimonials .grid-title {
  display: block; /* Make sure the title is treated as a block */
  width: 100%; /* Take full width */
  break-inside: avoid; /* Prevent breaking inside columns */
  margin-bottom: var(--s-4); /* Spacing below the title */
  max-width: 18ch;
}
.testimonial-item {
  padding: var(--s-4);
  border: 1px solid var(--color-text);
  break-inside: avoid; /* Prevent items from breaking inside columns */
  margin-inline: auto;
}
.testimonial-item q {
  padding-bottom: var(--s-2);
  display: block;
}
.testimonial-item cite {
  display: block;
  font-weight: 500;
}
@media (max-width: 960px) {
  .home-testimonials .grid {
    column-count: 1;
  }
}
@media (max-width: 768px) {
  .home-testimonials .grid {
    padding-block: var(--s-4) var(--s-5);
  }
  .testimonial-item {
    padding: var(--s-3);
  }
}
@media (max-width: 420px) {
  .home-testimonials .grid {
    column-count: 1;
  }
  .testimonial-item {
    padding: var(--s-2);
  }
}