/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.home {
  background-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

    /* Navigation */
    .home .nav {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 5%;
      gap: 2rem;
      position: relative;
      z-index: 100;
      background: #3C653A;
      background-image: url(../images/rectangle-1.svg);
    }

    /* Burger Menu */
    .home .burger-menu {
      display: none;
      flex-direction: column;
      gap: 0.375rem;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 101;
      background: transparent;
      border: none;
    }

    .home .burger-line {
      width: 1.75rem;
      height: 0.1875rem;
      background-color: #ffffff;
      transition: all 0.3s ease;
      border-radius: 0.125rem;
    }

    .home .burger-menu.active .burger-line:nth-child(1) {
      transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .home .burger-menu.active .burger-line:nth-child(2) {
      opacity: 0;
    }

    .home .burger-menu.active .burger-line:nth-child(3) {
      transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }

.home .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem;
  flex-shrink: 0;
}

.home .logo-2 {
  width: 100%;
  max-width: 12.75rem;
  height: auto;
  object-fit: contain;
}

    .home .nav-links {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1.8rem;
      flex: 1;
      justify-content: center;
      flex-wrap: wrap;
      transition: all 0.3s ease;
    }

.home .nav-item,
.home .nav-item-wrapper,
.home .div-wrapper,
.home .nav-item-3,
.home .nav-item-4 {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.home .nav-item-2,
.home .nav-item-5 {
  font-family: "Bicyclette", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.home .button-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background-color: #ef4623;
  border-radius: 0.375rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.home .button-wrapper:hover {
  background-color: #d63e1f;
}

.home .button-2 {
  font-family: "Bicyclette", Helvetica;
  font-weight: 700;
  color: var(--collection-1-neutral-colors-off-white);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0;
  line-height: normal;
  text-decoration: none;
}

/* Hero Section */
.home .hero {
  position: relative;
  width: 100%;
  min-height: auto;
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5% 8%;
  overflow: hidden;
  background: #3C653A;
  background-image: url(../images/rectangle-1.svg);
}

.home .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  z-index: 3;
}

.home .rectangle-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.4); */
  z-index: 1;
}

.home .unsplash {
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 100%;
  z-index: 9;
}

.home .text-wrapper-5 {
  margin-left: 5%;
  position: relative;
  z-index: 9;
  max-width: 90%;
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: #ffffff;
  font-size: clamp(1rem, 6vw, 7.5rem);
  letter-spacing: var(--h1-letter-spacing);
  line-height: 1.2;
  font-style: var(--h1-font-style);
  margin-bottom: 2rem;
}

.home .search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.625rem 2.5rem;
  position: relative;
  z-index: 2;
  background-color: #d9d9d9;
  border-radius: 5.625rem;
  width: 100%;
  max-width: 27.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.home .search-bar:hover {
  background-color: #c9c9c9;
}

.home .text-wrapper-6 {
  font-family: "Bicyclette", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0;
  line-height: normal;
  flex: 1;
}

.home .search-streamline {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* About Section */
.home .about {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.675rem;
  padding: 5% 8%;
}

.home .text-wrapper-4 {
  width: 100%;
  max-width: 100rem;
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: #000000;
  font-size: clamp(1.5rem, 3vw, 2.875rem);
  text-align: center;
  letter-spacing: var(--h2-letter-spacing);
  line-height: normal;
  font-style: var(--h2-font-style);
}

.home .BTN-newsletter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background-color: #ef4623;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-left: 5%;
}

.home .BTN-newsletter:hover {
  background-color: #d63e1f;
}

.home .button-3 {
  font-family: "Bicyclette", Helvetica;
  font-weight: 700;
  color: var(--collection-1-neutral-colors-off-white);
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/* Cards Section */
.home .cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 8%;
  background-image: url(../images/greybg.svg);
  background-size: cover;
  background-position: center;
}

.home .cards-2 {
  width: 100%;
  max-width: 97.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4%;
  flex-wrap: wrap;
}

.home .home-card,
.home .home-card-2,
.home .home-card-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  padding: 1.25rem;
  border-radius: 1.875rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  flex: 1 1 calc(33.333% - 3.33%);
  min-width: 17.5rem;
  max-width: 27.5rem;
  margin-bottom: 2rem;
}

