@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
  font-family: "Inter", sans-serif;
}

.article-grid-section {
  padding: 6rem 5%;
}

/* ---------- Section Heading ---------- */
.article-grid-section__heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2.4rem;
  letter-spacing: -0.02em;
}

/* ---------- Tabs ---------- */
.article-grid-section__tabs-wrapper {
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.article-grid-section__tabs-wrapper{
  background: transparent!important;
  border-radius: 50px;
}

.article-grid-section__tabs-wrapper::-webkit-scrollbar {
  display: none;
}

/* Pill track */
.article-grid-section__tabs-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #e8edff;
  border-radius: 50px;
  padding: 0.3rem;
  list-style: none;
  margin: 0;
  white-space: nowrap;
}

/* Sliding pill indicator */
.article-grid-section__tabs-slider {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  height: calc(100% - 0.6rem);
  background: rgb(33, 102, 255);
  border-radius: 50px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(33, 102, 255, 0.32);
  z-index: 0;
  pointer-events: none;
}

.article-grid-section__tab-item {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.article-grid-section__tab-btn {
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
  outline: none;
  position: relative;
  z-index: 1;
  display: block;
}

.article-grid-section__tab-btn:hover {
  color: rgb(33, 102, 255);
}

.article-grid-section__tab-btn.active {
  color: #ffffff;
  font-weight: 600;
}

/* Slide-in animation for tab panels */
.article-grid-section__tab-pane {
  display: none;
  animation: article-grid-slideIn 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.article-grid-section__tab-pane.active {
  display: block;
}

@keyframes article-grid-slideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Cards ---------- */
.article-grid-section__card {
  background: #ffffff;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(33, 102, 255, 0.07);
  border: 1px solid #e8edff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-grid-section__card:hover {
  box-shadow: 0 12px 36px rgba(33,102,255,0.15);
}

.article-grid-section__card-img-wrap {
  position: relative;
  overflow: hidden;
}

.article-grid-section__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-grid-section__card:hover .article-grid-section__card-img-wrap img {
  transform: scale(1.06);
}

.article-grid-section__card-category {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgb(33, 102, 255);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: .6rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-grid-section__card-body {
  padding: 2rem 2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-grid-section__card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.article-grid-section__card-excerpt {
  font-size: 1.4rem;
  color: #7a7a9a;
  line-height: 1.7;
  margin: 1rem 0;
}

.article-grid-section__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 1.6rem 2rem 2rem;
  border-top: 1px solid #e6e4ff;
  background: #f7f6ff;
}

.article-grid-section__card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #6b6b8a;
}

.article-grid-section__card-meta svg {
  color: rgb(33, 102, 255);
  width: 1.6rem;
}

/* ---------- Pagination ---------- */
.article-grid-section__pagination-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-grid-section__page-btn {
  background: #ffffff;
  border: 1.5px solid #e2ddf5;
  color: #555577;
  font-size: 1.4rem;
  font-weight: 600;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.article-grid-section__page-btn:hover {
  border-color: rgb(33, 102, 255);
  color: rgb(33, 102, 255);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33,102,255,0.15);
}

.article-grid-section__page-btn.active {
  background: rgb(33, 102, 255);
  color: #ffffff;
  border-color: rgb(33, 102, 255);
  box-shadow: 0 4px 14px rgba(33,102,255,0.3);
}

.article-grid-section__page-btn.arrow {
  border-radius: 50px;
  width: auto;
  padding: 1.4rem 1.4rem;
  gap: 0.4rem;
  font-size: 1.4rem;
}

.article-grid-section__page-btn.arrow i {
  font-size: 0.8rem;
}

/*INNER ARTICLE PAGE CSS*/

/* ===================== ARTICLE SECTION ===================== */
.article-section {
  padding: 6rem 5%;
  background-color: #ffffff;
}

/* ---- Breadcrumb ---- */
.article-section .article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.article-section .article-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-section .article-breadcrumb a:hover {
  color: #2563eb;
}

.article-section .article-breadcrumb .article-breadcrumb-sep {
  color: #ccc;
  font-size: 1.1rem;
}

.article-section .article-breadcrumb .article-breadcrumb-current {
  color: #1a1a1a;
  font-weight: 500;
}

/* ---- Main Layout ---- */
.article-section .article-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.article-section .article-main-col {
  flex: 1;
  min-width: 0;
}

.article-section .article-sidebar-col {
  width: 32rem;
  flex-shrink: 0;
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.article-section .article-sidebar-col::-webkit-scrollbar {
  width: 4px;
}

.article-section .article-sidebar-col::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

/* ---- Article Title ---- */
.article-section .article-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 2rem;
}

/* ---- Meta ---- */
.article-section .article-meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.article-section .article-meta-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-section .article-meta-author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.article-section .article-meta-author-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
}

.article-section .article-meta-sep {
  color: #cbd5e1;
  font-size: 1.8rem;
  font-weight: 300;
}

.article-section .article-meta-date,
.article-section .article-meta-readtime {
  font-size: 1.3rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-section .article-meta-category {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2563eb;
  background-color: #eff6ff;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.article-section .article-meta-category:hover {
  background-color: #dbeafe;
}

/* ---- Featured Image ---- */
.article-section .article-featured-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.2rem;
  margin-bottom: 3rem;
}

.article-section .article-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-section .article-featured-img-wrap:hover img {
  transform: scale(1.02);
}

.article-section .article-img-caption {
  font-size: 1.3rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* ---- TOC ---- */
.article-section .article-toc {
  background-color: #f8fafc;
  border-left: 3px solid #2563eb;
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 2rem 2.4rem;
  margin-bottom: 3.2rem;
}

.article-section .article-toc-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  user-select: none;
}

.article-section .article-toc-title .article-toc-toggle-icon {
  margin-left: auto;
  font-size: 1.2rem;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.article-section .article-toc.article-toc-open .article-toc-title .article-toc-toggle-icon {
  transform: rotate(180deg);
}

.article-section .article-toc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, margin-top 0.2s ease;
  margin-top: 0;
}

.article-section .article-toc.article-toc-open .article-toc-body {
  max-height: 60rem;
  margin-top: 1.4rem;
}

.article-section .article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-section .article-toc-list li {
  margin-bottom: 0.8rem;
}

.article-section .article-toc-list li a {
  font-size: 1.4rem;
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s ease;
}

.article-section .article-toc-list li a:hover {
  color: #2563eb;
}

.article-section .article-toc-list li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  flex-shrink: 0;
}

