
/* homepage card links */
.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.cards-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F2F2F2;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none; /* remove underline */
  color: #262626;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cards-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background-color: #f1f5f9; /* subtle hover background */
}

.cards-icon {
  font-size: 2rem;
  color: #005CB7;
  margin-bottom: 0.75rem;
}

.cards-icon-svg {
  max-width:2rem;
  fill: #005CB7;
  border: none;
}

.cards-text {
  font-weight: 600;
  display: block;
  text-decoration: none; /* ensure no underline */
}

.cards-cta {
  text-align: center;
  margin-top: 2rem;
}



/* homepage video and text div*/
.two-column-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
  gap: 40px;
}

.two-column-section.reverse {
  flex-direction: row-reverse;
}

.text-column {
  flex: 1 1 45%;
  max-width: 500px;
}

.media-column {
  flex: 1 1 45%;
  text-align: center;
}

/* Responsive video container (16:9 aspect ratio) */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border: 1px solid #ddd; /* thin light gray border */
  border-radius: 4px;
  background-color: #f9f9f9;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Clean image */
.media-column img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
}


@media (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
    text-align: center;
  }

  .text-column, .media-column {
    max-width: 100%;
  }
}


/* Interfaces / SSO */
.toc a[href$="docs-access.html"]::after,
.toc a[href$="glossary.html"]::after,
.toc a[href$="get-help.html"]::after {
  font-family: FontAwesome;
  content: "\f09c"; /* fa-unlock */
  margin-left: 6px;
}