.home .rectangle,
.home .img,
.home .rectangle-2 {
  width: 100%;
  height: auto;
  aspect-ratio: 1.36;
  object-fit: cover;
  border-radius: 0.5rem;
}

.home .all-the-rides-all-in {
  width: 100%;
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: #000000;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  letter-spacing: var(--h3-letter-spacing);
  line-height: 1.3;
  font-style: var(--h3-font-style);
  text-align: left;
}

.home .text-wrapper-3 {
  width: 100%;
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  color: #000000;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  letter-spacing: var(--body-letter-spacing);
  line-height: 1.5;
  font-style: var(--body-font-style);
}

    /* Frame Wrapper Section */
    .home .frame-wrapper {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 2.625rem;
      padding: 5% 8%;
      background-color: #664F3B;
      /* background-image: url(../images/greybg.svg); */
    }

.home .frame {
  display: flex;
  width: 100%;
  max-width: 99.375rem;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
  flex-wrap: wrap;
}

.home .photo {
  width: 100%;
  max-width: 48.75rem;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  flex: 1 1 45%;
  min-width: 18.75rem;
}

.home .group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 45%;
  min-width: 18.75rem;
  max-width: 46.83rem;
}

.home .text-wrapper-2 {
  width: 100%;
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.875rem);
  letter-spacing: var(--h2-letter-spacing);
  line-height: 1.3;
  font-style: var(--h2-font-style);
}

.home .p {
  width: 100%;
  font-family: var(--small-font-family);
  font-weight: var(--small-font-weight);
  color: #ffffff;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  letter-spacing: var(--small-letter-spacing);
  line-height: 1.6;
  font-style: var(--small-font-style);
}

.home .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background-color: #ef4623;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.home .button:hover {
  background-color: #d63e1f;
}

/* Event Search Section */
.home .event-search {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 2.625rem;
  padding: 5% 8%;
  background-image: url(../images/eventsearch-1.png);
  background-size: cover;
  background-position: center;
  background-color: var(--collection-1-neutral-colors-off-white);
}

.home .div {
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--collection-1-neutral-colors-text);
  font-size: clamp(1.5rem, 3vw, 2.875rem);
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  white-space: nowrap;
  font-style: var(--h2-font-style);
  text-align: center;
}

/* Footer */
.home .footer {
  width: 100%;
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2.5rem 5%;
  margin-top: auto;
}

.home .footer-BG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--collection-1-accent-colors-accent-orange);
  z-index: 0;
}

.home .text-wrapper {
  position: relative;
  z-index: 1;
  font-family: "Bicyclette", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.home .instagram,
.home .brand-strava,
.home .user-circle-single {
  width: clamp(1.5rem, 3vw, 2rem);
  height: clamp(1.5rem, 3vw, 2rem);
  transition: opacity 0.2s ease;
}

.home .socials a:hover .instagram,
.home .socials a:hover .brand-strava,
.home .socials a:hover .user-circle-single {
  opacity: 0.8;
}

.home .terms-conditions {
  position: relative;
  z-index: 1;
  font-family: "Bicyclette", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.home .terms-conditions:hover {
  text-decoration: underline;
}

/* Accessibility */
.home .nav-item:hover .nav-item-2,
.home .nav-item-wrapper:hover .nav-item-2,
.home .div-wrapper:hover .nav-item-2,
.home .nav-item-3:hover .nav-item-2,
.home .nav-item-4:hover .nav-item-5 {
  text-decoration: underline;
}

.home .nav-item:focus,
.home .nav-item-wrapper:focus,
.home .div-wrapper:focus,
.home .nav-item-3:focus,
.home .nav-item-4:focus,
.home .button-wrapper:focus-within,
.home .search-bar:focus-within,
.home .BTN-newsletter:focus,
.home .button:focus,
.home .socials a:focus,
.home .terms-conditions:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* TNP Subscription Form Styles */
.tnp-subscription {
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.tnp-subscription .tnp-field {
  margin-bottom: 1.5rem;
  position: relative;
}

.tnp-subscription .tnp-field:last-child {
  margin-bottom: 0;
}

.tnp-subscription label {
  display: block;
  font-family: "Bicyclette", Helvetica;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.25;
}

.tnp-subscription input[type="text"],
.tnp-subscription input[type="email"],
.tnp-subscription input[type="tel"],
.tnp-subscription textarea,
.tnp-subscription select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  font-family: "Bicyclette", Helvetica;
  font-size: 1rem;
  font-weight: 400;
  color: #111827;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

.tnp-subscription input[type="text"]:focus,
.tnp-subscription input[type="email"]:focus,
.tnp-subscription input[type="tel"]:focus,
.tnp-subscription textarea:focus,
.tnp-subscription select:focus {
  outline: none;
  border-color: #3C653A;
  box-shadow: 0 0 0 3px rgba(60, 101, 58, 0.1);
  background-color: #ffffff;
}

.tnp-subscription input[type="text"]:hover,
.tnp-subscription input[type="email"]:hover,
.tnp-subscription input[type="tel"]:hover,
.tnp-subscription textarea:hover,
.tnp-subscription select:hover {
  border-color: #9ca3af;
}

.tnp-subscription input[type="text"]::placeholder,
.tnp-subscription input[type="email"]::placeholder,
.tnp-subscription input[type="tel"]::placeholder,
.tnp-subscription textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.tnp-subscription textarea {
  min-height: 6rem;
  resize: vertical;
}

.tnp-subscription select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
  appearance: none;
}

.tnp-subscription .tnp-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #ef4623;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-family: "Bicyclette", Helvetica;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin-top: 1rem;
}

.tnp-subscription .tnp-submit:hover {
  background-color: #d63e1f;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.tnp-subscription .tnp-submit:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tnp-subscription .tnp-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 70, 35, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tnp-subscription .tnp-submit:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Checkbox and Radio Styling */
.tnp-subscription input[type="checkbox"],
.tnp-subscription input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.75rem;
  accent-color: #3C653A;
  cursor: pointer;
}

.tnp-subscription .tnp-field-checkbox,
.tnp-subscription .tnp-field-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tnp-subscription .tnp-field-checkbox label,
.tnp-subscription .tnp-field-radio label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  cursor: pointer;
  flex: 1;
}

