/* _base.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #252525;
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: transparent;
}

label {
  cursor: pointer;
}

/* _typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-family: "Sedan", sans-serif;
  font-size: 2.25rem;
  color: #000;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-family: "Sedan", sans-serif;
  font-size: 1.75rem;
  color: #615D4F;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.25rem;
  color: #615D4F;
  font-weight: 700;
}

p {
  font-size: 1rem;
  color: #252525;
  margin-bottom: 1rem;
}

a {
  font-weight: 500;
  transition: color 0.3s ease;
}
a:hover {
  color: #005137;
}

section {
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 2rem 0;
  }
}

.section-description {
  max-width: 56ch;
  margin-bottom: 2rem;
}

.hero {
  position: relative;
  padding: 1.5rem 0;
  background-color: #F0EDE1;
}
@media (min-width: 768px) {
  .hero {
    padding: 2.5rem 0;
  }
}
.hero-aboutUs {
  background-color: #B4C18E;
}
@media (max-width: 768px) {
  .hero {
    background-color: transparent;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% - 50vw);
    background-color: #F0EDE1;
  }
}
.hero__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.hero__text {
  max-width: 100%;
}
.hero__title {
  font-family: "Sedan", sans-serif;
  font-size: 2.25rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__subtitle {
  font-size: "Poppins", sans-serif;
  color: #252525;
  max-width: 56ch;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image {
  width: 100%;
  min-width: 304px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero__image-aboutUs {
  border-radius: 0;
  box-shadow: none;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 0.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1rem;
  }
}

.grid {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .grid {
    gap: 1rem;
  }
}
.grid--4col {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--12col {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .grid--12col {
    grid-template-columns: repeat(12, 1fr);
  }
}

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    justify-items: center;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    justify-items: center;
  }
}

/* _components.scss */
/* === Buttons === */
.btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1;
}
.btn--primary {
  background-color: #E1FF8F;
  color: #005137;
  border-color: #005137;
}
.btn--primary:hover {
  background-color: rgb(231.8303571429, 255, 168.5);
  color: rgb(0, 55.5, 37.6851851852);
}
.btn--secondary {
  background-color: transparent;
  color: #5B7880;
  border-color: #5B7880;
}
.btn--secondary:hover {
  background-color: rgba(91, 120, 128, 0.1);
}
.btn--tertiary {
  border: 0px solid;
  background-color: transparent;
  color: #5B7880;
  text-decoration: underline;
}
.btn--tertiary:hover {
  background-color: rgba(91, 120, 128, 0.1);
}

/* === Product Cards === */
.product-card {
  max-width: 37rem;
  border-radius: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-card__image {
  background-color: #ddd;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2.5rem;
  overflow: hidden;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__content {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #615D4F;
  margin: 0;
  padding-top: 8px;
  text-align: left;
}
.product-card__text {
  font-size: 1rem;
  color: #252525;
  margin: 0;
  text-align: left;
}
.product-card .btn {
  align-self: flex-end;
}

/* === Ingredients Section === */
.ingredients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}
@media (max-width: 591px) {
  .ingredients-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

.ingredient-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  gap: 1rem;
  margin: 0;
}
@media (min-width: 592px) {
  .ingredient-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 17.5rem;
  }
}
.ingredient-card__visual-wrapper {
  position: relative;
  width: 7rem;
  aspect-ratio: 3/4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ingredient-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ingredient-card__image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%/40%;
  border: 1px solid #615D4F;
}
@media (min-width: 592px) {
  .ingredient-card__image-frame {
    order: 0;
  }
}
.ingredient-card__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.5rem;
  height: 2.34375rem;
}
.ingredient-card__text-group {
  flex: 1;
}
@media (min-width: 592px) {
  .ingredient-card__text-group {
    padding: 0;
  }
}
.ingredient-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #615D4F;
  margin: 0 0 0.5rem;
}
.ingredient-card__desc {
  font-size: 1rem;
  color: #252525;
  margin: 0;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
@media (max-width: 591px) {
  .steps-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  gap: 1rem;
  margin: 0;
}
@media (min-width: 592px) {
  .step-card {
    width: 17.5rem;
  }
}
.step-card__icon {
  width: 3.5rem;
  height: auto;
}
.step-card__text-group {
  flex: 1;
}
@media (min-width: 592px) {
  .step-card__text-group {
    padding: 0;
  }
}
.step-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #615D4F;
  margin: 0 0 0.5rem;
}
.step-card__desc {
  font-size: 1rem;
  color: #252525;
  margin: 0;
}