.article-section .article-toc-list .article-toc-sub {
  padding-left: 1.6rem;
  margin-top: 0.4rem;
}

.article-section .article-toc-list .article-toc-sub li a::before {
  background-color: #93c5fd;
  width: 5px;
  height: 5px;
}

/* ---- Content Typography ---- */
.article-section .article-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0f172a;
  padding: 1rem;
}

.article-section .article-content h3 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 2.8rem;
  margin-bottom: 1rem;
}

.article-section .article-content p {
  font-size: 1.8rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.article-section .article-content ul,
.article-section .article-content ol {
  padding-left: 2rem;
  margin-bottom: 1.8rem;
}

.article-section .article-content li {
  font-size: 1.6rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.article-section .article-content strong {
  font-weight: 700;
  color: #0f172a;
}

/* ---- In-content Image ---- */
.article-section .article-content-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  margin: 2.4rem 0;
}

.article-section .article-content-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-section .article-content-img-wrap:hover img {
  transform: scale(1.02);
}

/* ---- Video Embed ---- */
.article-section .article-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  margin: 2.8rem 0;
}

.article-section .article-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Blockquote ---- */
.article-section .article-quote {
  background-color: #fafafa;
  border-left: 4px solid #2563eb;
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 2.4rem 3rem;
  margin: 3.2rem 0;
  position: relative;
}

.article-section .article-quote-icon {
  font-size: 5rem;
  color: #dbeafe;
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  font-weight: 900;
}

.article-section .article-quote-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.7;
  font-style: italic;
  padding-left: 2rem;
  margin: 0 0 1rem 0;
}

