body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #fff;
  color: #000;

}

a {
  text-decoration: none;
  color: black;
  font-family: "Manrope", system-ui;
}


.blog-wrapper {
  display: flex;
  max-width: 1800px;
  margin: 0 auto;
}


.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 30px 90px 30px;
  grid-column: 2; 

}

h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
  word-spacing: 0;
}

.blog-date {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 3rem;
}

.blog-feature-wrapper {
  width: 100%;
  max-width: 1400px;
  height: 500px;
  margin: 0 auto 3rem auto;
  overflow: hidden;
  border-radius: 12px;
}

.blog-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: bold;
}

.blog-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-content a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.blog-content a:hover {
  text-decoration: underline;
}

ul {
  padding-bottom: 20px;
}

li {
  padding: 10px 0;
  font-weight: 600;
  line-height: 1.8;
  padding-left: 20px;
}

li i {
  padding-right: 10px;
}

 /* ===== NEW: layout wrapper for content + sidebar ===== */
 .blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px; /* content + sidebar */
  gap: 32px;
  align-items: start;
}

.blog-main {
  min-width: 0; /* prevent overflow */
}

.blog-aside {
  width: 320px; /* contain the sticky box */
}

/* Sticky ad container (prevents layout shift) */
.ad-sticky {
  position: sticky;
  top: 200px; /* space below your fixed header */
  background-color: #000;
  background-image: url(/images/advert-fallback.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Ad box: fixed size to avoid CLS */
.ad-box {
  width: 300px;
  height: 600px; /* half-page unit */
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

/* Optional: add a small “Advertisement” label */
.ad-label {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 8px;
  padding-top: 10px;
}





@media (max-width: 768px) {
  .blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 110px 20px 50px 20px;
  }

  h1 {
    font-size: 1.7rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  .blog-content h3 {
    font-size: 1rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }

  .blog-feature-wrapper {
    height: 400px;
  }

  .blog-aside {
    display: none;
  }
}









.main-button-design {
  padding: 12px 22px;
  cursor: pointer;
  background-color: #bc9080;
  border-radius: 5px;
  font-size: 0.8rem;
  border: none;
  color: white;
  outline: none;
  box-shadow: none;
  transition: background-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.main-button-design:hover {
  background-color: #a2796b;
  border-radius: 5px 0 5px 0;
}


/* Loader inside button */
.inside-button-loading-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 10px;
}

/* Keyframes for spinning animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Modal Overlay (Dark background) */
.modal-overlay-any-message {
  display: none;
  /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark transparent background */
  backdrop-filter: blur(3px);
  /* Subtle blur effect */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Box */
.modal-box-any-message {
  background: white;
  padding: 40px;
  width: 300px;
  max-width: 80%;
  text-align: center;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInAnyMessage 0.3s ease-in-out;
}

/* Close Button (X) */
.close-modal-any-message {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

#modal-message-text-any-message {
  line-height: 1.6rem;
}

/* Fade-in animation */
@keyframes fadeInAnyMessage {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}