/* #region hero */
.hero {
  background:
    url("images/hero.webp") center/cover no-repeat,
    var(--primary-color);
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

@media (min-width: 1201px) {
  .hero {
    min-height: 500px;
    padding: var(--spacing-section) 0;
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 95, 115, 0.95) 0%,
    rgba(0, 95, 115, 0.75) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__tag {
  background: var(--white-alpha-02);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 24px;
  color: var(--pure-white);
}

.hero__title {
  font-size: 24px;
  margin-bottom: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pure-white);
}

.hero__subtitle {
  font-size: 14px;
  margin: 0 auto 30px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 600px;
  color: var(--pure-white);
}

.hero .button {
  margin-bottom: 10px;
}

.hero__badge {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
}

.hero__actions {
  flex-direction: column;
  width: 100%;
}

/* Responsive - Hero */
@media (min-width: 481px) {
  .hero__title {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero__subtitle {
    font-size: 16px;
    padding: 0 10px;
  }
  .hero__actions {
    flex-direction: row;
    width: auto;
  }
}

@media (min-width: 601px) {
  .hero {
    min-height: 350px;
    padding: 30px 0;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__subtitle {
    font-size: 18px;
    padding: 0;
  }
}

@media (min-width: 1201px) {
  .hero {
    min-height: 400px;
    padding: 40px 0;
  }
  .hero__title {
    font-size: 36px;
  }
}

@media (min-width: 1401px) {
  .hero__title {
    font-size: 48px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 300px;
    padding: 20px 0;
  }

  .hero__title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hero__badge {
    margin-top: 15px;
  }
}

/* #endregion hero */

/* #region latest-news */
.latest-news {
  background: var(--bg-gradient-light);
  padding: 40px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .latest-news {
    padding: 60px 0;
  }
}
.news-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card__image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 481px) {
  .news-card__image {
    height: 180px;
  }
}

@media (min-width: 768px) {
  .news-card__image {
    height: 200px;
  }
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary-color);
  color: var(--pure-white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card__badge--promo {
  background: var(--badge-promo);
}

.news-card__badge--event {
  background: var(--badge-event);
}

.news-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 768px) {
  .news-card__content {
    padding: 24px;
  }
}

.news-card__date {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card__date i {
  color: var(--secondary-color);
}

.news-card h3 {
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__excerpt {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.news-card__link:hover {
  color: var(--secondary-color);
  gap: 10px;
}

.news-card__link i {
  font-size: 12px;
  transition: transform var(--transition-base);
}

.news-card__link:hover i {
  transform: translateX(3px);
}
.latest-news__header h2 {
  margin: 0px;
}
.latest-news__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 16px;
}

@media (min-width: 481px) {
  .latest-news__header {
    flex-direction: row;
    gap: 0;
  }
}

.latest-news__header i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.latest-news__controls {
  display: flex;
  gap: 12px;
}

.latest-news__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 14px;
}

@media (min-width: 768px) {
  .latest-news__btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

.latest-news__btn:hover {
  background: var(--primary-color);
  color: var(--pure-white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.3);
}

.latest-news__btn:active {
  transform: scale(0.95);
}

.latest-news__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.latest-news__wrapper {
  overflow: hidden;
}

.latest-news__track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.latest-news__track .news-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

/* Responsive - Latest News */
@media (min-width: 901px) {
  .latest-news__track {
    gap: 32px;
  }

  .latest-news__track .news-card {
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
    min-width: calc(50% - 16px);
  }
}

/* #endregion latest-news */

/* #region intro */

.intro__title {
  color: var(--secondary-color);
  font-family: var(--font-noto);
  letter-spacing: 1.5px;
}

.intro {
  padding: 40px 0;
  background-color: var(--pure-white);
}

@media (min-width: 601px) {
  .intro {
    padding: 60px 0;
  }
}

@media (min-width: 1201px) {
  .intro {
    padding: var(--spacing-section) 0;
  }
}

.intro__splitter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 70px;
}

.intro__content {
  padding: 0;
}

@media (min-width: 601px) {
  .intro__splitter {
    gap: 40px;
  }
  .intro__content {
    padding: 0 20px;
  }
}

@media (min-width: 1201px) {
  .intro__splitter {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.intro__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

@media (min-width: 481px) {
  .intro__lead {
    font-size: 18px;
  }
}

.intro__subtitle {
  text-align: center;
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 700;
  display: block;
}

@media (min-width: 768px) {
  .intro__subtitle {
    font-size: 24px;
    margin-bottom: 48px;
  }
}

.intro__subtitle--therapy {
  text-shadow: 0 1px 2px rgba(10, 147, 150, 0.2);
  letter-spacing: 2px;
  font-size: 32px;
}

.features {
  list-style: none;
  margin-top: 20px;
}

.features__item {
  margin-bottom: 18px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

@media (min-width: 601px) {
  .features__item {
    font-size: 16px;
  }
}

.features__item i {
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================================================
   Template Gallery Component (Index Page Only)
   ========================================================================== */
.template-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 15px;
  background: linear-gradient(135deg, #e2f4f4 0%, #f4f7f6 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (min-width: 601px) {
  .template-gallery {
    max-width: 500px;
    padding: 30px;
  }
}

.template-gallery__title {
  text-align: center;
  letter-spacing: 1px;
}

.template-gallery__container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 95, 115, 0.15);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--pure-white);
  border: 3px solid rgba(0, 95, 115, 0.1);
}

.template-gallery__container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 95, 115, 0.25);
  border-color: rgba(0, 95, 115, 0.3);
}

.template-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-base);
  background: var(--bg-light);
}