.article-section .article-quote-author {
  font-size: 1.3rem;
  color: #64748b;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-section .article-quote-author::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: #94a3b8;
}

/* ---- Hotel Cards Grid ---- */
.article-section .article-hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.8rem 0;
}

.article-section .article-hotel-card {
  border: 1px solid #f1f5f9;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-section .article-hotel-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.article-section .article-hotel-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-section .article-hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-section .article-hotel-card:hover .article-hotel-card-img img {
  transform: scale(1.05);
}

.article-section .article-hotel-card-body {
  padding: 1.6rem;
}

.article-section .article-hotel-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.article-section .article-hotel-card-loc {
  font-size: 1.3rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.article-section .article-hotel-card-stars {
  color: #f59e0b;
  font-size: 1.2rem;
}

/* ---- Info Box ---- */
.article-section .article-info-box {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 1rem;
  padding: 2rem 2.4rem;
  margin: 2.8rem 0;
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.article-section .article-info-box-icon {
  font-size: 2rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.article-section .article-info-box-text {
  font-size: 1.5rem;
  color: #1e3a5f;
  line-height: 1.7;
}

/* ---- Tags & Share ---- */
.article-section .article-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 2.4rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-top: 3.6rem;
}

.article-section .article-tags-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-section .article-tags-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.article-section .article-tag {
  font-size: 1.3rem;
  color: #475569;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-section .article-tag:hover {
  background-color: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.article-section .article-share-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-section .article-share-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.article-section .article-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  color: #64748b;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-section .article-share-btn:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

/* ---- Related Posts ---- */
.article-section .article-related {
  margin-top: 4.8rem;
}

.article-section .article-related-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2.4rem;
}

.article-section .article-related-card {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  text-decoration: none;
  padding: 1.6rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  margin-bottom: 1.6rem;
}

.article-section .article-related-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}

.article-section .article-related-card-img {
  width: 9rem;
  height: 6.5rem;
  border-radius: 0.8rem;
  overflow: hidden;
  flex-shrink: 0;
}

.article-section .article-related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-section .article-related-card-date {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}

.article-section .article-related-card-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
}

/* ---- Post Navigation ---- */
.article-section .article-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3.2rem;
  border-top: 1px solid #f1f5f9;
}

.article-section .article-post-nav-item {
  flex: 1;
  text-decoration: none;
  padding: 1.8rem 2rem;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  transition: all 0.2s ease;
}

.article-section .article-post-nav-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.article-section .article-post-nav-dir {
  font-size: 1.2rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.article-section .article-post-nav-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.article-section .article-post-nav-item.article-post-nav-next {
  text-align: right;
}

.article-section .article-post-nav-item.article-post-nav-next .article-post-nav-dir {
  justify-content: flex-end;
}

/* ---- Author Box ---- */
.article-section .article-author-box {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  background-color: #f8fafc;
  border-radius: 1.4rem;
  padding: 3rem;
  margin-top: 4rem;
}

.article-section .article-author-box-img {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2563eb;
  flex-shrink: 0;
}

.article-section .article-author-box-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.article-section .article-author-box-bio {
  font-size: 1.5rem;
  color: #64748b;
  line-height: 1.7;
}

/* ---- Comments ---- */
.article-section .article-comments {
  margin-top: 4.8rem;
}

.article-section .article-comments-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2.8rem;
}

.article-section .article-comment-item {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid #f1f5f9;
}

.article-section .article-comment-item:last-child {
  border-bottom: none;
}

.article-section .article-comment-avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.article-section .article-comment-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.article-section .article-comment-date {
  font-size: 1.2rem;
  color: #2563eb;
  margin-bottom: 0.8rem;
}