/* Error States */
.tnp-subscription .tnp-field.tnp-field-error input,
.tnp-subscription .tnp-field.tnp-field-error textarea,
.tnp-subscription .tnp-field.tnp-field-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.tnp-subscription .tnp-field-error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 400;
  line-height: 1.25;
}

/* Success State */
.tnp-subscription .tnp-success-message {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

/* Loading State */
.tnp-subscription .tnp-submit.tnp-loading {
  position: relative;
  color: transparent;
}

.tnp-subscription .tnp-submit.tnp-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -0.625rem;
  margin-left: -0.625rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: tnp-spin 1s linear infinite;
}

@keyframes tnp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
  .tnp-subscription {
    padding: 1.5rem;
    margin: 0 1rem;
    max-width: calc(100% - 2rem);
  }

  .tnp-subscription .tnp-field {
    margin-bottom: 1.25rem;
  }

  .tnp-subscription input[type="text"],
  .tnp-subscription input[type="email"],
  .tnp-subscription input[type="tel"],
  .tnp-subscription textarea,
  .tnp-subscription select {
    padding: 0.875rem;
    font-size: 1rem;
  }

  .tnp-subscription .tnp-submit {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .tnp-subscription label {
    font-size: 0.8125rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .tnp-subscription {
    max-width: 28rem;
    padding: 1.75rem;
  }
}

/* Mobile Styles (320px - 767px) */
@media (max-width: 767px) {
      .home .nav {
        flex-direction: row;
        align-items: center;
        padding: 1rem 5%;
        gap: 1rem;
        flex-wrap: nowrap;
      }

      .home .logo {
        align-items: flex-start;
      }

      .home .burger-menu {
        display: flex;
      }

      .home .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 20rem;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 0.75rem;
        padding: 5rem 2rem 2rem;
        z-index: 99;
        transition: left 0.3s ease;
        overflow-y: auto;
      }

      .home .nav-links.active {
        left: 0;
      }

  .home .nav-item,
  .home .nav-item-wrapper,
  .home .div-wrapper,
  .home .nav-item-3,
  .home .nav-item-4 {
    width: 100%;
    padding: 0.5rem;
  }

      .home .button-wrapper {
        width: 100px;
        justify-content: center;
        margin-top: 1rem;
      }

      .home .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 98;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .home .mobile-overlay.active {
        display: block;
        opacity: 1;
      }

  .home .hero {
    min-height: auto;
    padding: 8% 5%;
    align-items: center;
  }

  .home .text-wrapper-5 {
    max-width: 100%;
    margin-left: 7%;
    /* text-align: center; */
  }

  .home .BTN-newsletter {
    margin-left: 7%;
  }

  .home .search-bar {
    max-width: 100%;
    padding: 0.75rem 1.5rem;
  }

  .home .about {
    padding: 8% 5%;
  }

  .home .cards {
    padding: 8% 5%;
  }

  .home .cards-2 {
    gap: 1.5rem;
  }

  .home .home-card,
  .home .home-card-2,
  .home .home-card-3 {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .home .frame-wrapper {
    padding: 8% 5%;
  }

  .home .frame {
    flex-direction: column;
    gap: 2rem;
  }

  .home .photo {
    max-width: 100%;
  }

  .home .group {
    max-width: 100%;
  }

  .home .event-search {
    padding: 8% 5%;
  }

  .home .footer {
    padding: 2rem 5%;
    gap: 1rem;
  }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .home .nav {
    padding: 1.25rem 5%;
  }

  .home .nav-links {
    gap: 1rem;
  }

  .home .hero {
    min-height: auto;
    padding: 6% 6%;
  }

  .home .cards-2 {
    gap: 3%;
  }

  .home .home-card,
  .home .home-card-2,
  .home .home-card-3 {
    flex: 1 1 calc(50% - 1.5%);
    max-width: calc(50% - 1.5%);
  }

  .home .frame {
    gap: 2.5rem;
  }
}

/* Laptop Styles (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .home .nav {
    padding: 1.5rem 6%;
  }

  .home .hero {
    padding: 5% 7%;
  }

  .home .about,
  .home .cards,
  .home .frame-wrapper,
  .home .event-search {
    padding: 5% 7%;
  }
}

/* Large Monitor Styles (1440px+) */
@media (min-width: 1440px) {
  .home .nav {
    padding: 1.5rem 8%;
  }

  .home .hero {
    padding: 5% 10%;
  }

  .home .about,
  .home .cards,
  .home .frame-wrapper,
  .home .event-search {
    padding: 5% 10%;
  }

  .home .cards-2 {
    max-width: 120rem;
  }

  .home .frame {
    max-width: 120rem;
  }
}

.blog-category {
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 520px;
  position: relative;
}

.blog-category .blog-grid {
  position: absolute;
  top: 161px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #d9d9d9;
  padding: 0 5%;
}

.blog-category .div {
  margin-top: 30px;
  width: 100%;
  max-width: 120rem;
  height: auto;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px 70px;
  padding-bottom: 30px;
}

.blog-category .page-title {
  position: absolute;
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 7px;
}

.blog-category .text-wrapper-3 {
  height: auto;
  margin-top: 50px;
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--collection-1-neutral-colors-text);
  font-size: clamp(2rem, 5vw, var(--h1-font-size));
  text-align: center;
  letter-spacing: var(--h1-letter-spacing);
  white-space: nowrap;
  font-style: var(--h1-font-style);
  margin-bottom: 0;
}