.template-gallery__image.active {
  opacity: 1;
  z-index: 1;
}

.template-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.template-gallery__arrow {
  background: var(--primary-color);
  color: var(--pure-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.template-gallery__arrow:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.template-gallery__arrow:active {
  transform: scale(0.95);
}

.template-gallery__indicators {
  display: flex;
  gap: 10px;
}

.template-gallery__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--indicator-inactive);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.template-gallery__indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.template-gallery__indicator:hover {
  background: var(--secondary-color);
}

/* Modal for enlarged image */
.template-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-dark);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s ease;
}

.template-modal.active {
  display: flex;
}

.template-modal__content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.template-modal__close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--pure-white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  z-index: 10000;
}

.template-modal__close:hover {
  color: var(--accent-color);
}

/* Responsive - Intro */

/* #endregion intro */

/* #region supervision */

.supervision {
  margin-bottom: 70px;
  text-align: center;
  background: var(--supervision-gradient);
  padding: 50px 0;
  border-radius: var(--radius-lg);
}

.supervision__title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .supervision__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}

.supervision__description {
  max-width: 750px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================================
   Process Grid
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1401px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================================
   Process Card Component (Index Page Only)
   ========================================================================== */
.process__card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 601px) {
  .process__card {
    padding: 36px 32px;
  }
}

.process__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.process__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 95, 115, 0.2);
  border-top-color: var(--primary-color);
}

.process__icon {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
  color: var(--primary-color);
}

@media (min-width: 601px) {
  .process__icon {
    font-size: 48px;
  }
}

.process__text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
  margin: 0;
}

/* Responsive - Supervision */

/* #endregion supervision */

/* #region services-section */

.services-tabs {
  margin-top: 60px;
}

.services-tabs__header {
  margin-bottom: 40px;
  text-align: center;
}

.services-tabs__controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.services-tabs__btn {
  background: var(--pure-white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

@media (min-width: 601px) {
  .services-tabs__btn {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* ============================================================================
   Services Card Component (Index Page Only)
   ========================================================================== */
.services__card {
  background: var(--pure-white);
  padding: 14px 6px;
  text-align: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float);
  font-weight: 500;
  color: var(--primary-color);
  font-size: 13px;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  word-wrap: break-word;
  line-height: 1.1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

@media (min-width: 381px) {
  .services__card {
    font-size: 14px;
    padding: 18px 10px;
    min-height: 70px;
    line-height: 1.1;
  }
  .services {
    gap: 16px;
  }
}

@media (min-width: 601px) {
  .services__card {
    font-size: 18px;
    padding: var(--spacing-md) var(--spacing-sm);
    min-height: 80px;
    line-height: 1.3;
  }
}

@media (min-width: 768px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .services__card {
    min-height: 80px;
    line-height: 1.3;
  }
}

.services__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.services__card:nth-child(3n + 1) {
  border-top-color: var(--secondary-color);
}
.services__card:nth-child(3n + 2) {
  border-top-color: var(--secondary-color-mid);
}
.services__card:nth-child(3n + 3) {
  border-top-color: var(--primary-color);
}

.services__card--span-2 {
  grid-column: span 2;
}

.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 147, 150, 0.05) 0%,
    rgba(0, 95, 115, 0.05) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.services__card > * {
  position: relative;
  z-index: 1;
}

.services__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* 悬停时加深边框颜色 */
.services__card:nth-child(3n + 1):hover {
  border-top-color: var(--secondary-color-hover);
}
.services__card:nth-child(3n + 2):hover {
  border-top-color: var(--secondary-color-alt);
}
.services__card:nth-child(3n + 3):hover {
  border-top-color: var(--primary-color-dark);
}

.services__card:active {
  transform: translateY(-4px) scale(0.98);
  transition: all 0.1s var(--ease-spring);
}

.services__card:hover::before {
  opacity: 1;
}

.services__card:hover .services__arrow {
  opacity: 1;
  transform: translate(0, -50%);
}

.services__icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  background: var(--icon-bg);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all var(--transition-base);
}

.services__card:hover .services__icon {
  background: var(--icon-bg-hover);
  transform: scale(1.1);
}

.services__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

.services__arrow {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 14px;
  color: var(--secondary-color);
  opacity: 0.3;
  transition: all var(--transition-base);
  transform: translate(5px, -50%);
}

.services-tabs__btn i {
  font-size: 16px;
}

@media (min-width: 601px) {
  .services-tabs__btn i {
    font-size: 18px;
  }
}

.services-tabs__btn:hover {
  background: var(--primary-color);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.3);
}

.services-tabs__btn--active {
  background: var(--primary-color);
  color: var(--pure-white);
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.3);
}

