@charset "UTF-8";
.site-footer {
  background: #f5f5f5;
  padding: 70px 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.site-footer .footer-column a span {
  font-size: 11px;
  text-align: right;
  text-transform: uppercase;
}
.site-footer .footer-column h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}
.site-footer .footer-column .wrap-logo {
  text-align: center;
}
.site-footer .footer-column .wrap-logo a {
  text-align: center;
  display: block;
}
.site-footer .footer-column .wrap-logo a img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: auto;
}
.site-footer .footer-column ul {
  margin: 0;
  padding: 0;
}
.site-footer .footer-column ul li {
  margin-bottom: 6px;
  list-style: none;
}
.site-footer .footer-menu,
.site-footer .footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-menu a,
.site-footer .footer-contact a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}
.site-footer .footer-menu a:hover,
.site-footer .footer-contact a:hover {
  color: #000;
}
.site-footer .footer-contact li {
  color: #444;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .site-footer .footer-column img {
    margin: auto;
  }
}

.related-product-section {
  background: #ffffff;
  color: #000000;
  padding-top: 1px;
}
.related-product-section h3 {
  text-align: center;
}
.related-product-section .site-title-sub {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 30px;
}

.relatedProperty.related-custom-properties {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .relatedProperty.related-custom-properties {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .relatedProperty.related-custom-properties {
    grid-template-columns: 1fr;
  }
}
.relatedProperty.related-custom-properties .items {
  list-style: none;
}
.relatedProperty.related-custom-properties .property-card {
  display: block;
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  border: none;
}
.relatedProperty.related-custom-properties .property-thumb {
  display: block;
}
.relatedProperty.related-custom-properties .property-overlay {
  display: none;
}
.relatedProperty.related-custom-properties .wrap-image {
  width: 100%;
}
.relatedProperty.related-custom-properties .wrap-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.relatedProperty.related-custom-properties .property-content {
  padding: 30px 0;
  background: #ffffff;
  color: #000000;
}
.relatedProperty.related-custom-properties .property-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px;
}
.relatedProperty.related-custom-properties .property-content p {
  font-size: 14px;
  color: #000000;
  margin: 0 0 12px;
}
.relatedProperty.related-custom-properties .property-content .property-price {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}
.relatedProperty.related-custom-properties .property-content .btn {
  margin-top: 8px;
}

