/* Custom formatting for the layout spacing */
.industry-callout-block {
  margin-top: 40px;
  margin-bottom: 50px;
  background-color: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.industry-tag-box {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 100%;
}

/* Clean, bulletproof block grid layout */
.industry-tag-grid {
  display: grid;
  /* Forces exactly two equal columns on desktop screens */
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}
/* Force each item to behave like a block element instead of running text */
.ind-tag {
  display: block;            /* This line breaks them out of the inline text flow */
  background-color: #0B3C5D; /* Brand Blue */
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 15px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(11, 60, 93, 0.08);
  box-sizing: border-box;    /* Ensures internal padding doesn't distort size */
}
/* Educational Innovation Footer Block */
.educational-footer {
  background-color: #f8fbc3 !important; /* Soft yellow accent alignment token */
  border-left: 4px solid #0B3C5D;
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.edu-title {
  font-size: 20px;
  font-weight: 800;
  color: #0B3C5D;
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Secure layout for small tablet or mobile screens */
@media (max-width: 768px) {
  .industry-tag-grid {
    grid-template-columns: 1fr; /* Drops down to 1 item per row on smaller displays */
    gap: 12px;
  }
}