@charset "UTF-8";

.home .hero {
  padding: 0;
  background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 50%, #f0fffe 100%);
}

.home .hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  gap: 80px;
}

.home .hero-logo {
  max-width: 450px;
  width: 100%;
}

.home .hero-logo img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 10px 30px rgba(10, 186, 181, 0.15));
  filter: drop-shadow(0 10px 30px rgba(10, 186, 181, 0.15));
}

.home .hero-content h1 {
  color: #0abab5;
  margin-bottom: 20px;
  font-size: 48px;
}

.home .hero-content p {
  color: #0abab5;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}

.home .about {
  background: #ffffff;
}

.home .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home .about-text .service-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home .about-text .service-tags span {
  background: linear-gradient(135deg, #0abab5, rgb(12.4030612245, 230.6969387755, 224.4954081633));
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
}

.home .about-text .service-tags .separator {
  background: none;
  color: #0abab5;
  font-size: 24px;
  font-weight: 700;
  padding: 0;
}

.home .about-text p {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
}

.home .about .video {
  width: 100%;
}

.home .about .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.home .about .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.home .about .video-wrapper .youtube-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home .about .video-wrapper .youtube-thumbnail:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.home .about .video-wrapper .youtube-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.home .about .video-wrapper .youtube-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home .about .video-wrapper .youtube-thumbnail .play-button:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.home .about .video-wrapper .youtube-thumbnail .play-button svg {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.home .youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home .youtube-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.home .youtube-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}

.home .youtube-modal .modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.home .youtube-modal .modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home .youtube-modal .modal-close:hover {
  color: #0abab5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.home .youtube-modal .modal-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.home .youtube-modal .modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.home .mission {
  background: #f8fdfc;
}

.home .mission-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.home .mission-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #0abab5;
  position: relative;
}

.home .mission-item:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.home .mission-item::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  border-radius: 50%;
  opacity: 0.1;
}

.home .mission-item h4 {
  color: #0abab5;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.home .mission-item p {
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.home .mission #gallery {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.home .mission #gallery .splide__track {
  position: relative;
}

.home .mission #gallery .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home .mission #gallery .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home .mission #gallery .splide__slide img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
}

.home .mission #gallery .splide__arrow {
  background: #0abab5;
  opacity: 0.8;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.home .mission #gallery .splide__arrow:hover {
  opacity: 1;
}

.home .mission #gallery .splide__arrow svg {
  fill: white;
}

.home .mission #gallery .splide__pagination {
  bottom: 20px;
}

.home .mission #gallery .splide__pagination__page {
  background: #0abab5;
  opacity: 0.3;
}

.home .mission #gallery .splide__pagination__page.is-active {
  opacity: 1;
}

.home .problems {
  background: #fff;
}

.home .problems .problem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}

.home .problems .problem-item {
  background: #f8fdfc;
  border-radius: 20px;
  padding: 0;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(10, 186, 181, 0.1);
}

.home .problems .problem-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#0abab5), to(rgb(16.6163265306, 242.1836734694, 235.7755102041)));
  background: linear-gradient(90deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
}

.home .problems .problem-item h3 {
  padding: 35px 80px 25px 25px;
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #2d3748;
  font-weight: 600;
  background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 100%);
}

.home .problems .problem-item .problem-content {
  padding: 0 25px 35px 25px;
}

.home .problems .problem-number {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  -webkit-box-shadow: 0 4px 15px rgba(10, 186, 181, 0.1);
  box-shadow: 0 4px 15px rgba(10, 186, 181, 0.1);
}

.home .problems .problem-current,
.home .problems .problem-solution {
  margin-bottom: 25px;
}

.home .problems .problem-current:last-child,
.home .problems .problem-solution:last-child {
  margin-bottom: 0;
}

.home .problems .label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.home .problems .problem-current .label {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
}

