@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.hero-section {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 162, 218, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-section .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.hero-section .hero-container .hero-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-content {
    order: 2;
  }
}
.hero-section .hero-container .hero-content .hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #46A2DA;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(70, 162, 218, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-section .hero-container .hero-content .hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-title {
    font-size: 1.6rem;
  }
}
.hero-section .hero-container .hero-content .hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-description {
    font-size: 1rem;
  }
}
.hero-section .hero-container .hero-content .search-box {
  margin-top: 2rem;
}
.hero-section .hero-container .hero-content .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-content .hero-features {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item:hover {
  border-color: #46A2DA;
  background: rgba(70, 162, 218, 0.05);
  transform: translateY(-2px);
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item i {
  color: #46A2DA;
  font-size: 1.2rem;
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #043F6D;
}
.hero-section .hero-container .hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-image {
    order: 1;
  }
}
.hero-section .hero-container .hero-image img {
  width: 60%;
  height: auto;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(4, 63, 109, 0.1));
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(-20px);
  }
}
.mobile-break {
  display: none;
}
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  padding: 1.5rem 2rem 0;
  background: #F9F9F9;
}
@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 1rem 1.5rem 0;
  }
}
.breadcrumb-nav .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .breadcrumb-nav .breadcrumb {
    font-size: 0.85rem;
  }
}
.breadcrumb-nav .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
}
.breadcrumb-nav .breadcrumb li a {
  color: #043F6D;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb-nav .breadcrumb li a:hover {
  color: #46A2DA;
  text-decoration: underline;
}
.breadcrumb-nav .breadcrumb li a i {
  font-size: 0.85rem;
}
.breadcrumb-nav .breadcrumb li.current {
  color: #5D6062;
  font-weight: 500;
}
.breadcrumb-nav .breadcrumb li:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(102, 102, 102, 0.4);
  margin-left: 0.5rem;
}

.search-box {
  background: #F9F9F9;
  border: 2px solid rgba(70, 162, 218, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .search-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
}
.search-box:hover {
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.12);
  border-color: rgba(70, 162, 218, 0.25);
}
.search-box .search-form .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-box .search-form .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.25rem;
  color: #46A2DA;
  font-size: 1.1rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .search-box .search-form .search-input-wrapper .search-icon {
    left: 1rem;
    font-size: 1rem;
  }
}
.search-box .search-form .search-input-wrapper .search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 3.5rem;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  color: #043F6D;
  transition: all 0.2s ease;
  background: #F9F9F9;
}
@media (max-width: 768px) {
  .search-box .search-form .search-input-wrapper .search-input {
    padding: 0.9rem 2.5rem 0.9rem 3rem;
    font-size: 0.95rem;
  }
}
.search-box .search-form .search-input-wrapper .search-input::-moz-placeholder {
  color: rgba(102, 102, 102, 0.5);
}
.search-box .search-form .search-input-wrapper .search-input::placeholder {
  color: rgba(102, 102, 102, 0.5);
}
.search-box .search-form .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #46A2DA;
  box-shadow: 0 0 0 4px rgba(70, 162, 218, 0.1);
}
.search-box .search-form .search-input-wrapper .search-clear {
  position: absolute;
  right: 1.25rem;
  color: #5D6062;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .search-box .search-form .search-input-wrapper .search-clear {
    right: 1rem;
    font-size: 1.1rem;
  }
}
.search-box .search-form .search-input-wrapper .search-clear:hover {
  color: #EB4878;
}
.search-box .search-result-info {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  border-radius: 12px;
  font-size: 0.95rem;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
}
@media (max-width: 768px) {
  .search-box .search-result-info {
    margin-top: 1rem;
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }
}
.search-box .search-result-info strong {
  color: #043F6D;
  font-weight: 700;
}
.search-box .search-result-info .result-count {
  font-weight: 700;
  color: #EB4878;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .search-box .search-result-info .result-count {
    font-size: 1rem;
  }
}

.back-to-all-container {
  text-align: center;
  margin-bottom: 2rem;
}

.back-to-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
}
@media (max-width: 768px) {
  .back-to-all-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
  }
}
.back-to-all-btn i {
  transition: transform 0.3s ease;
}
.back-to-all-btn:hover {
  background: #043F6D;
  color: #F9F9F9;
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.12);
  transform: translateY(-2px);
}
.back-to-all-btn:hover i {
  transform: translateX(-3px);
}
.back-to-all-btn:active {
  transform: translateY(0);
}

.no-search-results .back-to-all-btn {
  margin-bottom: 2rem;
}

