.page-header {
  position: relative;
  padding: 16rem 0 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.92) 0%, rgba(251, 146, 60, 0.88) 50%, rgba(251, 191, 36, 0.85) 100%);
  z-index: 1;
}

.page-header .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.page-header .page-header-content .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .page-header .page-header-content .page-title {
    font-size: 4rem;
  }
}

.page-header .page-header-content .page-description {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  max-width: 40rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-header .page-header-content .page-description {
    font-size: 2rem;
  }
}

.breadcrumb-section {
  padding: 1rem 0;
  background: rgba(248, 250, 252, 0.3);
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-section .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #000000;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb-section .breadcrumb a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.breadcrumb-section .breadcrumb a:hover {
  color: #f97316;
}

.breadcrumb-section .breadcrumb .breadcrumb-separator {
  color: #000000;
}

.breadcrumb-section .breadcrumb .breadcrumb-current {
  color: #1a1a1a;
  font-weight: 600;
}

.news-filter-section {
  padding: 2rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.news-filter-section .news-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-filter-section .news-filter .filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1.5rem;
  background: #f8fafc;
  color: #1a1a1a;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.news-filter-section .news-filter .filter-btn:hover {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.news-filter-section .news-filter .filter-btn.active {
  background: #f97316;
  color: #ffffff;
}

.news-list-section {
  padding: 4rem 0;
  background: #ffffff;
}

