.acc-page {
  background: #f2f3f4;
  font-family: 'Roboto Condensed', 'Inter', sans-serif;
}

.acc-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(14, 16, 22, 0.12) 0%, rgba(14, 16, 22, 0.56) 76%),
    url('../../assets/images/currentacccardbg.png');
  background-size: cover;
  background-position: center;
}

.acc-hero__content {
  padding: 0 0 58px;
  max-width: 620px;
}

.acc-hero__title {
  margin: 0;
  font-size: clamp(1.95rem, 3.2vw, 3.05rem);
  line-height: 1.08;
  font-weight: 400;
}

.acc-overview {
  padding: 30px 0 62px;
}

.acc-overview__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  line-height: 1.14;
  color: #17222d;
}

.acc-overview__text {
  margin: 14px 0 0;
  max-width: 1120px;
  font-size: 1.03rem;
  line-height: 1.46;
  color: #3a4551;
}

.acc-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 26px;
}

.acc-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(18, 28, 38, 0.06);
}

.acc-card__media {
  position: relative;
  min-height: 180px;
}

.acc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acc-card__content {
  padding: 16px 16px 18px;
}

.acc-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #17222d;
}

.acc-card__text {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.42;
  color: #45525f;
}

.acc-card__link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #11839a;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
}

.acc-card__link:hover {
  color: #0c7084;
}

.acc-card__link svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 1100px) {
  .acc-cards {
    grid-template-columns: 1fr;
  }

  .acc-card__media {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .acc-hero {
    min-height: 320px;
  }

  .acc-hero__content {
    padding-bottom: 40px;
  }

  .acc-overview {
    padding: 24px 0 42px;
  }
}