.search-results-section {
  margin: 2rem 0;
}
.search-results-section .article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .search-results-section .article-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.no-search-results {
  text-align: center;
  padding: 4rem 2rem;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
}
@media (max-width: 768px) {
  .no-search-results {
    padding: 3rem 1.5rem;
  }
}
.no-search-results i {
  font-size: 4rem;
  color: rgba(70, 162, 218, 0.3);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .no-search-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.no-search-results p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .no-search-results p {
    font-size: 1rem;
  }
}
.no-search-results p strong {
  color: #043F6D;
  font-weight: 700;
}
.no-search-results .suggestion {
  font-size: 0.95rem;
  color: #5D6062;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .no-search-results .suggestion {
    font-size: 0.9rem;
  }
}

.article {
  background: #F9F9F9;
  padding: 3rem 2rem;
}
.article main {
  max-width: 800px;
  margin: 0 auto;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.article main .highlight {
  background: rgba(235, 72, 120, 0.15);
  margin: 0 5px;
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #EB4878;
  font-weight: 600;
}
.article main .lead,
.article main .pre_index1 {
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.03) 0%, rgba(4, 63, 109, 0.03) 100%);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .article main .lead,
  .article main .pre_index1 {
    font-size: 1rem;
    padding: 1.5rem;
    line-height: 1.9;
  }
}
.article main .toc {
  background: #F9F9F9;
  border: 2px solid rgba(70, 162, 218, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
}
@media (max-width: 768px) {
  .article main .toc {
    padding: 1.5rem;
  }
}
.article main .toc h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #043F6D;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(70, 162, 218, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.article main .toc h4::before {
  content: "\f03a";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  color: #46A2DA;
}
.article main .toc .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article main .toc .toc-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}
.article main .toc .toc-list li:last-child {
  margin-bottom: 0;
}
.article main .toc .toc-list li:hover {
  transform: translateX(5px);
}
.article main .toc .toc-list li:hover .toc-link {
  color: #46A2DA;
}
.article main .toc .toc-list li:hover .toc-number {
  background: #46A2DA;
  color: #F9F9F9;
}
.article main .toc .toc-list li .toc-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(70, 162, 218, 0.1);
  color: #043F6D;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.article main .toc .toc-list li .toc-link {
  flex: 1;
  color: #043F6D;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.2s ease;
  padding-top: 5px;
}
.article main .toc .toc-list li .toc-link:hover {
  color: #46A2DA;
}
.article main h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #043F6D;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(70, 162, 218, 0.2);
  position: relative;
}
@media (max-width: 768px) {
  .article main h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.25rem 0;
  }
}
.article main h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #043F6D 0%, #46A2DA 100%);
}
.article main h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #043F6D;
  margin: 2.5rem 0 1.25rem 0;
  padding-left: 1rem;
  border-left: 4px solid #46A2DA;
}
@media (max-width: 768px) {
  .article main h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
  }
}
.article main h4 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #043F6D;
  margin: 2rem 0 1rem 0;
}
@media (max-width: 768px) {
  .article main h4 {
    font-size: 1.1rem;
  }
}
.article main p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #35393C;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .article main p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}
.article main ul,
.article main ol {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #35393C;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .article main ul,
  .article main ol {
    font-size: 0.95rem;
    line-height: 1.9;
    padding-left: 1.5rem;
  }
}
.article main ul li,
.article main ol li {
  margin-bottom: 0.75rem;
}
.article main ul li:last-child,
.article main ol li:last-child {
  margin-bottom: 0;
}
.article main strong,
.article main b {
  font-weight: 700;
  color: #043F6D;
}
.article main em,
.article main i {
  font-style: italic;
}
.article main .box1,
.article main .box-info {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article main .box1,
  .article main .box-info {
    padding: 1.5rem;
  }
}
.article main .box1::before,
.article main .box-info::before {
  content: "\f05a";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: #46A2DA;
  opacity: 0.3;
}
.article main .box1 .title,
.article main .box-info .title {
  border-bottom: 2px dashed rgba(70, 162, 218, 0.2);
  margin-bottom: 0;
  font-weight: 600;
}
.article main .box1 > *:first-child,
.article main .box-info > *:first-child {
  margin-top: 0;
}
.article main .box1 > *:last-child,
.article main .box-info > *:last-child {
  margin-bottom: 0;
}
.article main .box1 h3,
.article main .box1 h4,
.article main .box-info h3,
.article main .box-info h4 {
  color: #46A2DA;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article main .box1 h3::before,
.article main .box1 h4::before,
.article main .box-info h3::before,
.article main .box-info h4::before {
  content: "\f05a";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 1.2rem;
}
.article main .box2,
.article main .box-warning {
  background: linear-gradient(135deg, rgba(235, 72, 120, 0.05) 0%, rgba(235, 72, 120, 0.08) 100%);
  border: 2px solid rgba(235, 72, 120, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article main .box2,
  .article main .box-warning {
    padding: 1.5rem;
  }
}
.article main .box2::before,
.article main .box-warning::before {
  content: "\f071";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: #EB4878;
  opacity: 0.3;
}
.article main .box2 .title,
.article main .box-warning .title {
  border-bottom: 2px dashed rgba(235, 72, 120, 0.2);
  margin-bottom: 0;
  font-weight: 600;
}
.article main .box2 > *:first-child,
.article main .box-warning > *:first-child {
  margin-top: 0;
}
.article main .box2 > *:last-child,
.article main .box-warning > *:last-child {
  margin-bottom: 0;
}
.article main .box2 h3,
.article main .box2 h4,
.article main .box-warning h3,
.article main .box-warning h4 {
  color: #EB4878;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article main .box2 h3::before,
.article main .box2 h4::before,
.article main .box-warning h3::before,
.article main .box-warning h4::before {
  content: "\f071";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 1.2rem;
}
.article main .box3,
.article main .box-success {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(46, 125, 50, 0.1) 100%);
  border: 2px solid rgba(46, 125, 50, 0.25);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article main .box3,
  .article main .box-success {
    padding: 1.5rem;
  }
}
.article main .box3::before,
.article main .box-success::before {
  content: "\f058";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: #2e7d32;
  opacity: 0.25;
}
.article main .box3 .title,
.article main .box-success .title {
  border-bottom: 2px dashed rgba(46, 125, 50, 0.25);
  margin-bottom: 0;
  font-weight: 600;
}
.article main .box3 > *:first-child,
.article main .box-success > *:first-child {
  margin-top: 0;
}
.article main .box3 > *:last-child,
.article main .box-success > *:last-child {
  margin-bottom: 0;
}
.article main .box3 h3,
.article main .box3 h4,
.article main .box-success h3,
.article main .box-success h4 {
  color: #2e7d32;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article main .box3 h3::before,
.article main .box3 h4::before,
.article main .box-success h3::before,
.article main .box-success h4::before {
  content: "\f058";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 1.2rem;
  color: #2e7d32;
}

.author-section {
  background: #F9F9F9;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .author-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
}
.author-section:hover {
  border-color: #46A2DA;
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.12);
}
.author-section img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #46A2DA;
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.2);
}
@media (max-width: 768px) {
  .author-section img {
    width: 100px;
    height: 100px;
  }
}
.author-section .text-content {
  flex: 1;
}
.author-section .text-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #46A2DA;
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .author-section .text-content h3 {
    text-align: center;
  }
}
.author-section .text-content h6 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #043F6D;
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .author-section .text-content h6 {
    font-size: 1.2rem;
  }
}
.author-section .text-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
  margin: 0;
}
@media (max-width: 768px) {
  .author-section .text-content p {
    font-size: 0.9rem;
  }
}

