/* ULA page — Company profile download */

.ula-profile {
  position: relative;
  min-height: 298px;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 5vw, 80px);
  /* Figma: rgba(217, 217, 217, 0.2) on white — use opaque equivalent so body bg does not bleed through */
  background-color: #f7f7f7;
  overflow: hidden;
}

.ula-profile__decoration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ula-profile__decoration img {
  width: min(1052px, 120%);
  height: auto;
  max-height: 100%;
  object-fit: cover;
  opacity: 1;
}

.ula-profile__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 186px;
  text-align: center;
}

.ula-profile__icon {
  display: block;
  width: 87px;
  height: 87px;
  object-fit: contain;
}

.ula-profile__title {
  margin: 0;
  font-family: "Granadia-Bold", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 48.8px;
  letter-spacing: -0.18px;
  color: #6b6b6b;
}

.ula-profile__text {
  margin: 0;
  max-width: 560px;
  font-family: "Granadia-Book", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #6b6b6b;
}

.ula-profile__text p {
  margin: 0;
}

.ula-profile__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 189px;
  padding: 12px 24px;
  border: 0;
  border-radius: 9999px;
  background: #6ac0ec;
  font-family: "Granadia-Book", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.ula-profile__button:hover {
  background: #57b3e3;
  color: #ffffff;
}

.ula-profile__button:focus-visible {
  outline: 2px solid #293579;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .ula-profile__decoration img {
    width: 140%;
  }

  .ula-profile__title {
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ula-profile__button {
    transition: none;
  }
}