.home .problems .problem-solution .label {
  background: linear-gradient(135deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  color: white;
}

.home .problems .problem-current p,
.home .problems .problem-solution p {
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

.home .problems .cta-block {
  background: linear-gradient(135deg, #0abab5 0%, rgb(16.6163265306, 242.1836734694, 235.7755102041) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home .problems .cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  -webkit-animation: shimmer 4s ease-in-out infinite;
  animation: shimmer 4s ease-in-out infinite;
}

.home .problems .cta-block .cta-content {
  padding: 50px 40px;
  position: relative;
  z-index: 2;
}

.home .problems .cta-block .cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

.home .problems .cta-block .highlight {
  background: linear-gradient(45deg, #fff, #f0fffe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home .problems .cta-block .cta-text {
  margin-bottom: 40px;
}

.home .problems .cta-block .cta-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.home .problems .cta-block .cta-footer .cta-message {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.home .problems .cta-block .cta-footer .cta-slogan {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes shimmer {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes shimmer {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.home .voice {
  background: #f8fdfc;
}

.home .voice .voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.home .voice .voice-grid .voice-more {
  display: contents;
}

.home .voice .voice-grid .voice-more.show {
  display: contents;
}

.home .voice .voice-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 186, 181, 0.1);
}

.home .voice .voice-item:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.home .voice .voice-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.home .voice .voice-cta {
  text-align: center;
}

.home .academy {
  background: #ffffff;
}

.home .academy-highlight {
  text-align: center;
  margin-bottom: 50px;
}

.home .academy-highlight .highlight-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0abab5, rgb(12.4030612245, 230.6969387755, 224.4954081633));
  color: white;
  padding: 20px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  -webkit-box-shadow: 0 8px 30px rgba(10, 186, 181, 0.15);
  box-shadow: 0 8px 30px rgba(10, 186, 181, 0.15);
  position: relative;
}

.home .academy-highlight .highlight-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #0abab5, rgb(46.4142857143, 243.7857142857, 238.1785714286), #0abab5);
  border-radius: 32px;
  z-index: -1;
  -webkit-animation: shimmer 3s ease-in-out infinite;
  animation: shimmer 3s ease-in-out infinite;
}

.home .academy-highlight .highlight-box .highlight-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.home .academy-highlight .highlight-box .highlight-text {
  line-height: 1.4;
}

.home .academy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.home .academy-intro {
  text-align: center;
  margin-bottom: 60px;
}

.home .academy-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
}

.home .academy-intro p strong {
  color: #0abab5;
  font-weight: 700;
}

.home .academy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.home .academy-features .feature-item {
  background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 186, 181, 0.1);
  position: relative;
}

.home .academy-features .feature-item:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.home .academy-features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0abab5), to(rgb(16.6163265306, 242.1836734694, 235.7755102041)));
  background: linear-gradient(90deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  border-radius: 20px 20px 0 0;
}

.home .academy-features .feature-item .feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  -webkit-filter: drop-shadow(0 4px 8px rgba(10, 186, 181, 0.1));
  filter: drop-shadow(0 4px 8px rgba(10, 186, 181, 0.1));
}

.home .academy-features .feature-item h4 {
  color: #0abab5;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.home .academy-features .feature-item p {
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

.home .programs {
  background: #f8fdfc;
}

.home .programs-intro {
  text-align: center;
  margin-bottom: 50px;
}

.home .programs-intro p {
  color: #4a5568;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}

.home .programs .program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.home .programs .program-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home .programs .program-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(10, 186, 181, 0.15);
  text-decoration: none;
}

.home .programs .program-card:focus {
  outline: 2px solid #0abab5;
  outline-offset: 2px;
  text-decoration: none;
}

.home .programs .program-card .program-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.home .programs .program-card h4 {
  color: #0abab5;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}

.home .programs-message {
  text-align: center;
  margin-bottom: 60px;
  padding: 30px;
  background: linear-gradient(135deg, #0abab5, rgb(12.4030612245, 230.6969387755, 224.4954081633));
  border-radius: 20px;
}

.home .programs-message p {
  color: white;
  margin: 0;
  font-weight: 600;
  line-height: 1.8;
  font-size: 18px;
}

.home .programs-content {
  margin-bottom: 60px;
}

.home .programs-content .content-block {
  margin-bottom: 50px;
}

.home .programs-content .content-block:last-child {
  margin-bottom: 0;
}

.home .programs-content .content-block h3 {
  color: #0abab5;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  font-size: 24px;
}

.home .programs-content .content-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(135deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  border-radius: 2px;
}

.home .programs-content .content-block p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

.home .programs-content .content-block p:last-child {
  margin-bottom: 0;
}

.home .programs-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home .news {
  background: #ffffff;
}

.home .news .section-header h2 {
  color: #0abab5;
}

.home .news .news-list {
  max-width: 900px;
  margin: 0 auto;
}

.home .news .news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.home .news .news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 100%);
  border-radius: 12px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 186, 181, 0.1);
  position: relative;
  overflow: hidden;
}

.home .news .news-list li:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(10, 186, 181, 0.15);
}