.article-section .article-comment-text {
  font-size: 1.5rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.article-section .article-comment-reply-btn {
  font-size: 1.2rem;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  transition: all 0.2s ease;
}

.article-section .article-comment-reply-btn:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

/* ---- Inline Reply Form ---- */
.article-section .article-inline-reply {
  display: none;
  margin-top: 1.4rem;
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 1.8rem;
  border: 1px solid #e2e8f0;
}

.article-section .article-inline-reply.article-reply-open {
  display: block;
}

.article-section .article-inline-reply-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-section .article-inline-reply-label span {
  color: #2563eb;
}

.article-section .article-inline-reply-input {
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem;
  outline: none;
  resize: vertical;
  min-height: 9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-section .article-inline-reply-input::placeholder {
  color: #b0bec5;
}

.article-section .article-inline-reply-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.article-section .article-inline-reply-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.article-section .article-inline-reply-submit {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background-color: #2563eb;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
}

.article-section .article-inline-reply-submit:hover {
  background-color: #1d4ed8;
}

.article-section .article-inline-reply-cancel {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  padding: 0.8rem 1.8rem;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-section .article-inline-reply-cancel:hover {
  border-color: #94a3b8;
  color: #374151;
}

/* ---- Checklist ---- */
.article-section .article-checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.4rem 0;
}

.article-section .article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.6rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding: 1.2rem 1.6rem;
  background-color: #f8fafc;
  border-radius: 0.8rem;
  border: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.article-section .article-checklist li:hover {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.article-section .article-checklist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background-color: #2563eb;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  margin-top: 0.2rem;
}

/* ---- Leave Comment Form ---- */
.article-section .article-comment-form {
  background-color: #f8fafc;
  border-radius: 1.4rem;
  padding: 3.2rem;
  margin-top: 4rem;
}

.article-section .article-comment-form-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.article-section .article-comment-form-sep {
  height: 1px;
  background-color: #e2e8f0;
  margin-bottom: 2.4rem;
}

.article-section .article-form-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.6rem;
  display: block;
}

.article-section .article-form-input,
.article-section .article-form-textarea {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.article-section .article-form-input::placeholder,
.article-section .article-form-textarea::placeholder {
  color: #b0bec5;
}

.article-section .article-form-input:focus,
.article-section .article-form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.article-section .article-form-textarea {
  min-height: 14rem;
}

.article-section .article-form-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.article-section .article-form-checkbox {
  width: 1.8rem;
  height: 1.8rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.3rem;
  cursor: pointer;
  accent-color: #2563eb;
}

.article-section .article-form-checkbox-label {
  font-size: 1.4rem;
  color: #64748b;
}

.article-section .article-submit-btn {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background-color: #2563eb;
  border: none;
  padding: 1.3rem 3.2rem;
  border-radius: 5rem;
  cursor: pointer;
  margin-top: 2rem;
  transition: background 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.article-section .article-submit-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

/* ===================== SIDEBAR ===================== */
.article-section .sidebar-widget {
  background-color: #F7F9FF;
  border: 1px solid #f1f5f9;
  border-radius: 1.2rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
}

.article-section .sidebar-widget-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #e2e8f082;
}

/* Search */
.article-section .sidebar-search-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem; background: white;
  overflow: hidden;
  transition: border-color 0.2s;
}

.article-section .sidebar-search-wrap:focus-within {
  border-color: #2563eb;
}

.article-section .sidebar-search-input {
  flex: 1;
  padding: 1.1rem 1.4rem;
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  border: none;
  outline: none;
  color: #1a1a1a;
  background: transparent;
}

.article-section .sidebar-search-input::placeholder {
  color: #b0bec5;
}

.article-section .sidebar-search-btn {
  background: none;
  border: none;
  padding: 0 1.6rem;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.article-section .sidebar-search-btn:hover {
  color: #2563eb;
}

/* Categories */
.article-section .sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-section .sidebar-cat-list li {
  border-bottom: 1px solid #f8fafc;
}

.article-section .sidebar-cat-list li:last-child {
  border-bottom: none;
}

.article-section .sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.45rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-section .sidebar-cat-link:hover {
  color: #2563eb;
}

.article-section .sidebar-cat-link .article-cat-arrow {
  font-size: 1.1rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.article-section .sidebar-cat-link:hover .article-cat-arrow {
  transform: translate(3px, -3px);
  color: #2563eb;
}

.article-section .sidebar-cat-count {
  font-size: 1.2rem;
  color: #94a3b8;
}

/* Recent Posts in sidebar */
.article-section .sidebar-recent-post {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.article-section .sidebar-recent-post:hover {
  transform: translateX(3px);
}

.article-section .sidebar-recent-post:last-child {
  margin-bottom: 0;
}

.article-section .sidebar-recent-img {
  width: 7.2rem;
  height: 5.2rem;
  border-radius: 0.6rem;
  overflow: hidden;
  flex-shrink: 0;
}

.article-section .sidebar-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-section .sidebar-recent-date {
  font-size: 1.2rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.article-section .sidebar-recent-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.article-section .sidebar-recent-post:hover .sidebar-recent-text {
  color: #2563eb;
}

/* Popular Tags in sidebar */
.article-section .sidebar-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.article-section .sidebar-tag-item {
  font-size: 1.25rem;
  color: #475569;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-section .sidebar-tag-item:hover {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* CTA Box */
.article-section .sidebar-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.8rem 2.4rem;
  text-align: left;
  background: url(../img/signup-bg.jpg);
  background-size: cover; background-position: center;
}

.article-section .sidebar-cta-label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #bfdbfe;
  margin-bottom: 0.6rem;
}

.article-section .sidebar-cta-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.article-section .sidebar-cta-heading strong {
  color: #93c5fd;
}

.article-section .sidebar-cta-btn {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #1d4ed8;
  background-color: #ffffff;
  border: none;
  padding: 1.1rem 2.4rem;
  border-radius: 5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-block;
}

.article-section .sidebar-cta-btn:hover {
  background-color: #eff6ff;
}

.article_inner_faq {
  font-size: 1rem;
}

.article_inner_faq .accordion-item {
  border: 0.0625rem solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.article_inner_faq .accordion-button {
  font-size: 1.8rem;
  padding: 1.4rem 1.4rem;
  background-color: #ffffff;
  font-weight: 600;
  box-shadow: none;
}

.article_inner_faq .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #f8f9fa;
}

.article_inner_faq .accordion-body {
  font-size: 1.6rem;
  padding: 1rem 1.25rem;
  color: #555;
}

.article_inner_faq .accordion-button:focus {
  box-shadow: none;
}




























/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .article-grid-section {
    padding: 4rem 5%;
  }
}

@media (max-width: 575.98px) {
  .article-grid-section {
    padding: 3rem 4%;
  }
  .article-grid-section__heading {
    font-size: 1.7rem;
  }
  .article-grid-section__card-img-wrap {
    height: 18rem;
  }
}

/* ===================== RESPONSIVE 2 ===================== */
  @media (max-width: 1199px) {
    .article-section .article-sidebar-col {
      width: 28rem;
    }
  }

  @media (max-width: 991px) {
    .article-section {
      padding: 4rem 5%;
    }

    .article-section .article-layout {
      flex-direction: column;
    }

    .article-section .article-sidebar-col {
      width: 100%;
      position: static;
      max-height: none;
      overflow-y: visible;
    }

    .article-section .article-title {
      font-size: 2.8rem;
    }

    .article-section .article-hotel-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767px) {
    html {
      font-size: 58%;
    }

    .article-section {
      padding: 3rem 4%;
    }

    .article-section .article-title {
      font-size: 2.6rem;
    }

    .article-section .article-hotel-grid {
      grid-template-columns: 1fr;
    }

    .article-section .article-tags-share {
      flex-direction: column;
      align-items: flex-start;
    }

    .article-section .article-post-nav {
      flex-direction: column;
    }

    .article-section .article-author-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .article-section .article-comment-form {
      padding: 2rem 1.8rem;
    }

    .article-section .article-related-card {
      flex-direction: column;
    }

    .article-section .article-related-card-img {
      width: 100%;
      height: 16rem;
    }

    .article-section .article-toc {
      padding: 1.8rem;
    }

    .article-section .sidebar-cta {
      padding: 2.4rem 2rem;
    }
  }

  @media (max-width: 480px) {
    .article-section .article-meta {
      gap: 1rem;
    }

    .article-section .article-meta-sep {
      display: none;
    }

    .article-section .article-comment-form-title {
      font-size: 1.8rem;
    }
  }