/* === style/statement.css === */

/* Wrapper for the entire statement block */
.statements-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: rgb(59, 40, 1);
  box-sizing: border-box;
  margin-top: -50px;
}

.statements-wrapper > .statement-block:nth-child(1) {
    color: white;
  background-color: #280F22;
  border-left: 5px solid darkgoldenrod;
}

.statements-wrapper > .statement-block:nth-child(2) {
    color: white;
  background-color: #280F22;
  border-left: 5px solid darkgoldenrod;
}



/* Individual statement blocks (Vision / Mission) */
.statement-block {
  background-color: #ffffff;
  color: #003366;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.1rem 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

/* Title */
.statement-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: -1.5rem;
  color: goldenrod;
}

/* Subheading */
.statement-subheading {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.2rem;
  color: rgb(255, 236, 213);
}

/* Text content */
.statement-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Image */
.statement-image img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 4px;
  border: 1px solid darkgoldenrod;
}

/* === Responsive layout for side-by-side === */
@media (min-width: 768px) {
  .statements-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 0;
  }

  .statement-block {
    width: 48%;
  }
}