.ask-expert-box {
  background: #F9F9F9;
  border: 2px solid rgba(70, 162, 218, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
@media (max-width: 768px) {
  .ask-expert-box {
    padding: 1.5rem;
    margin: 2rem 0;
  }
}
@media (max-width: 480px) {
  .ask-expert-box {
    padding: 1.2rem;
    margin: 1.5rem 0;
  }
}
.ask-expert-box:hover {
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.12);
  transform: translateY(-2px);
  border-color: rgba(70, 162, 218, 0.3);
}
.ask-expert-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #46A2DA;
  box-shadow: 0 4px 12px rgba(70, 162, 218, 0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.ask-expert-box img:hover {
  transform: scale(1.05);
  border-color: #043F6D;
}
@media (max-width: 768px) {
  .ask-expert-box img {
    width: 90px;
    height: 90px;
  }
}
.ask-expert-box h5 {
  margin: 0 auto 1.5rem auto !important;
  padding-bottom: 0.75rem !important;
  color: #043F6D !important;
  border-bottom: 2px solid rgba(70, 162, 218, 0.2) !important;
  display: inline-block;
  width: auto;
  font-size: 1.3rem;
  font-weight: 700;
}
.ask-expert-box h5 i {
  margin-right: 0.5rem;
  color: #46A2DA;
}
.ask-expert-box .ask-expert-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
  max-width: 600px;
  margin: 1rem auto 1.5rem auto;
  text-align: center;
}
@media (max-width: 768px) {
  .ask-expert-box .ask-expert-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .ask-expert-box .ask-expert-content p {
    font-size: 0.85rem;
  }
}
.ask-expert-box .ask-expert-content .ul-wrapper {
  text-align: center;
  margin: 1.5rem 0;
}
.ask-expert-box .ask-expert-content ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: inline-block;
  text-align: left;
}
.ask-expert-box .ask-expert-content ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .ask-expert-box .ask-expert-content ul li {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .ask-expert-box .ask-expert-content ul li {
    font-size: 0.85rem;
  }
}
.ask-expert-box .ask-expert-content ul li i {
  color: #46A2DA;
  margin-right: 0.5rem;
}
.ask-expert-box .counselling-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .ask-expert-box .counselling-button {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}
@media (max-width: 480px) {
  .ask-expert-box .counselling-button {
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
  }
}
.ask-expert-box .counselling-button i {
  margin-right: 0.5rem;
}
.ask-expert-box .counselling-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.ask-expert-box .counselling-button:hover {
  background: linear-gradient(135deg, #46A2DA 0%, #043F6D 100%);
  color: #F9F9F9 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(70, 162, 218, 0.4);
  text-decoration: none;
}
.ask-expert-box .counselling-button:hover::before {
  left: 100%;
}
.ask-expert-box .counselling-button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(70, 162, 218, 0.3);
}