.master-plan-wrapper {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.master-plan-wrapper:active {
  cursor: grabbing;
}

.master-plan-image {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
  transform-origin: center center;
  will-change: transform;
}

.zoom-enabled:hover .master-plan-image {
  transform: scale(1.08);
}

.zoom-enabled {
  position: relative;
  cursor: zoom-in;
}

.zoom-enabled::after {
  content: "🔍 Scroll to Zoom • Drag to Move";
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.zoom-enabled:hover::after {
  opacity: 1;
}

.property-faq-section {
  background: #f8f8f8;
}
.property-faq-section .property-faq-heading {
  max-width: 700px;
  margin-bottom: 50px;
}
.property-faq-section .property-faq-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  color: #111;
}
.property-faq-section .property-faq-list {
  max-width: 1000px;
  margin: 0 auto;
}
.property-faq-section .property-faq-item {
  border-top: 1px solid #d9d9d9;
}
.property-faq-section .property-faq-item:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.property-faq-section .property-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}
.property-faq-section .property-faq-question .property-faq-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.3s ease;
}
.property-faq-section .property-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease;
}
.property-faq-section .property-faq-answer-inner {
  min-height: 0;
  max-width: 850px;
  padding-right: 70px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.property-faq-section .property-faq-answer-inner p {
  margin-top: 0;
  margin-bottom: 15px;
}
.property-faq-section .property-faq-answer-inner p:last-child {
  margin-bottom: 25px;
}
.property-faq-section .property-faq-answer-inner ul,
.property-faq-section .property-faq-answer-inner ol {
  margin-bottom: 20px;
}
.property-faq-section .property-faq-answer-inner a {
  color: #111;
  text-decoration: underline;
}
.property-faq-section .property-faq-item.active .property-faq-answer {
  grid-template-rows: 1fr;
}
.property-faq-section .property-faq-item.active .property-faq-answer-inner {
  opacity: 1;
}
.property-faq-section .property-faq-item.active .property-faq-icon {
  color: #000;
}
.property-faq-section .property-faq-item.active .property-faq-icon i {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .property-faq-section {
    padding: 60px 0;
  }
  .property-faq-section .property-faq-heading {
    margin-bottom: 30px;
  }
  .property-faq-section .property-faq-heading h2 {
    font-size: 32px;
  }
  .property-faq-section .property-faq-question {
    padding: 20px 0;
    font-size: 16px;
    gap: 15px;
  }
  .property-faq-section .property-faq-question .property-faq-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .property-faq-section .property-faq-answer-inner {
    padding-right: 45px;
    font-size: 14px;
    line-height: 1.7;
  }
}
.property-amenities {
  background: #000;
  color: #fff;
  padding: 60px 0;
}
.property-amenities .heading h2 {
  color: #fff;
  margin-bottom: 16px;
}
.property-amenities .section-content {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
.property-amenities .section-content p {
  margin: 0;
}
.property-amenities .amenites-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (max-width: 991px) {
  .property-amenities .amenites-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .property-amenities .amenites-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
.property-amenities .amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.property-amenities .amenity-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-amenities .amenity-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.property-amenities h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.property-gallery {
  padding: 60px 0;
}
.property-gallery .gallery-slider {
  margin: 0 -10px;
  position: relative;
  padding-bottom: 0px;
}
.property-gallery .gallery-slide {
  padding: 0 10px;
}
.property-gallery .gallery-slide a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.property-gallery .gallery-slide img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.property-gallery .gallery-slide a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.property-gallery .gallery-slide a:hover img {
  transform: scale(1.08);
}
.property-gallery .gallery-slide a:hover::after {
  opacity: 1;
}
.property-gallery .gallery-view-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.property-gallery .gallery-slide a:hover .gallery-view-badge {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
.property-gallery .slick-arrow {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: auto;
  bottom: -70px;
  transform: none;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, filter 0.3s ease;
}
.property-gallery .slick-arrow::before {
  content: none;
}
.property-gallery .slick-arrow:hover {
  background-color: #e9e9e9;
  filter: invert(1);
}
.property-gallery .slick-prev {
  left: auto;
  right: 60px;
  background-image: url("https://cdn.jsdelivr.net/npm/feather-icons@4.29.0/dist/icons/chevron-left.svg");
  margin-right: 5px;
}
.property-gallery .slick-next {
  right: 0;
  background-image: url("https://cdn.jsdelivr.net/npm/feather-icons@4.29.0/dist/icons/chevron-right.svg");
}
.property-gallery .slick-disabled {
  opacity: 0.4;
  cursor: default;
}
.property-gallery .slick-disabled:hover {
  filter: none;
  background-color: #f2f2f2;
}

.project-tour .heading h2 {
  margin-bottom: 32px;
}
.project-tour .tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.project-tour .tour-tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.project-tour .tour-tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.project-tour .tour-tab-btn:hover {
  color: #000;
}
.project-tour .tour-tab-btn.active {
  color: #000;
}
.project-tour .tour-tab-btn.active::after {
  transform: scaleX(1);
}
.project-tour .tour-panel {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.project-tour .tour-panel video,
.project-tour .tour-panel iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.project-tour .tour-panel.active {
  display: block;
}
.project-tour .tour-youtube {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}
.project-tour .tour-youtube-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.project-tour .tour-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.project-tour .tour-play-btn:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .project-tour .tour-panel video,
  .project-tour .tour-panel iframe,
  .project-tour .tour-youtube {
    height: 260px;
  }
}

.indicator ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.indicator li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.indicator .dot-interest {
  background: #fff;
  border: 1px solid #ddd;
}
.indicator .dot-principal {
  background: #4b74a6;
}

.blog-header {
  margin-bottom: 40px;
}
.blog-header .blog-heading {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #111;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  color: #111;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}
.blog-card:hover .blog-card-title {
  color: #d10000;
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f3f3f3;
}

.blog-card-img {
  display: block;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.blog-card-img--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.blog-card-date {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #777;
}

.blog-card-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  transition: color 0.3s ease;
}

.blog-card-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
  gap: 8px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.blog-pagination .page-numbers:hover {
  color: #fff;
  background: #d10000;
  border-color: #d10000;
}
.blog-pagination .page-numbers.current {
  color: #fff;
  background: #d10000;
  border-color: #d10000;
}
.blog-pagination .page-numbers.prev, .blog-pagination .page-numbers.next {
  padding: 0 18px;
}

.blog-empty {
  margin: 40px 0;
  padding: 40px;
  text-align: center;
  font-size: 16px;
  color: #666;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .blog-card-body {
    padding: 20px;
  }
  .blog-card-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .blog-header {
    margin-bottom: 28px;
  }
  .blog-header .blog-heading {
    font-size: 34px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card-image {
    aspect-ratio: 16/10;
  }
  .blog-card-body {
    padding: 18px;
  }
  .blog-card-title {
    font-size: 20px;
  }
  .blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
  }
  .blog-pagination {
    margin-top: 35px;
    flex-wrap: wrap;
  }
  .blog-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
  }
  .blog-pagination .page-numbers.prev, .blog-pagination .page-numbers.next {
    padding: 0 14px;
  }
}
.single-post-page {
  padding: 80px 0 100px;
  background: #fff;
}

.single-post-back {
  margin-bottom: 45px;
}
.single-post-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}
.single-post-back a:hover {
  color: #d10000;
}

.single-post-header {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.single-post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777;
}

.single-post-separator {
  color: #bbb;
}

.single-post-category {
  color: #d10000;
}

.single-post-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #111;
}

.single-post-intro {
  max-width: 720px;
  margin: 25px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}

.single-post-featured-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 70px;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f5;
}

