:root {
  --project-primary-color: #005ea2;
  --project-secondary-color: #162e51;
}

#main-content:focus {
  outline: none;
}

.usa-hero {
  background-image: url("/custom/img/banner.webp") !important;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 640px) {
  .usa-hero__callout {
    max-width: 100%;
  }
}

.usa-button {
  transition: all 0.3s ease;
}

.usa-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.usa-skipnav {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.usa-skipnav:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}

.usa-media-block {
  display: flex;
  align-items: center;
  gap: 1.5rem; 
}

.circle-wrapper {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: url("/img/circle-124.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.circle-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