h2.fs-4.text-center {
  font-size: 2rem;
  font-weight: 700;
  color: #043F6D;
  text-align: center;
  margin: 4rem 0 1rem 0;
  padding: 0;
}
@media (max-width: 768px) {
  h2.fs-4.text-center {
    font-size: 1.6rem;
    margin: 3rem 0 1rem 0;
  }
}

.scroll-swipe-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  background: rgba(76, 141, 187, 0.5);
  opacity: 0.4;
  transition: opacity 0.4s ease;
  z-index: 10;
  pointer-events: none;
  border-radius: 50%;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.3);
}
@media (max-width: 768px) {
  .scroll-swipe-indicator {
    gap: 0.5rem;
    padding: 2rem;
  }
}
.scroll-swipe-indicator i {
  font-size: 2.5rem;
  color: #F9F9F9;
}
@media (max-width: 768px) {
  .scroll-swipe-indicator i {
    font-size: 2rem;
  }
}
.scroll-swipe-indicator i.fa-hand-pointer {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .scroll-swipe-indicator i.fa-hand-pointer {
    font-size: 2.5rem;
  }
}

.article-list-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
@media (max-width: 768px) {
  .article-list-wrapper {
    margin-bottom: 3rem;
  }
}
.article-list-wrapper .article-list {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(70, 162, 218, 0.3) rgba(70, 162, 218, 0.1);
  padding-bottom: 1rem;
}
.article-list-wrapper .article-list::-webkit-scrollbar {
  height: 8px;
}
.article-list-wrapper .article-list::-webkit-scrollbar-track {
  background: rgba(70, 162, 218, 0.1);
  border-radius: 10px;
}
.article-list-wrapper .article-list::-webkit-scrollbar-thumb {
  background: rgba(70, 162, 218, 0.3);
  border-radius: 10px;
}
.article-list-wrapper .article-list::-webkit-scrollbar-thumb:hover {
  background: rgba(70, 162, 218, 0.5);
}
@media (max-width: 768px) {
  .article-list-wrapper .article-list {
    gap: 1.5rem;
  }
}

.article-card-new {
  background: #F9F9F9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}
.article-card-new.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
@media (max-width: 768px) {
  .article-card-new {
    min-width: 280px;
    max-width: 280px;
  }
}
.article-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(4, 63, 109, 0.15);
}
.article-card-new:hover .article-card-image {
  transform: scale(1.1);
}
.article-card-new:hover .article-card-link {
  background: #043F6D;
  color: #F9F9F9 !important;
}
.article-card-new:hover .article-card-link i {
  transform: translateX(5px);
}

.article-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.article-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.article-category-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  color: #F9F9F9 !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(4, 63, 109, 0.15);
}
.article-category-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 63, 109, 0.25);
}

.article-date-text {
  font-size: 0.75rem;
  color: rgba(102, 102, 102, 0.6);
  font-weight: 500;
}

.article-card-title {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  min-height: 2.8rem;
  border-left: none !important;
}

.article-card-excerpt {
  font-size: 0.9rem;
  color: #5D6062;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.article-card-link {
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}
.article-card-link i {
  transition: transform 0.3s ease;
}/*# sourceMappingURL=local.css.map */