.news-list-section .news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .news-list-section .news-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-list-section .news-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.news-list-section .news-grid .news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-list-section .news-grid .news-card:hover {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.news-list-section .news-grid .news-card:hover {
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.news-list-section .news-grid .news-card .news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-list-section .news-grid .news-card .news-card-image {
  position: relative;
  overflow: hidden;
}

.news-list-section .news-grid .news-card .news-card-image img {
  width: 100%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-list-section .news-grid .news-card .news-card-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-list-section .news-grid .news-card .news-card-image .news-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #f97316;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-list-section .news-grid .news-card .news-card-content {
  padding: 1.5rem;
}

.news-list-section .news-grid .news-card .news-card-content .news-card-date {
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.news-list-section .news-grid .news-card .news-card-content .news-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-list-section .news-grid .news-card .news-card-content .news-card-excerpt {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-section .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.news-list-section .pagination .pagination-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1.5rem;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #e2e8f0;
  min-width: 2.5rem;
  padding: 0.5rem 1rem;
}

.news-list-section .pagination .pagination-btn:hover:not(:disabled) {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
}

.news-list-section .pagination .pagination-btn.active {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
}

.news-list-section .pagination .pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

.article-single {
  padding-top: 4rem;
}

.article-single .article-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .article-single .article-container {
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
  }
}

.article-single .article-main {
  min-width: 0;
}

.article-single .article-header {
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.article-single .article-header .article-meta-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article-single .article-header .article-meta-top .article-category {
  background: #f97316;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-single .article-header .article-meta-top .article-date {
  font-size: 0.875rem;
  color: #000000;
}

.article-single .article-header .article-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .article-single .article-header .article-title {
    font-size: 2.5rem;
  }
}

.article-single .article-image {
  width: 100%;
  max-height: 32rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

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

.article-single .article-content {
  padding: 2rem 0;
  line-height: 1.8;
  color: #1a1a1a;
}

.article-single .article-content p {
  margin-bottom: 1.5rem;
}

.article-single .article-content h2, .article-single .article-content h3, .article-single .article-content h4 {
  margin: 2rem 0 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.article-single .article-content h2 {
  font-size: 1.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.article-single .article-content h3 {
  font-size: 1.5rem;
}

.article-single .article-content h4 {
  font-size: 1.25rem;
}

.article-single .article-content ul, .article-single .article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-single .article-content ul li, .article-single .article-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-single .article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.3);
  border-left: 4px solid #f97316;
  border-radius: 0.5rem;
}

.article-single .article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-single .article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.article-single .article-tags {
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.article-single .article-tags .tags-label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.article-single .article-tags .tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.article-single .article-tags .tags-list a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(248, 250, 252, 0.5);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.article-single .article-tags .tags-list a:hover {
  background: #f97316;
  color: #ffffff;
}

.article-single .article-share {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.article-single .article-share .share-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.article-single .article-share .share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article-single .article-share .share-buttons .share-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.article-single .article-share .share-buttons .share-button .share-icon {
  font-size: 1.125rem;
}

.article-single .article-share .share-buttons .share-button.twitter {
  background: #1DA1F2;
  color: #ffffff;
}

.article-single .article-share .share-buttons .share-button.twitter:hover {
  background: #0c85d0;
}

.article-single .article-share .share-buttons .share-button.facebook {
  background: #4267B2;
  color: #ffffff;
}

.article-single .article-share .share-buttons .share-button.facebook:hover {
  background: #34518d;
}

.article-single .article-share .share-buttons .share-button.line {
  background: #00B900;
  color: #ffffff;
}

.article-single .article-share .share-buttons .share-button.line:hover {
  background: #008600;
}

.article-single .article-navigation {
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid #e2e8f0;
}

.article-single .article-navigation .article-nav-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .article-single .article-navigation .article-nav-wrapper {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.article-single .article-navigation .article-nav-wrapper .article-nav-link {
  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.5rem;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.3);
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.article-single .article-navigation .article-nav-wrapper .article-nav-link:hover {
  background: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-single .article-navigation .article-nav-wrapper .article-nav-link .nav-label {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}

.article-single .article-navigation .article-nav-wrapper .article-nav-link .nav-title {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
}

.article-single .article-navigation .article-nav-wrapper .article-nav-link.next {
  text-align: right;
}

.article-single .article-sidebar .sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.article-single .article-sidebar .sidebar-widget .widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f97316;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 0.375rem;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-content .related-post-date {
  font-size: 0.75rem;
  color: #000000;
  margin-bottom: 0.25rem;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-content .related-post-title {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-content .related-post-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.article-single .article-sidebar .sidebar-widget .related-posts .related-post-item .related-post-content .related-post-title a:hover {
  color: #f97316;
}

.article-single .article-sidebar .sidebar-widget .category-list,
.article-single .article-sidebar .sidebar-widget .archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-single .article-sidebar .sidebar-widget .category-list li,
.article-single .article-sidebar .sidebar-widget .archive-list li {
  margin-bottom: 0.75rem;
}

.article-single .article-sidebar .sidebar-widget .category-list li:last-child,
.article-single .article-sidebar .sidebar-widget .archive-list li:last-child {
  margin-bottom: 0;
}

.article-single .article-sidebar .sidebar-widget .category-list li a,
.article-single .article-sidebar .sidebar-widget .archive-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 0.375rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.article-single .article-sidebar .sidebar-widget .category-list li a:hover,
.article-single .article-sidebar .sidebar-widget .archive-list li a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.article-single .article-sidebar .sidebar-widget .category-list li a .category-count,
.article-single .article-sidebar .sidebar-widget .archive-list li a .category-count {
  font-size: 0.875rem;
  color: #000000;
}

.article-single .article-sidebar .sidebar-widget.sidebar-cta {
  background: #ffffff;
}

.article-single .article-sidebar .sidebar-widget.sidebar-cta .cta-description {
  font-size: 0.875rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-single .back-to-list-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .article-single .back-to-list-wrapper {
    margin-bottom: 80px;
  }
}

.article-single .back-to-list-wrapper .btn-back-to-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  padding: 1rem 1rem 1rem 1.75rem;
  background: #eef2f6;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-single .back-to-list-wrapper .btn-back-to-list:hover {
  background: #e4e9ef;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.article-single .back-to-list-wrapper .btn-back-to-list:hover .btn-back-icon {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
          box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.article-single .back-to-list-wrapper .btn-back-to-list .btn-back-text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a365d;
  letter-spacing: 0.02em;
}

.article-single .back-to-list-wrapper .btn-back-to-list .btn-back-icon {
  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;
  width: 2.75rem;
  height: 2.75rem;
  background: #f97316;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
          box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.article {
  padding-top: 4rem;
}

.article .article-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.article .article-header .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #000000;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article .article-header .breadcrumb a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.article .article-header .breadcrumb a:hover {
  color: #f97316;
}

.article .article-header .breadcrumb .breadcrumb-separator {
  color: #000000;
}

.article .article-header .breadcrumb .breadcrumb-current {
  color: #f97316;
  font-weight: 600;
}

.article .article-header .article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article .article-header .article-meta .article-category {
  background: #f97316;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article .article-header .article-meta .article-date {
  font-size: 0.875rem;
  color: #000000;
}

.article .article-header .article-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .article .article-header .article-title {
    font-size: 2.5rem;
  }
}

.article .article-image {
  width: 100%;
  max-height: 32rem;
  overflow: hidden;
}

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

.article .article-content {
  padding: 4rem 0;
}

.article .article-content .article-body {
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.article .article-content .article-body .article-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid #f97316;
}

.article .article-content .article-body .article-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.article .article-content .article-body p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.article .article-content .article-body .article-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article .article-content .article-body .article-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.article .article-content .article-body .article-info-box {
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.article .article-content .article-body .article-info-box .info-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6rem 1fr;
      grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.article .article-content .article-body .article-info-box .info-item:last-child {
  border-bottom: none;
}

.article .article-content .article-body .article-info-box .info-item .info-label {
  font-weight: 600;
  color: #1a1a1a;
}

.article .article-content .article-body .article-info-box .info-item .info-value {
  color: #1a1a1a;
}

.article .article-content .article-body .article-schedule {
  margin: 2rem 0;
}

.article .article-content .article-body .article-schedule .schedule-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8rem 1fr;
      grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.article .article-content .article-body .article-schedule .schedule-item:hover {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .article .article-content .article-body .article-schedule .schedule-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.article .article-content .article-body .article-schedule .schedule-item .schedule-time {
  font-weight: 700;
  color: #f97316;
  font-size: 1rem;
}

.article .article-content .article-body .article-schedule .schedule-item .schedule-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.article .article-content .article-body .article-schedule .schedule-item .schedule-content p {
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.6;
}

.article .article-content .article-body .article-cta {
  text-align: center;
  margin: 3rem 0;
}

.article .article-content .article-body .article-cta .btn-large {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.article .article-content .article-body .article-contact {
  background: rgba(30, 64, 175, 0.05);
  border-left: 4px solid #1e40af;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.article .article-content .article-body .article-contact p {
  margin-bottom: 0.5rem;
}

.article .article-content .article-body .article-contact p:last-child {
  margin-bottom: 0;
}

.article .article-content .article-share {
  max-width: 48rem;
  margin: 0 auto 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.article .article-content .article-share .share-label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.article .article-content .article-share .share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article .article-content .article-share .share-buttons .share-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1.5rem;
  background: #f8fafc;
  color: #1a1a1a;
  font-size: 0.875rem;
}

.article .article-content .article-share .share-buttons .share-btn:hover {
  background: #f97316;
  color: #ffffff;
}

.article .article-content .article-share .share-buttons .share-btn.share-twitter:hover {
  background: #1DA1F2;
}

.article .article-content .article-share .share-buttons .share-btn.share-facebook:hover {
  background: #4267B2;
}

.article .article-content .article-share .share-buttons .share-btn.share-line:hover {
  background: #00B900;
}

.article .article-content .related-news {
  max-width: 64rem;
  margin: 0 auto 4rem;
}

.article .article-content .related-news .related-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: center;
}

.article .article-content .related-news .related-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .article .article-content .related-news .related-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.article .article-content .related-news .related-grid .related-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.article .article-content .related-news .related-grid .related-card:hover {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.article .article-content .related-news .related-grid .related-card:hover {
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.article .article-content .related-news .related-grid .related-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article .article-content .related-news .related-grid .related-card .related-image {
  overflow: hidden;
}

.article .article-content .related-news .related-grid .related-card .related-image img {
  width: 100%;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.article .article-content .related-news .related-grid .related-card .related-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.article .article-content .related-news .related-grid .related-card .related-content {
  padding: 1rem;
}

.article .article-content .related-news .related-grid .related-card .related-content .related-date {
  font-size: 0.75rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.article .article-content .related-news .related-grid .related-card .related-content .related-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article .article-content .back-to-list {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.article .article-content .back-to-list .btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #e2e8f0;
}

.article .article-content .back-to-list .btn-outline:hover {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
}
/*# sourceMappingURL=news.css.map */