/* Mobile Styles for Blog Category (320px - 767px) */
@media (max-width: 767px) {
  .blog-category {
    height: auto;
    min-height: 800px;
  }

  .blog-category .blog-grid {
    top: 161px;
    padding: 0 5%;
  }

  .blog-category .div {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .blog-category .text-wrapper-3 {
    margin-top: 50px;
    white-space: normal;
    padding: 0 1rem;
  }
}

/* Tablet Styles for Blog Category (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-category {
    height: auto;
    min-height: 600px;
  }

  .blog-category .blog-grid {
    top: 161px;
    padding: 0 6%;
  }

  .blog-category .div {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 35px 50px;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .blog-category .text-wrapper-3 {
    margin-top: 50px;
  }
}

/* Laptop Styles for Blog Category (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .blog-category .blog-grid {
    padding: 0 7%;
  }

  .blog-category .div {
    gap: 35px 60px;
    margin-top: 30px;
  }

  .blog-category .text-wrapper-3 {
    margin-top: 50px;
  }
}

/* Large Monitor Styles for Blog Category (1440px+) */
@media (min-width: 1440px) {
  .blog-category .blog-grid {
    padding: 0 10%;
  }

  .blog-category .div {
    max-width: 140rem;
    gap: 50px 80px;
  }
}