.single-post-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post-layout {
  width: 100%;
}

.single-post-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: #333;
}
.single-post-content p {
  margin: 0 0 25px;
}
.single-post-content h2 {
  margin: 55px 0 20px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #111;
}
.single-post-content h3 {
  margin: 40px 0 15px;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
}
.single-post-content h4 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  color: #111;
}
.single-post-content a {
  color: #d10000;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}
.single-post-content a:hover {
  opacity: 0.7;
}
.single-post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 35px auto;
  border-radius: 10px;
}
.single-post-content ul,
.single-post-content ol {
  margin: 0 0 30px;
  padding-left: 25px;
}
.single-post-content li {
  margin-bottom: 10px;
}
.single-post-content blockquote {
  margin: 40px 0;
  padding: 25px 30px;
  border-left: 4px solid #d10000;
  background: #f8f8f8;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  color: #333;
}
.single-post-content code {
  padding: 3px 6px;
  border-radius: 4px;
  background: #f3f3f3;
  font-size: 14px;
}
.single-post-content pre {
  overflow-x: auto;
  margin: 35px 0;
  padding: 25px;
  border-radius: 8px;
  background: #111;
  color: #fff;
}
.single-post-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.single-post-content table {
  width: 100%;
  margin: 35px 0;
  border-collapse: collapse;
}
.single-post-content table th,
.single-post-content table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
.single-post-content table th {
  font-weight: 600;
  background: #f5f5f5;
}
.single-post-content hr {
  margin: 50px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}

.single-post-tags {
  max-width: 760px;
  margin: 65px auto 0;
  padding-top: 25px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.single-post-tags-label {
  margin-right: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.single-post-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.single-post-tag:hover {
  color: #fff;
  background: #d10000;
  border-color: #d10000;
}

.single-post-navigation {
  max-width: 1000px;
  margin: 80px auto 0;
  padding-top: 35px;
  border-top: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.single-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single-post-nav-item a {
  max-width: 400px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}
.single-post-nav-item a:hover {
  color: #d10000;
}

.single-post-nav-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.single-post-nav-next {
  align-items: flex-end;
  text-align: right;
}

.single-post .site-content .ast-container {
  display: block;
  max-width: 100% !important;
}

.single-post-pages {
  display: flex;
  gap: 8px;
  margin-top: 50px;
}
.single-post-pages a,
.single-post-pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
}
.single-post-pages .current {
  color: #fff;
  background: #d10000;
  border-color: #d10000;
}

@media (max-width: 991px) {
  .single-post-page {
    padding: 60px 0 80px;
  }
  .single-post-header {
    margin-bottom: 40px;
  }
  .single-post-title {
    font-size: 48px;
  }
  .single-post-featured-image {
    margin-bottom: 50px;
  }
  .single-post-content {
    font-size: 16px;
  }
  .single-post-content h2 {
    font-size: 30px;
  }
  .single-post-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .single-post-page {
    padding: 40px 0 60px;
  }
  .single-post-back {
    margin-bottom: 30px;
  }
  .single-post-header {
    margin-bottom: 35px;
    text-align: left;
  }
  .single-post-meta {
    justify-content: flex-start;
    font-size: 11px;
  }
  .single-post-title {
    font-size: 36px;
    line-height: 1.12;
  }
  .single-post-intro {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }
  .single-post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
  }
  .single-post-content {
    font-size: 16px;
    line-height: 1.75;
  }
  .single-post-content p {
    margin-bottom: 22px;
  }
  .single-post-content h2 {
    margin-top: 40px;
    font-size: 28px;
  }
  .single-post-content h3 {
    margin-top: 32px;
    font-size: 23px;
  }
  .single-post-content blockquote {
    margin: 30px 0;
    padding: 20px;
    font-size: 18px;
  }
  .single-post-content img {
    margin: 25px auto;
    border-radius: 7px;
  }
  .single-post-tags {
    margin-top: 45px;
  }
  .single-post-navigation {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 55px;
  }
  .single-post-nav-next {
    align-items: flex-start;
    text-align: left;
  }
  .single-post-nav-item a {
    font-size: 16px;
  }
}/*# sourceMappingURL=my.css.map */