/* [project]/src/components/search/SearchHero.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.search-hero {
  justify-content: center;
  align-items: center;
  height: 700px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #000 !important;
}

.search-hero__background {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.search-hero__background-image {
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.search-hero__overlay {
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .6) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.search-hero__content {
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.search-container {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .95);
  border-radius: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.search-container__title {
  text-align: left;
  margin-bottom: 20px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #000 !important;
}

.search-container__form {
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 30px;
  display: grid;
}

@media (max-width: 768px) {
  .search-container__form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.search-field {
  flex-direction: column;
  gap: 10px;
  display: flex;
  position: relative;
}

.search-field__label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000 !important;
}

.search-field__autocomplete-wrapper {
  width: 100%;
  max-height: 48px;
  position: relative;
  overflow: hidden;
}

.search-field__autocomplete-wrapper > div {
  width: 100% !important;
  max-height: 48px !important;
  overflow: hidden !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root {
  flex-wrap: nowrap !important;
  max-height: 48px !important;
  overflow: hidden !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-inputRoot {
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-flow: row !important;
  align-items: center !important;
  width: 100% !important;
  height: 48px !important;
  max-height: 48px !important;
  padding: 12px 20px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-inputRoot::-webkit-scrollbar {
  display: none;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-inputRoot.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #e0e0e0 !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiInputBase-input {
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiInputBase-input::-webkit-scrollbar {
  display: none;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-tag {
  flex-shrink: 0;
  height: 24px;
  max-height: 24px;
  color: #000 !important;
  background-color: #e0e0e0 !important;
  margin: 0 4px 0 0 !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-tag .MuiChip-deleteIcon {
  color: #000 !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-endAdornment {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-paper, .search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-paper .MuiAutocomplete-listbox {
  max-width: 100% !important;
  overflow: hidden !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-paper .MuiAutocomplete-listbox li {
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  align-items: center !important;
  max-width: 100% !important;
  padding: 8px 16px !important;
  display: flex !important;
  overflow: hidden !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-paper .MuiAutocomplete-listbox li:focus {
  background-color: #e0e0e0 !important;
}

.search-field__autocomplete-wrapper .MuiAutocomplete-root .MuiAutocomplete-paper .MuiAutocomplete-listbox li span {
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  flex: 1 !important;
  overflow: hidden !important;
}

.search-button {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #374151;
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.search-button:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

.search-button:active {
  transform: translateY(0);
}

.search-button:focus {
  outline-offset: 2px !important;
  outline: 2px solid #e0e0e0 !important;
}

.search-button svg {
  width: 18px;
  height: 18px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .search-hero {
    height: 520px !important;
  }

  .search-container {
    max-width: 900px !important;
    margin: 0 30px !important;
    padding: 40px 30px !important;
  }

  .search-container__title {
    margin-bottom: 45px !important;
    font-size: 2rem !important;
  }

  .search-container__form {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .search-field__label {
    margin-bottom: 8px !important;
    font-size: 1.1rem !important;
  }

  .search-field__autocomplete-wrapper {
    width: 100% !important;
  }

  .search-button {
    justify-content: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 14px 32px !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 768px) {
  .search-hero {
    height: 520px;
    padding: 20px 0;
  }

  .search-container {
    padding: 30px 20px;
  }

  .search-container__title {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }

  .search-container__form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .search-field__label {
    font-size: .9rem;
  }

  .search-button {
    padding: 10px 24px;
    font-size: .9rem;
  }
}

/* [project]/src/components/upcomingEvents/UpcomingEvents.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.upcoming-events {
  background-color: #fff;
  padding: 50px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fff !important;
}

.upcoming-events__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 30px 0 10px;
}

.upcoming-events__header {
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  display: flex;
}

.upcoming-events__title-section {
  flex: 1;
}

.upcoming-events__title {
  margin: 0 0 12px;
  padding-left: 15px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #000 !important;
}

.upcoming-events__subtitle-container {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-left: 15px;
  display: flex;
}

.upcoming-events__subtitle {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #7a7a7a !important;
}

.upcoming-events__see-all {
  white-space: nowrap;
  padding-right: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}

.upcoming-events__cards {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 24px;
  padding: 30px 10px 20px 15px;
  display: flex;
  overflow-x: auto;
}

.upcoming-events__cards::-webkit-scrollbar {
  display: none;
}

.upcoming-events__card {
  background: #fff;
  border-radius: 16px;
  flex-shrink: 0;
  width: 350px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.upcoming-events__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}

.upcoming-events__label {
  color: #fff;
  z-index: 2;
  text-transform: capitalize;
  letter-spacing: .5px;
  border-bottom-right-radius: 15px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
}

.upcoming-events__image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.upcoming-events__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.upcoming-events__card:hover .upcoming-events__image {
  transform: scale(1.05);
}

.upcoming-events__image-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
  padding: 20px 16px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.upcoming-events__venue-name {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .875rem;
  font-weight: 600;
}

.upcoming-events__content {
  padding: 20px;
}

.upcoming-events__event-title {
  color: #171717;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.upcoming-events__location {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #6e6e6e !important;
}

.upcoming-events__details {
  margin-bottom: 16px;
}

.upcoming-events__detail-item {
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  color: #6e6e6e !important;
}

.upcoming-events__detail-item:last-child {
  margin-bottom: 0;
}

.upcoming-events__icon {
  color: #6b7280 !important;
  font-size: 1rem !important;
}

.upcoming-events__calendar-icon {
  color: #cf4a4a !important;
  font-size: 1rem !important;
}

.upcoming-events__tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  display: flex;
}

.upcoming-events__tag {
  white-space: nowrap;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #6e6e6e !important;
  background: #f6f5f8 !important;
}

.upcoming-events__cta-button {
  width: 100%;
  font-weight: 600;
  color: #000 !important;
  text-transform: none !important;
  border-radius: 50px !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  transition: all .2s !important;
}

.upcoming-events__cta-button:hover {
  background-color: #f9fafb !important;
  border-color: #9ca3af !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .upcoming-events {
    padding: 50px 0 !important;
  }

  .upcoming-events__container {
    padding: 0 10px !important;
  }

  .upcoming-events__title {
    font-size: 2rem !important;
  }

  .upcoming-events__subtitle {
    font-size: 1.1rem !important;
  }

  .upcoming-events__cards {
    gap: 25px !important;
    padding-top: 35px !important;
  }

  .upcoming-events__card {
    width: 300px !important;
  }

  .upcoming-events__event-title {
    font-size: 1.3rem !important;
  }

  .upcoming-events__location {
    font-size: .9rem !important;
  }
}

@media (max-width: 768px) {
  .upcoming-events {
    padding: 40px 0;
  }

  .upcoming-events__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .upcoming-events__title {
    font-size: 2rem;
  }

  .upcoming-events__subtitle-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .upcoming-events__see-all {
    margin-left: 0;
  }

  .upcoming-events__cards {
    gap: 16px;
  }

  .upcoming-events__card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .upcoming-events {
    padding-top: 50px;
  }

  .upcoming-events__container {
    padding: 0;
  }

  .upcoming-events__title {
    font-size: 1.5rem;
  }

  .upcoming-events__content {
    padding: 16px;
  }

  .upcoming-events__event-title {
    font-size: 1.125rem;
  }
}

/* [project]/src/components/popularCities/PopularCities.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.popular-cities {
  padding: 0px 0dppx;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fff !important;
}

.popular-cities__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.popular-cities__title {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #000 !important;
}

.popular-cities__list {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 32px;
  padding-bottom: 20px;
  display: flex;
  overflow-x: auto;
}

.popular-cities__list::-webkit-scrollbar {
  display: none;
}

.popular-cities__city {
  cursor: pointer;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  transition: transform .2s;
  display: flex;
}

.popular-cities__city:hover {
  transform: translateY(-4px);
}

.popular-cities__city-image-container {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  transition: box-shadow .2s;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.popular-cities__city-image-container:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.popular-cities__city-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: transform .2s;
}

.popular-cities__city-image:hover {
  transform: scale(1.05);
}

.popular-cities__city-placeholder {
  opacity: .6;
  background: repeating-conic-gradient(#f3f4f6 0deg, #f3f4f6 10deg, #e5e7eb 10deg, #e5e7eb 20deg) 0 0 / 20px 20px;
  width: 100%;
  height: 100%;
}

.popular-cities__city-name {
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #000 !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .popular-cities {
    padding: 50px 0 !important;
  }

  .popular-cities__container {
    padding: 0 30px !important;
  }

  .popular-cities__title {
    margin-bottom: 35px !important;
    font-size: 2rem !important;
  }

  .popular-cities__list {
    gap: 30px !important;
  }

  .popular-cities__city-image-container {
    width: 110px !important;
    height: 110px !important;
  }

  .popular-cities__city-name {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 768px) {
  .popular-cities__title {
    margin-bottom: 24px;
    font-size: 1.5rem;
  }

  .popular-cities__list {
    gap: 20px;
  }

  .popular-cities__city-image-container {
    width: 80px;
    height: 80px;
  }

  .popular-cities__city-name {
    font-size: .875rem;
  }
}

@media (max-width: 480px) {
  .popular-cities {
    padding-bottom: 0;
  }

  .popular-cities__container {
    padding: 0 16px;
  }

  .popular-cities__title {
    font-size: 1.25rem;
  }

  .popular-cities__list {
    gap: 16px;
  }

  .popular-cities__city-image-container {
    width: 70px;
    height: 70px;
  }

  .popular-cities__city-name {
    font-size: .8rem;
  }
}

/* [project]/src/components/journals/Journals.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.journals {
  padding: 50px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fff !important;
}

.journals__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.journals__header {
  text-align: left;
  margin-bottom: 40px;
}

.journals__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #000 !important;
}

.journals__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #7a7a7a !important;
}

.journals__content {
  grid-template-columns: 3fr 2fr;
  align-items: start;
  gap: 60px;
  display: grid;
}

@media (max-width: 768px) {
  .journals__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.journals__featured-card {
  border-radius: 20px;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.journals__featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.journals__featured-image {
  align-items: flex-end;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.journals__featured-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.journals__featured-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.journals__featured-overlay {
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.journals__featured-title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff !important;
}

.journals__featured-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity .2s;
  color: #fff !important;
}

.journals__featured-link:hover {
  opacity: .8;
}

.journals__articles {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.journals__article-card {
  background: #fff;
  border-radius: 12px;
  gap: 20px;
  height: 150px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.journals__article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.journals__article-image {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  flex-shrink: 0;
  width: 150px;
  height: 100%;
  overflow: hidden;
}

.journals__article-img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.journals__article-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  min-height: 100px;
  padding: 20px 0;
  display: flex;
}

.journals__article-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #000 !important;
}

.journals__article-description {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  color: #6e6e6e !important;
}

.journals__article-link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity .2s;
  color: #000 !important;
}

.journals__article-link:hover {
  opacity: .7;
}

.journals__article-img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.journals__article-image-placeholder {
  color: #6b7280;
  text-align: center;
  background-color: #f3f4f6;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: .875rem;
  display: flex;
}

.journals__article-image-placeholder span {
  padding: 0 16px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .journals__content {
    gap: 40px;
  }

  .journals__featured-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .journals__title {
    font-size: 2rem;
  }

  .journals__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journals__featured-image {
    height: 400px;
  }

  .journals__featured-overlay {
    padding: 30px 20px;
  }

  .journals__featured-title {
    font-size: 1.5rem;
  }

  .journals__article-card {
    gap: 16px;
    height: 120px;
  }

  .journals__article-image {
    border-radius: 8px 0 0 8px;
    width: 100px;
    height: 100%;
  }

  .journals__article-content {
    min-height: auto;
    padding: 10px;
  }

  .journals__article-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .journals__container {
    padding: 0 16px;
  }

  .journals__title {
    font-size: 1.25rem;
  }

  .journals__featured-image {
    height: 300px;
  }

  .journals__featured-overlay {
    padding: 20px 16px;
  }

  .journals__featured-title {
    font-size: 1.25rem;
  }

  .journals__article-card {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }

  .journals__article-image {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: 120px;
  }

  .journals__article-content {
    min-height: auto;
    padding: 0 10px 10px;
  }

  .journals__article-title {
    font-size: 1.125rem;
  }

  .journals__article-description {
    font-size: .875rem;
  }
}

/* [project]/src/components/videoPopup/VideoPopup.scss.css [app-client] (css) */
.video-popup-overlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
  background-color: rgba(0, 0, 0, .85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .3s ease-out fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.video-popup {
  background: #1a1a1a;
  border-radius: 16px;
  flex-direction: column;
  width: 500px;
  height: 500px;
  animation: .3s ease-out slideIn;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
  .video-popup {
    border-radius: 12px;
    width: 90vw;
    max-width: 500px;
    height: 90vh;
    max-height: 500px;
  }
}

.video-popup__header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-bottom: 1px solid #333;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  display: flex;
}

