.about-content {
  padding: 0;
  background: #f8f9fb;
}
.about-content .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-content .entry-content {
  max-width: 860px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.about-content .entry-content h1 {
  margin: 0;
}
@media (max-width: 768px) {
  .about-content .entry-content {
    padding: 35px 24px;
  }
}
.about-content {
  /* ---------- Typography ---------- */
}
.about-content h2 {
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: #1b1b1b;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 14px;
}
.about-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 20px;
  background: #d10000;
}
.about-content h3 {
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 600;
  color: #222;
  margin: 40px 0 18px;
  line-height: 1.35;
}
.about-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 14px;
  color: #333;
}
.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #5f6368;
  margin-bottom: 22px;
}
.about-content strong {
  font-weight: 600;
  color: #111;
}
.about-content a {
  color: #d10000;
  transition: 0.3s;
}
.about-content a:hover {
  color: #a60000;
}
.about-content {
  /* ---------- Lists ---------- */
}
.about-content ul {
  margin: 32px 0;
  padding-left: 0;
  list-style: none;
}
.about-content li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: #555;
  line-height: 1.8;
}
.about-content li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #d10000;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 12px;
}
.about-content {
  /* ---------- Images ---------- */
}
.about-content img {
  width: 100%;
  margin: 40px 0;
  border-radius: 14px;
}
.about-content figure {
  margin: 45px 0;
}
.about-content figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
.about-content {
  /* ---------- Quote ---------- */
}
.about-content blockquote {
  margin: 50px 0;
  padding: 30px 35px;
  border-left: 4px solid #d10000;
  background: #fafafa;
}
.about-content blockquote p {
  font-size: 20px;
  color: #222;
  margin: 0;
  font-style: italic;
}
.about-content hr {
  margin: 60px 0;
  border: none;
  height: 1px;
  background: #ececec;
}

.single-post-page {
  background: #fff;
  margin-top: 80px;
}

.post-banner {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.post-banner .post-featured-image {
  width: 100%;
  height: 100%;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-content-section {
  padding: 56px 20px 80px;
}
.post-content-section .container {
  max-width: 740px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 40px;
}
.post-header .post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.post-header .post-meta .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6b6b6b;
  display: inline-block;
}
.post-header .post-title {
  font-family: inherit;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.entry-content {
  font-family: inherit;
  font-size: 18px;
  line-height: 1.75;
  color: #1a1a1a;
}
.entry-content > * + * {
  margin-top: 24px;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-top: 48px;
  margin-bottom: 4px;
}
.entry-content h2 {
  font-size: 28px;
}
.entry-content h3 {
  font-size: 22px;
}
.entry-content h4 {
  font-size: 18px;
}
.entry-content p {
  margin: 0;
}
.entry-content a {
  color: #2d6cdf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content strong {
  font-weight: 700;
}
.entry-content em {
  font-style: italic;
}
.entry-content ul, .entry-content ol {
  padding-left: 24px;
}
.entry-content ul li + li, .entry-content ol li + li {
  margin-top: 8px;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid #2d6cdf;
  font-style: italic;
  color: #6b6b6b;
}
.entry-content blockquote p {
  margin: 0;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 8px auto;
}
.entry-content figure {
  margin: 32px 0;
}
.entry-content figure figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #6b6b6b;
  text-align: center;
}
.entry-content pre {
  background: #f5f5f5;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.entry-content code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
}
.entry-content pre code {
  background: none;
  padding: 0;
}
.entry-content hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 40px 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.entry-content table th, .entry-content table td {
  padding: 10px 14px;
  border: 1px solid #e6e6e6;
  text-align: left;
}
.entry-content table th {
  font-weight: 700;
  background: #fafafa;
}

@media (max-width: 768px) {
  .post-banner {
    max-height: 260px;
  }
  .post-content-section {
    padding: 36px 16px 56px;
  }
  .entry-content {
    font-size: 16px;
  }
  .entry-content h2 {
    font-size: 24px;
  }
  .entry-content h3 {
    font-size: 20px;
  }
}
.blog-page {
  background: #fafafa;
  padding: 56px 20px 80px;
}
.blog-page .container {
  max-width: 1160px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 40px;
}
.blog-header .blog-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e6e6e6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.blog-card:hover .blog-card-title {
  color: #2d6cdf;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-card-img--placeholder {
  background: linear-gradient(135deg, #eaeaea, #f5f5f5);
}

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

.blog-card-date {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 10px;
  transition: color 0.2s ease;
}

.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-empty {
  text-align: center;
  color: #6b6b6b;
  font-size: 16px;
  padding: 60px 0;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #e6e6e6;
}
.blog-pagination .page-numbers.current {
  background: #2d6cdf;
  border-color: #2d6cdf;
  color: #fff;
}
.blog-pagination .page-numbers:hover:not(.current) {
  border-color: #2d6cdf;
  color: #2d6cdf;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .blog-page {
    padding: 40px 16px 60px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card-title {
    font-size: 18px;
  }
}
#brochurePopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 99999;
}

.popup-inner {
  width: 400px;
  max-width: 90%;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin: 120px auto;
  position: relative;
}

.popup-inner input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
}

.popup-inner button {
  width: 100%;
  padding: 12px;
  cursor: pointer;
  background-color: rgba(18, 34, 58, 0.95);
  color: #fff;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}/*# sourceMappingURL=homepropcustom.css.map */