.product-details {
  margin-top: 2rem;
}
.product-details__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-details__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.product-details__box {
  border: 1px solid #615D4F;
  border-radius: 1.25rem;
  padding: 1rem;
  font-size: 1rem;
  color: #252525;
  background-color: #fff;
}
.product-details ul {
  padding-left: 1rem;
  margin: 0;
  list-style-type: circle;
}
.product-details li {
  margin-bottom: 0.5rem;
}

.other-products {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
@media (min-width: 592px) {
  .other-products {
    background-image: url("../assets/icons/mamine-box-braid.svg");
  }
}
.other-products .section-title {
  margin-bottom: 1rem;
}
.other-products .section-description {
  margin-bottom: 2rem;
  max-width: 68ch;
}
.other-products .product-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .other-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.other-products .product-card {
  border: 1px solid #615D4F;
}
.other-products .product-card--highlighted {
  background-color: #F0EDE1;
}

.post-card {
  position: relative;
  min-height: 11.25rem;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0.5rem;
  border: 1px solid #615D4F;
  border-radius: 1.5rem;
  background-color: #fff;
  overflow: hidden;
  align-items: stretch;
}
.post-card__left-side {
  width: 33%;
  position: relative;
}
.post-card__left-side::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.post-card__left-side .post-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
.post-card__right-side {
  width: 67%;
  display: flex;
  flex-direction: column;
}
.post-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #615D4F;
  margin: 0;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .post-card__title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.post-card__excerpt {
  font-size: 1rem;
  color: #252525;
  margin-top: 0.5rem;
  display: none;
}
@media (min-width: 768px) {
  .post-card__excerpt {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.post-card__date {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1rem;
  color: #252525;
}
.post-card .post-card__overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  text-indent: -9999px;
  cursor: pointer;
}
.post-card .post-card > *:not(.post-card__overlay-link) {
  position: relative;
  z-index: 3;
}
.post-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.back-to-posts {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .back-to-posts {
    padding-top: 2.5rem;
  }
}

.main-post {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1.5rem;
  background-color: #fff;
  overflow: hidden;
  align-items: stretch;
}
.main-post__image-wrapper {
  position: relative;
}
.main-post__image-wrapper::before {
  content: "";
  display: block;
  padding-top: 75%;
}
@media (min-width: 768px) {
  .main-post__image-wrapper::before {
    padding-top: 56.25%;
  }
}
.main-post__image-wrapper .main-post__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
.main-post__date {
  text-align: end;
}

/* === Links === */
.link {
  color: #1b9b73;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.link:hover {
  color: #005137;
}

/* === Navigation === */
.nav {
  background-color: #F0EDE1;
  width: 100%;
  position: relative;
}
.nav-aboutUs {
  background-color: #B4C18E;
}
.nav__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 74px;
  padding-bottom: 12px;
  position: relative;
}
@media (min-width: 1024px) {
  .nav__wrapper {
    height: 128px;
    padding-bottom: 0;
    align-items: center;
  }
}
.nav__burger {
  display: block;
  background: none;
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .nav__burger {
    display: none;
  }
}
.nav__burger img {
  width: 100%;
  height: auto;
  display: block;
}
.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
@media (min-width: 1024px) {
  .nav__logo {
    position: static;
    transform: none;
  }
}
.nav__logo img {
  height: 50px;
}
@media (min-width: 1024px) {
  .nav__logo img {
    height: 80px;
  }
}
.nav__menu {
  display: none;
}
@media (min-width: 1024px) {
  .nav__menu {
    display: block;
  }
  .nav__menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav__menu ul a {
    font-family: "Sedan", sans-serif;
    font-size: 1.25rem;
    color: #252525;
    font-weight: 400;
    display: inline-block;
    line-height: 1;
  }
  .nav__menu ul a.active {
    font-weight: 700;
  }
}

/* === Mobile Menu === */
/* Backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F0EDE1;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 999;
  height: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.mobile-menu-aboutUs {
  background-color: #B4C18E;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__header {
  position: relative;
  height: 74px;
  padding-left: 8px;
  padding-right: 1rem;
  padding-bottom: 12px;
}
.mobile-menu__logo {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
}
.mobile-menu__logo img {
  height: 50px;
}
.mobile-menu__close {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  position: absolute;
  left: 8px;
  bottom: 12px;
}
.mobile-menu__close img {
  width: 100%;
  height: auto;
  display: block;
}
.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 2rem;
}
.mobile-menu nav ul li {
  margin-bottom: 1.5rem;
}
.mobile-menu nav ul li a {
  font-size: 1.25rem;
  font-family: "Sedan", sans-serif;
  color: #252525;
  text-decoration: none;
}
.mobile-menu nav ul li a.active {
  font-weight: 700;
}

body.menu-open {
  overflow: hidden;
}

.footer {
  background-color: #AAA594;
  padding: 2rem 1rem;
  font-size: 0.875rem;
  color: #252525;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__brand {
  font-weight: 600;
  font-family: "Sedan", sans-serif;
  margin: 0;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  display: inline-block;
}
.footer__social a img {
  width: 24px;
  height: 24px;
  display: block;
}
.footer__bottom {
  margin-top: 1rem;
}
.footer__legal {
  text-align: left;
}
.footer__legal a {
  margin-right: 1rem;
  color: inherit;
  text-decoration: none;
}
.footer__legal a:hover {
  color: #005137;
}

.product-hero {
  background-color: #F0EDE1;
  width: 100%;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .product-hero {
    padding: 2.5rem 0;
  }
}
.product-hero__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.product-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-hero__visual picture {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 2.5rem;
  overflow: hidden;
}
.product-hero__visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-hero__tag {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-hero__title {
  font-size: 2.25rem;
  font-family: "Sedan", sans-serif;
  color: #000;
}
@media (min-width: 768px) {
  .product-hero__title {
    font-size: 3.5rem;
  }
}
.product-hero__price {
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
@media (min-width: 768px) {
  .product-hero__price {
    font-size: 3.5rem;
  }
}
.product-hero__char {
  font-weight: 900;
  margin: 0;
}
.product-hero__desc {
  font-size: 1rem;
  color: #252525;
  max-width: 45ch;
  margin: 0;
}
.product-hero__specs {
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  color: #615D4F;
  display: block;
  padding-left: 1.25rem;
  list-style: disc;
  font-style: italic;
}
.product-hero__notes {
  font-size: 0.875rem;
  font-style: italic;
  margin: 0;
}
.product-hero__notes span {
  font-weight: 600;
}
.product-hero__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #5B7880;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  color: #252525;
  gap: 0.75rem;
  line-height: 1;
}
.product-hero__quantity .qty-btn {
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero__quantity .qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 500;
}
.product-hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.product-hero__cta .quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.product-hero__cta .quantity input {
  width: 3rem;
  padding: 0.25rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
}
.product-hero__cta .btn {
  white-space: nowrap;
}

.strike {
  position: relative;
  display: inline-block;
}
.strike::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: rgb(255, 60, 0);
  transform: translateY(-50%);
}

.blog-hero {
  background-color: #F0EDE1;
  padding: 2.5rem 0;
}
.blog-hero .container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.blog-hero__inner {
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .blog-hero__inner {
    width: 75%;
  }
}
.blog-hero__title {
  font-family: "Sedan", sans-serif;
  font-size: 2.25rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .blog-hero__title {
    font-size: 3.5rem;
  }
}
.blog-hero__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #252525;
  max-width: 56ch;
  margin: 0;
}

.blog-posts__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-posts__inner {
    width: 75%;
    gap: 1.5rem;
  }
}

.blog-post-wrapper {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .blog-post-wrapper {
    flex-direction: row;
  }
}

.all-posts {
  width: 100%;
  text-align: left;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .all-posts {
    width: 25%;
  }
}
.all-posts__title {
  font-weight: 700;
  margin-top: 0;
}
.all-posts__list {
  padding-bottom: 1rem;
  margin: 0;
  list-style-type: circle;
  padding-left: 1.25rem;
}

.main-post {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .main-post {
    padding-bottom: 5rem;
  }
}

.main-post-container {
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .main-post-container {
    width: 75%;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.hidden {
  display: none;
}
.modal .modal-content {
  background: #fff;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.modal .modal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.modal .modal-content p {
  font-size: 1rem;
  color: #333;
}
.modal .modal-content .close-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