@media (max-width: 768px) {
  .video-popup__header {
    padding: 16px 16px 12px;
  }
}

.video-popup__title-section {
  flex: 1;
  margin-right: 16px;
}

.video-popup__title {
  color: #fff;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .video-popup__title {
    font-size: 20px;
  }
}

.video-popup__description {
  color: #b0b0b0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .video-popup__description {
    font-size: 13px;
  }
}

.video-popup__close-button {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  transition: all .2s;
  display: flex;
}

.video-popup__close-button:hover {
  background-color: rgba(255, 255, 255, .1);
  transform: scale(1.05);
}

.video-popup__close-button:active {
  transform: scale(.95);
}

.video-popup__close-button svg {
  width: 20px;
  height: 20px;
}

.video-popup__content {
  background: #000;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 0;
  display: flex;
}

.video-popup__video-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.video-popup__video {
  -o-object-fit: contain;
  object-fit: contain;
  background: #000;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  max-height: 350px;
}

@media (max-width: 768px) {
  .video-popup__video {
    max-height: 60vh;
  }
}

.video-popup__no-video {
  color: #b0b0b0;
  text-align: center;
  background-color: #2a2a2a;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  display: flex;
}

.video-popup__no-video p {
  margin: 0;
  padding: 0 20px;
  line-height: 1.4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(.9)translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.video-popup__loading {
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 16px;
  display: flex;
}

.video-popup__error {
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  display: flex;
}

.video-popup__error svg {
  color: #ef4444;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.video-popup__error h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.video-popup__error p {
  color: #b0b0b0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 480px) {
  .video-popup-overlay {
    padding: 10px;
  }

  .video-popup {
    border-radius: 8px;
  }

  .video-popup__header {
    padding: 12px 12px 8px;
  }

  .video-popup__title {
    font-size: 18px;
  }

  .video-popup__description {
    font-size: 12px;
  }
}

/* [project]/src/components/videoCard/VideoCard.scss.css [app-client] (css) */
.video-card {
  background-color: #fff;
  padding: 40px 0;
}

.video-card__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-card__header {
  text-align: left;
  margin-bottom: 40px;
}

.video-card__title {
  color: #000;
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.video-card__description {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.video-card__videos {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 24px;
  padding-bottom: 20px;
  display: flex;
  overflow-x: auto;
}

.video-card__videos::-webkit-scrollbar {
  display: none;
}

.video-card__video {
  flex-shrink: 0;
  width: 250px;
}

.video-card__thumbnail {
  cursor: pointer;
  border-radius: 12px;
  width: 100%;
  height: 400px;
  margin-bottom: 16px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.video-card__thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.video-card__thumbnail:active {
  transform: scale(.98);
}

.video-card__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-card__image-placeholder {
  color: #6b7280;
  text-align: center;
  background-color: #f3f4f6;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: .875rem;
  display: flex;
}

.video-card__image-placeholder span {
  padding: 0 16px;
  line-height: 1.4;
}

.video-card__caption-overlay {
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
  padding: 20px 16px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.video-card__caption {
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
  margin: 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff !important;
}

.video-card__play-button {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.video-card__play-button:hover {
  background-color: rgba(0, 0, 0, .3);
  transform: translate(-50%, -50%)scale(1.1);
}

.video-card__play-button svg {
  width: 24px;
  height: 24px;
  transition: opacity .3s;
}

.video-card__thumbnail:hover .video-card__play-button {
  background-color: rgba(0, 0, 0, .3);
}

.video-card__thumbnail:hover .video-card__play-button svg {
  opacity: .7;
}

.video-card__caption {
  color: #333;
  margin: 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .video-card__container {
    max-width: 1200px;
  }

  .video-card__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .video-card {
    padding-top: 30px;
  }

  .video-card__title {
    font-size: 2rem;
  }

  .video-card__description {
    font-size: 1rem;
  }

  .video-card__videos {
    gap: 16px;
  }

  .video-card__video {
    width: 240px;
  }

  .video-card__thumbnail {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .video-card__container {
    padding: 0 16px;
  }

  .video-card__title {
    font-size: 1.25rem;
  }

  .video-card__description {
    font-size: .875rem;
  }

  .video-card__videos {
    gap: 12px;
  }

  .video-card__video {
    width: 200px;
  }

  .video-card__thumbnail {
    height: 280px;
  }

  .video-card__play-button {
    width: 50px;
    height: 50px;
  }

  .video-card__play-button svg {
    width: 20px;
    height: 20px;
  }
}

/* [project]/src/components/categories/Categories.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.categories {
  padding: 10px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fff !important;
}

.categories__container {
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.categories__card {
  border-radius: 16px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  background-color: #f6f5f8 !important;
}

.categories__header {
  margin-bottom: 32px;
}

.categories__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 2;
  color: #000 !important;
}

.categories__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #7a7a7a !important;
}

.categories__tags {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.categories__tag {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
  color: #6e6e6e !important;
  background-color: #ebebed !important;
}

.categories__tag:hover {
  background-color: #d0d0d0;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

.categories__tag:active {
  transform: translateY(0);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .categories {
    padding: 50px 0 !important;
  }

  .categories__container {
    padding: 0 30px !important;
  }

  .categories__card {
    max-width: 900px !important;
    padding: 40px !important;
  }

  .categories__title {
    font-size: 2rem !important;
  }

  .categories__subtitle {
    font-size: 1.1rem !important;
  }

  .categories__tags {
    gap: 12px !important;
  }

  .categories__tag {
    padding: 10px 20px !important;
    font-size: .9rem !important;
  }
}

@media (max-width: 768px) {
  .categories {
    padding-top: 0;
  }

  .categories__card {
    padding: 24px 20px;
  }

  .categories__title {
    font-size: 1.5rem;
  }

  .categories__subtitle {
    font-size: .9rem;
  }

  .categories__tags {
    gap: 8px;
  }

  .categories__tag {
    padding: 6px 14px;
    font-size: .75rem;
  }
}

@media (max-width: 480px) {
  .categories__container {
    padding: 0 16px;
  }

  .categories__card {
    padding: 24px 20px;
  }

  .categories__title {
    font-size: 1.25rem;
  }

  .categories__subtitle {
    font-size: .9rem;
  }

  .categories__tags {
    gap: 8px;
  }

  .categories__tag {
    padding: 6px 14px;
    font-size: .75rem;
  }
}

/* [project]/src/components/topRatedVenues/TopRatedVenues.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.top-rated-venues {
  background-color: #fff;
  padding: 50px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.top-rated-venues__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-rated-venues__header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.top-rated-venues__title-section {
  flex: 1;
}

.top-rated-venues__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #000 !important;
}

.top-rated-venues__subtitle-container {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.top-rated-venues__subtitle {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #7a7a7a !important;
}

.top-rated-venues__see-all {
  color: #000;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}

.top-rated-venues__see-all:hover {
  color: #2563eb;
  text-decoration: underline;
}

.top-rated-venues__cards {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 24px;
  padding-bottom: 20px;
  display: flex;
  overflow-x: auto;
}

.top-rated-venues__cards::-webkit-scrollbar {
  display: none;
}

.top-rated-venues__card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  flex-shrink: 0;
  width: 380px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.top-rated-venues__card:hover {
  transform: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.top-rated-venues__card--clickable {
  cursor: pointer;
}

.top-rated-venues__card--clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}

.top-rated-venues__coming-soon {
  color: #fff;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .5px;
  background-color: #ef4444;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 12px;
  right: 12px;
}

.top-rated-venues__image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.top-rated-venues__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.top-rated-venues__card--clickable:hover .top-rated-venues__image {
  transform: scale(1.05);
}

.top-rated-venues__content {
  padding: 20px;
}

.top-rated-venues__header-row {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  display: flex;
}

.top-rated-venues__venue-name {
  color: #171717;
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.top-rated-venues__rating {
  margin-bottom: 12px;
}

.top-rated-venues__rating .rating-display {
  align-items: center;
  gap: 6px;
  font-size: 14px;
  display: flex;
}

.top-rated-venues__rating .rating-display .rating-count {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.top-rated-venues__rating .rating-display .rating-stars {
  color: #f7bf33;
  letter-spacing: 1px;
  font-size: 16px;
}

.top-rated-venues__rating .rating-display .review-count {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
}

.top-rated-venues__location {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #6e6e6e !important;
}

.top-rated-venues__details {
  margin-bottom: 16px;
}

.top-rated-venues__detail-item {
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  color: #6e6e6e !important;
}

.top-rated-venues__detail-item:last-child {
  margin-bottom: 0;
}

.top-rated-venues__detail-item span {
  align-items: center;
  display: flex;
}

.top-rated-venues__status {
  letter-spacing: .5px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.top-rated-venues__status--open {
  color: #10b981;
  background-color: rgba(0, 0, 0, 0);
}

.top-rated-venues__status--closed {
  color: #ef4444;
  background-color: rgba(0, 0, 0, 0);
}

.top-rated-venues__icon {
  color: #6b7280 !important;
  font-size: 1rem !important;
}

.top-rated-venues__tags {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.top-rated-venues__tag {
  white-space: nowrap;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #6e6e6e !important;
  background: #f6f5f8 !important;
}

.top-rated-venues__pagination {
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  display: flex;
}

.top-rated-venues__dot {
  cursor: pointer;
  background-color: #d1d5db;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transition: background-color .2s;
}

.top-rated-venues__dot:hover {
  background-color: #9ca3af;
}

.top-rated-venues__dot--active {
  background-color: #374151;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-rated-venues {
    padding: 50px 0 !important;
  }

  .top-rated-venues__container {
    padding: 0 30px !important;
  }

  .top-rated-venues__title {
    font-size: 2rem !important;
  }

  .top-rated-venues__subtitle {
    font-size: 1.1rem !important;
  }

  .top-rated-venues__cards {
    gap: 25px !important;
  }

  .top-rated-venues__card {
    width: 300px !important;
  }

  .top-rated-venues__venue-name {
    font-size: 1.3rem !important;
  }

  .top-rated-venues__location {
    font-size: .9rem !important;
  }
}

@media (max-width: 768px) {
  .top-rated-venues {
    padding: 50px 0;
  }

  .top-rated-venues__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .top-rated-venues__title {
    font-size: 1.75rem;
  }

  .top-rated-venues__subtitle {
    font-size: .9rem;
  }

  .top-rated-venues__cards {
    gap: 16px;
  }

  .top-rated-venues__card {
    width: 260px;
  }

  .top-rated-venues__content {
    padding: 16px;
  }

  .top-rated-venues__venue-name {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .top-rated-venues__container {
    padding: 0 16px;
  }

  .top-rated-venues__title {
    font-size: 1.25rem;
  }

  .top-rated-venues__card {
    width: 240px;
  }

  .top-rated-venues__content {
    padding: 14px;
  }

  .top-rated-venues__venue-name {
    font-size: 1rem;
  }

  .top-rated-venues__rating {
    padding: 3px 6px;
    font-size: .8rem;
  }
}

/* [project]/src/components/testimonials/Testimonials.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.testimonials {
  padding: 10px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fff !important;
}

.testimonials__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials__header {
  text-align: left;
  margin-bottom: 50px;
}

.testimonials__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 2;
  color: #000 !important;
}

.testimonials__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #7a7a7a !important;
}

.testimonials__grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  display: grid;
}

.testimonials__card {
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 24px;
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.testimonials__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.testimonials__header-section {
  margin-bottom: 16px;
}

.testimonials__profile {
  align-items: center;
  gap: 12px;
  display: flex;
}

.testimonials__profile-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.testimonials__profile-info {
  flex: 1;
}

.testimonials__name-location {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #000 !important;
}

.testimonials__timestamp {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #7a7a7a !important;
}

.testimonials__content {
  margin-top: 16px;
}

.testimonials__review-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #000 !important;
}

.testimonials__review-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #7a7a7a !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .testimonials {
    padding: 50px 0 !important;
  }

  .testimonials__container {
    padding: 0 30px !important;
  }

  .testimonials__title {
    font-size: 2rem !important;
  }

  .testimonials__subtitle {
    font-size: 1.1rem !important;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .testimonials__card {
    padding: 25px !important;
  }

  .testimonials__review-title {
    font-size: 1.2rem !important;
  }

  .testimonials__review-text {
    font-size: .9rem !important;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 0;
  }

  .testimonials__title {
    font-size: 1.75rem;
  }

  .testimonials__subtitle {
    font-size: .9rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials__card {
    padding: 20px;
  }

  .testimonials__review-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials__container {
    padding: 0 16px;
  }

  .testimonials__title {
    font-size: 1.25rem;
  }

  .testimonials__card {
    padding: 16px;
  }

  .testimonials__profile-image {
    width: 40px;
    height: 40px;
  }

  .testimonials__name-location {
    font-size: .8rem;
  }

  .testimonials__timestamp {
    font-size: .7rem;
  }

  .testimonials__review-text {
    font-size: .8rem;
  }
}

/* [project]/src/components/jurnalPanel/JurnalPanel.scss.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/font/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/font/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-thin {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 900;
}

.jurnal-panel {
  padding: 60px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fff !important;
}

.jurnal-panel__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.jurnal-panel__header {
  text-align: left;
  margin-bottom: 50px;
}

.jurnal-panel__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #000 !important;
}

.jurnal-panel__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #7a7a7a !important;
}

.jurnal-panel__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  display: grid;
}

.jurnal-panel__card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.jurnal-panel__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}

.jurnal-panel__image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.jurnal-panel__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.jurnal-panel__card:hover .jurnal-panel__image {
  transform: scale(1.05);
}

.jurnal-panel__content {
  padding: 20px;
}

.jurnal-panel__article-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #000 !important;
}

.jurnal-panel__article-description {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #6e6e6e !important;
}

.jurnal-panel__learn-more {
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity .2s;
  color: #000 !important;
}

.jurnal-panel__learn-more:hover {
  opacity: .7;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .jurnal-panel {
    padding: 50px 0 !important;
  }

  .jurnal-panel__container {
    padding: 0 30px !important;
  }

  .jurnal-panel__title {
    font-size: 32px !important;
  }

  .jurnal-panel__subtitle {
    font-size: 18px !important;
  }

  .jurnal-panel__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .jurnal-panel__card {
    padding: 25px !important;
  }

  .jurnal-panel__article-title {
    font-size: 20px !important;
  }

  .jurnal-panel__article-description {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .jurnal-panel {
    padding: 60px 0;
  }

  .jurnal-panel__title {
    font-size: 28px;
  }

  .jurnal-panel__subtitle {
    font-size: 16px;
  }

  .jurnal-panel__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }

  .jurnal-panel__content {
    padding: 16px;
  }

  .jurnal-panel__article-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .jurnal-panel__container {
    padding: 0 16px;
  }

  .jurnal-panel__title {
    font-size: 24px;
  }

  .jurnal-panel__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .jurnal-panel__image-container {
    height: 180px;
  }

  .jurnal-panel__content {
    padding: 14px;
  }

  .jurnal-panel__article-title {
    font-size: 16px;
  }

  .jurnal-panel__article-description {
    font-size: 14px;
  }
}

/*# sourceMappingURL=src_components_bb63dadd._.css.map*/