/* ========================================
   SINGLE POST ARTICLE - UI/UX CỰC ĐẸP
   ======================================== */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-post-article {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 0rem 3rem 0rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin: 0 !important;
}

/* Full width article */
.single-post-article--full {
  margin: 0 auto !important;
  /* padding: 3rem 2rem; */
}

.single__post-wrapper {
  padding: 3rem 0rem 3rem 0rem;
}

/* Post Thumbnail */
.post-thumbnail {
  margin: -3rem auto 2rem;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
  height: 500px;
  width: 100%;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

/* Entry Header */
.entry-header {
  /* margin-bottom: 2.5rem; */
  padding-bottom: 2rem;
  border-bottom: 2px solid #f3f4f6;
  padding: 2rem;
}

/* Category Badge */
.post-category {
  margin-bottom: 1rem;
  animation: fadeInDown 0.6s ease;
}

.category-badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #003d82, #0052cc);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 61, 130, 0.3);
}

/* Title */
.entry-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

/* Post Meta */
.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9375rem;
  color: #666;
  animation: fadeInUp 0.6s ease 0.2s both;
  justify-content: space-between;
}

.from_the_blog_excerpt,
.post-title {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-author__name {
  font-weight: bold;
}

.post-author,
.post-datetime {
  font-size: 0.9rem;
}

.post-author img {
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-author strong {
  color: #003d82;
  font-weight: 700;
}

.post-meta-separator {
  color: var(--bs-black);
  font-weight: 700;
  font-size: 2rem;
}

.post-meta i {
  margin-right: 6px;
  color: #003d82;
}

/* Entry Content */
.entry-content {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 3rem;
  padding: 1.5em 2rem;
}

.entry-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.entry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

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

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.entry-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  border-left: 4px solid #003d82;
  font-style: italic;
  color: #666;
  border-radius: 0 8px 8px 0;
}

/* Post Tags */
.post-tags {
  padding: 2rem 0;
  border-top: 2px solid #f3f4f6;
  border-bottom: 2px solid #f3f4f6;
  margin-bottom: 2.5rem;
}

.post-tags i {
  color: #003d82;
  margin-right: 12px;
  font-size: 1.125rem;
}

.post-tags a {
  display: inline-block;
  padding: 8px 16px;
  margin: 6px 6px 6px 0;
  background: #f1f5f9;
  color: #003d82;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: #003d82;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 61, 130, 0.2);
}

/* Share Buttons */
.post-share {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
}

.post-share h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
  color: #fff;
}

.share-btn--facebook {
  background: #1877f2;
  color: #fff;
}

.share-btn--facebook:hover {
  background: #0c63d4;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.share-btn--twitter {
  background: #1da1f2;
  color: #fff;
}

.share-btn--twitter:hover {
  background: #0d8bd9;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(29, 161, 242, 0.4);
}

.share-btn--linkedin {
  background: #0077b5;
  color: #fff;
}

.share-btn--linkedin:hover {
  background: #005885;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.4);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.author-bio:hover {
  border-color: #003d82;
  box-shadow: 0 4px 16px rgba(0, 61, 130, 0.1);
}

.author-bio__avatar img {
  border-radius: 50%;
  border: 3px solid #003d82;
  box-shadow: 0 2px 12px rgba(0, 61, 130, 0.2);
}

.author-bio__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #003d82;
  margin-bottom: 0.75rem;
}