.services-tabs__content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.services-tabs__content--active {
  display: block;
}

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

/* ============================================================================
   Services Grid
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Responsive - Services */
/* 小屏幕(移动端)：2列布局边框颜色 */
.services__card:nth-child(odd) {
  border-top-color: var(--secondary-color);
}

.services__card:nth-child(even) {
  border-top-color: var(--primary-color);
}

.services__card:nth-child(odd):hover {
  border-top-color: var(--secondary-color-hover);
}

.services__card:nth-child(even):hover {
  border-top-color: var(--primary-color-dark);
}

/* 大屏幕(平板及以上)：3列布局边框颜色 */
@media (min-width: 768px) {
  .services__card:nth-child(odd),
  .services__card:nth-child(even) {
    border-top-color: initial;
  }

  .services__card:nth-child(odd):hover,
  .services__card:nth-child(even):hover {
    border-top-color: initial;
  }

  .services__card:nth-child(3n + 1) {
    border-top-color: var(--secondary-color);
  }
  .services__card:nth-child(3n + 2) {
    border-top-color: var(--secondary-color-mid);
  }
  .services__card:nth-child(3n + 3) {
    border-top-color: var(--primary-color);
  }

  .services__card:nth-child(3n + 1):hover {
    border-top-color: var(--secondary-color-hover);
  }
  .services__card:nth-child(3n + 2):hover {
    border-top-color: var(--secondary-color-alt);
  }
  .services__card:nth-child(3n + 3):hover {
    border-top-color: var(--primary-color-dark);
  }
}

/* #endregion services-section */

/* #region testimonials */

.testimonials {
  padding: 40px 0;
  background-color: var(--pure-white);
  overflow: hidden;
  position: relative;
}

@media (min-width: 601px) {
  .testimonials {
    padding: 60px 0;
  }
}

@media (min-width: 1201px) {
  .testimonials {
    padding: var(--spacing-section) 0;
  }
}

.testimonials__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonials__track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 40s linear infinite;
}

.testimonials__slider:hover .testimonials__track {
  animation-play-state: paused;
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ============================================================================
   Review Card Component (Index Page Only)
   ========================================================================== */
.review {
  width: 260px;
  height: 280px;
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 20px;
  margin: 0 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all var(--transition-base);
}

@media (min-width: 381px) {
  .review {
    width: 280px;
    height: 260px;
    padding: 24px;
  }
}

@media (min-width: 601px) {
  .review {
    width: 320px;
    height: 280px;
    padding: 30px;
  }
}

.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 95, 115, 0.18);
}

.review__header {
  margin-bottom: 16px;
  flex-shrink: 0;
}

.review__stars {
  color: var(--star-color);
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.review__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}

.review__text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
  font-style: italic;
}

@media (min-width: 381px) {
  .review__text {
    font-size: 15px;
  }
}

/* Responsive - Testimonials */

/* #endregion testimonials */

/* #region rights */

.rights {
  background-color: var(--bg-light);
  padding: 40px 0;
}

@media (min-width: 601px) {
  .rights {
    padding: 60px 0;
  }
}

@media (min-width: 1201px) {
  .rights {
    padding: 80px 0;
  }
}

.rights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .rights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1201px) {
  .rights__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ============================================================================
   Rights Item Component (Index Page Only)
   ========================================================================== */
.rights__item {
  background: var(--pure-white);
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px var(--rights-border-light);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  transition: all var(--transition-base);
  height: 100%;
}

@media (min-width: 601px) {
  .rights__item {
    padding: 28px 24px;
  }
}

.rights__item:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.rights__icon {
  background-color: var(--icon-bg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rights__check {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 18px;
}

.rights__description {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Responsive - Rights */

/* #endregion rights */

/* #region unclassified */
/* ============================================================================
   General Responsive Utilities
   ========================================================================== */

/* #endregion unclassified */
