.ct-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #000;
}

.ct-header-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ct-description {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 30px;
}

.ct-image-block {
  text-align: center;
  margin-bottom: 30px;
}

.ct-image-block img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ct-caption {
  margin-top: 10px;
  font-size: 1rem;
}

.ct-note {
  background-color: #f7f7f7;
  border-left: 4px solid #ccc;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}





.ct-image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.ct-image-column {
  flex: 1 1 300px;
  text-align: center;
}

.ct-image-column img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .ct-image-row {
    flex-direction: column;
    align-items: center;
  }
}
.ct-image-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap; /* Ensures side-by-side unless screen is very narrow */
  margin-bottom: 40px;
}

.ct-image-column {
  flex: 0 0 auto; /* Prevents image from shrinking */
  text-align: center;
}

.ct-image-column img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ct-caption {
  margin-top: 10px;
  font-size: 1rem;
}

/* Only stack if screen is very small */
@media (max-width: 600px) {
  .ct-image-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.ct-divider {
  border: none;
  border-top: 2px solid #ccc;
  margin: 40px 0;
}


.ct-subheader {
  font-size: 1.6rem;
  text-align: left;
  margin: 30px 0 20px;
  padding-left: 75px;
  font-weight: bold;
  color: #222222;
}


.ct-image-column img,
.ct-image-block img {
  height: auto;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}