.author-bio__description {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.post-nav-item {
  padding: 2rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-nav-item:hover {
  border-color: #003d82;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 61, 130, 0.15);
}

.post-nav-item .nav-label {
  display: block;
  font-size: 0.8125rem;
  color: #999;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-nav-item a {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #003d82;
  text-decoration: none;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-nav-item:hover a {
  color: #0052cc;
}

/* ========================================
   SIDEBAR SINGLE POST 
   ======================================== */

.sidebar-single {
  padding-left: 2rem;
  position: sticky;
  top: 80px;
}

/* Widget General */
.sidebar-single .widget {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-single .widget:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Widget Title */
.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 3px solid #003d82;
  position: relative;
}

.widget-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget-title span {
  position: relative;
  display: inline-block;
}

/* Latest Posts Widget */
.widget-latest-posts .sidebar-post-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

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

.widget-latest-posts .sidebar-post-item:hover {
  transform: translateX(5px);
}

/* Thumbnail */
.sidebar-post-thumbnail {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}

.sidebar-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-post-item:hover .sidebar-post-thumbnail img {
  transform: scale(1.1);
}

/* Post Content */
.sidebar-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-post-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.sidebar-post-title a {
  color: #1a1a1a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.sidebar-post-title a:hover {
  color: #003d82;
}

.sidebar-post-meta {
  font-size: 0.9rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sidebar-post-meta i {
  color: #003d82;
  font-size: 0.75rem;
}

/* Categories Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 0.75rem;
}

.category-item:last-child {
  margin-bottom: 0;
}

.category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #333;
}

.category-item a:hover {
  background: #003d82;
  color: #fff;
  transform: translateX(5px);
}

.category-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: #003d82;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 14px;
}

.category-item a:hover .category-count {
  background: #fff;
  color: #003d82;
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 8px 16px;
  background: #f1f5f9;
  color: #003d82;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: #003d82;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 61, 130, 0.2);
}

/* Newsletter Widget */
.widget-newsletter {
  background: linear-gradient(135deg, #003d82 0%, #0052cc 100%);
  color: #fff;
}

.widget-newsletter .widget-title {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-newsletter .widget-title span::before {
  background: var(--bs-info);
}

.widget-newsletter p {
  line-height: 1.6;
  color: black;
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 14px 24px;
  background: white;
  color: var(--bs-info);
  border: 1px solid var(--bs-info);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-form button:hover {
  background: var(--bs-info);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Pagination */
.nav-pagination > li > a,
.nav-pagination > li > span {
  font-size: 1.5em !important;
  border: none !important;
}

.ux-relay__pagination.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 2rem 0;
  list-style: none;
  margin: 0;
}

.ux-relay__pagination li {
  list-style: none;
}

/* Page Links */
.ux-relay__pagination .page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 16px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-relay__pagination .page-number:hover {
  background: #f1f5f9;
  color: #003d82;
  transform: scale(1.1);
}

/* Current/Active Page - Blue Circle */
.ux-relay__pagination .current {
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 61, 130, 0.4);
  transform: scale(1.15);
  cursor: default;
  pointer-events: none;
}

/* Dots */
.ux-relay__pagination .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  background-color: var(--fs-color-primary);
  letter-spacing: 2px;
}

/* Prev/Next Arrows */
.ux-relay__pagination .prev,
.ux-relay__pagination .next {
  background: transparent !important;
  border: none !important;
  color: #1a1a1a !important;
  font-size: 1.25rem;
  font-weight: 700;
  width: auto !important;
  min-width: auto !important;
  padding: 0 12px !important;
  box-shadow: none !important;
}

.ux-relay__pagination .prev:hover,
.ux-relay__pagination .next:hover {
  color: #003d82 !important;
  background: transparent !important;
  transform: translateX(0) !important;
}

.ux-relay__pagination .prev:hover {
  transform: translateX(-3px) !important;
}

.ux-relay__pagination .next:hover {
  transform: translateX(3px) !important;
}

/* Remove default Flatsome styles */
.ux-relay__pagination .page-number svg {
  display: none;
}

/* Thumbnail refine */
.single-post-article--full .post-thumbnail {
  height: 520px;
  border-radius: 16px 16px 0 0;
}

/* =========================
   Latest 3 Posts Section
   ========================= */
.latest-posts {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid #f3f4f6;
}

.latest-posts__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.latest-posts__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  width: fit-content;
}

.latest-posts__more {
  font-weight: 700;
  text-decoration: none;
  color: #003d82;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.latest-posts__more:hover {
  color: #0052cc;
  transform: translateX(2px);
}

.latest-posts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.latest-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #eef2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.latest-card:hover {
  transform: translateY(-6px);
  border-color: #003d82;
  box-shadow: 0 10px 24px rgba(0, 61, 130, 0.12);
}

.latest-card:hover .post-meta-separator,
.latest-card:hover .latest-card__title a {
  color: rgb(224, 168, 34);
}

.latest-card__thumb {
  display: block;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.latest-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.latest-card:hover .latest-card__thumb img {
  transform: scale(1.08);
}

.latest-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9, #e5e7eb);
}

.latest-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.latest-card__meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.latest-card__meta i {
  color: #003d82;
  margin-right: 6px;
}

.latest-card__title {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.latest-card__title a {
  color: #111827;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.latest-card__title a:hover {
  color: #003d82;
}

.latest-card__excerpt {
  margin: 0 0 1rem 0;
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  color: #003d82;
  transition: all 0.25s ease;
}

.latest-card:hover .latest-card__cta {
  color: rgb(224, 168, 34);
  transform: translateX(2px);
}

/* =========================
   Single Contact Form
   ========================= */
.single-contact {
  margin-top: 2.5rem;
}

.single-contact__wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #eef2f7;
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.single-contact__head {
  margin-bottom: 1.5rem;
}

.single-contact__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
}

.single-contact__desc {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

/* CF7 base */
.single-contact .wpcf7 form {
  margin: 0;
}

.single-contact .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.single-contact .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  margin-top: 6px;
}

/* Layout fields */
.single-contact .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.single-contact .form-grid .full {
  grid-column: 1 / -1;
}

.single-contact input[type="text"],
.single-contact input[type="tel"],
.single-contact input[type="email"],
.single-contact textarea,
.single-contact select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #fff;
  outline: none;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.single-contact textarea {
  height: auto;
  padding: 12px 14px;
  min-height: 120px;
  resize: vertical;
}

.single-contact input:focus,
.single-contact textarea:focus,
.single-contact select:focus {
  border-color: #003d82;
  box-shadow: 0 0 0 4px rgba(0, 61, 130, 0.12);
}

.single-contact .wpcf7-submit {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, #003d82, #0052cc);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.single-contact .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 61, 130, 0.22);
}

.single-contact .wpcf7-spinner {
  margin: 0;
}

/* Breadcrumb */

/* =========================
   Breadcrumb
   ========================= */
.breadcrumb-wrapper {
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #6b7280;
}

.breadcrumb li:not(:last-child)::after {
  content: "✦";
  margin: 0 6px;
  color: #9ca3af;
}

.breadcrumb a {
  color: #003d82;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb li:last-child span {
  color: var(--bs-body-color);
}

@media (max-width: 64em) {
  .latest-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive */
@media (max-width: 48em) {
  .breadcrumb-wrapper {
    padding: 0 1.25rem;
  }

  .latest-posts__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .single-post-article--full {
    padding: 2rem 1.25rem;
  }
  .single-post-article--full .post-thumbnail {
    height: 300px;
  }
  .single-contact__wrap {
    padding: 1.5rem;
  }
  .single-contact .form-grid {
    grid-template-columns: 1fr;
  }
  .latest-posts__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-card__thumb {
    height: 210px;
  }

  .sidebar-post-meta {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .post-thumbnail {
    margin: -2rem auto 2rem;
    height: 300px;
  }

  .entry-title {
    font-size: 1.75rem;
  }

  .entry-content {
    font-size: 1rem;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

  .sidebar-single {
    padding-left: 0;
    padding-top: 3rem;
  }

  .sidebar-post-thumbnail {
    width: 50%;
    height: 100px;
  }

  .widget {
    margin-bottom: 1.5rem;
  }

  .ux-relay__pagination {
    gap: 6px;
  }

  .ux-relay__pagination .page-number {
    min-width: 44px;
    height: 44px;
    font-size: 0.9375rem;
  }

  .ux-relay__pagination .dots {
    min-width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }
}

@media (max-width: 30em) {
  .ux-relay__pagination .page-number {
    min-width: 40px;
    height: 40px;
    font-size: 0.875rem !important;
  }

  .ux-relay__pagination li {
    list-style: none;
    margin-left: 0.5em !important;
  }
}