.home .news .news-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
}

.home .news .news-list li:last-child {
  margin-bottom: 0;
}

.home .news .news-list time {
  font-size: 14px;
  font-weight: 600;
  color: #0abab5;
  background: rgba(10, 186, 181, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
  letter-spacing: 0.05em;
}

.home .news .news-list span {
  color: #2d3748;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.home .news .no-news {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

.home .news .no-news::before {
  content: "📢";
  display: block;
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}

@media screen and (max-width: 1152px) {
  .home .hero .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    padding: 80px 30px;
    min-height: 85vh;
  }

  .home .hero-logo {
    max-width: 350px;
  }

  .home .hero-content h1 {
    font-size: 40px;
  }

  .home .hero-content p {
    font-size: 18px;
  }

  .home .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home .about-text .service-tags {
    gap: 15px;
    margin-bottom: 35px;
  }

  .home .about-text .service-tags span {
    font-size: 15px;
    padding: 11px 20px;
  }

  .home .about-text .service-tags .separator {
    font-size: 20px;
  }

  .home .about-text p {
    font-size: 17px;
  }

  .home .about .video-wrapper {
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .home .mission-items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
  }

  .home .mission-item {
    padding: 35px 25px;
    border-radius: 16px;
  }

  .home .mission-item h4 {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .home .mission-item p {
    font-size: 15px;
  }

  .home .problems .problem-item h3 {
    padding: 35px 25px 25px 25px;
    font-size: 18px;
  }

  .home .problems .problem-number {
    display: none;
  }

  .home .problems .cta-block .cta-content {
    padding: 40px 20px;
  }

  .home .problems .cta-block .cta-title {
    font-size: 24px;
  }

  .home .problems .cta-block .cta-footer .cta-slogan {
    font-size: 18px;
  }

  .home .voice .voice-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .home .academy-highlight .highlight-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding: 20px 30px;
    font-size: 16px;
  }

  .home .academy-highlight .highlight-box .highlight-icon {
    display: none;
  }

  .home .academy-intro p {
    font-size: 16px;
  }

  .home .academy-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home .academy-features .feature-item .feature-icon {
    font-size: 40px;
  }

  .home .academy-features .feature-item h4 {
    font-size: 18px;
  }

  .home .programs .program-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .home .programs .program-card {
    padding: 30px 20px;
    min-height: 140px;
  }

  .home .programs .program-card .program-icon {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .home .programs .program-card h4 {
    font-size: 15px;
  }

  .home .programs-message p {
    font-size: 16px;
  }

  .home .programs-content .content-block h3 {
    font-size: 20px;
  }

  .home .news .news-list li {
    gap: 18px;
    padding: 18px 25px;
    margin-bottom: 12px;
  }

  .home .news .news-list time {
    font-size: 13px;
    padding: 5px 10px;
    min-width: 90px;
  }

  .home .news .news-list span {
    font-size: 15px;
  }

  .home .news .no-news {
    padding: 50px 20px;
    font-size: 15px;
  }

  .home .news .no-news::before {
    font-size: 40px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 490px) {
  .home .hero .inner {
    gap: 30px;
    padding: 60px 20px;
    min-height: 80vh;
  }

  .home .hero-logo {
    max-width: 280px;
  }

  .home .hero-content h1 {
    font-size: 32px;
  }

  .home .hero-content p {
    font-size: 16px;
  }

  .home .about-content {
    gap: 40px;
  }

  .home .about-text .service-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .home .about-text .service-tags span {
    font-size: 14px;
    padding: 10px 18px;
  }

  .home .about-text .service-tags .separator {
    font-size: 18px;
  }

  .home .about-text p {
    font-size: 16px;
  }

  .home .youtube-modal .modal-close {
    top: -45px;
    font-size: 28px;
  }

  .home .mission-items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .home .mission-item {
    padding: 30px 20px;
  }

  .home .mission-item::before {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }

  .home .mission-item h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .home .mission-item p {
    font-size: 14px;
  }

  .home .voice .voice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .home .programs .program-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .home .programs .program-card {
    padding: 25px 15px;
    min-height: 120px;
  }

  .home .programs .program-card .program-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .home .programs .program-card h4 {
    font-size: 14px;
  }

  .home .news .news-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
  }

  .home .news .news-list time {
    font-size: 12px;
    min-width: auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .home .news .news-list span {
    font-size: 14px;
  }
}
/*# sourceMappingURL=front-page.css.map */