.alumni-detail {
  width: 100%;
  min-height: 100vh;
  padding: 62px 42px 96px;
  display: flex;
  justify-content: center;
  background-color: #f7f3ef;
  color: #171717;
}

.alumni-detail__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.alumni-detail__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.alumni-detail__logos {
  display: flex;
  align-items: center;
  gap: 28px;
}

.alumni-detail__logos img {
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 76px;
  object-fit: contain;
}

.alumni-detail__logos .alumni-detail__logo-salvador {
  max-width: 230px;
  max-height: 92px;
}

.alumni-detail__divider {
  width: 1px;
  min-height: 54px;
  display: block;
  background-color: #c8bbb2;
}

.alumni-detail__back {
  min-height: 41px;
  padding: 0 17px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #990c13;
  color: #990c13;
  font-size: 15px;
  line-height: 17px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.alumni-detail__back:hover,
.alumni-detail__back:focus-visible {
  background-color: #990c13;
  color: #ffffff;
  transform: translateY(-2px);
}

.alumni-detail__header {
  width: 100%;
  padding-bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #171717;
}

.alumni-detail__label {
  color: #990c13;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.alumni-detail__header h1 {
  max-width: 1180px;
  color: #171717;
  font-size: 60px;
  line-height: 65px;
}

.alumni-detail__degree {
  max-width: 1180px;
  color: #3b3b3b;
  font-size: 25px;
  line-height: 33px;
  text-transform: uppercase;
}

.alumni-resources {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 22px;
}

.alumni-resource {
  width: 100%;
  max-width: 405px;
  min-height: 154px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #c8bbb2;
  border-left: 5px solid #990c13;
  background-color: #fbfaf8;
  color: #171717;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.alumni-resource__type {
  color: #990c13;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.alumni-resource__title {
  font-size: 26px;
  line-height: 31px;
  text-transform: uppercase;
}

.alumni-resource__action {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #620903;
  font-size: 15px;
  line-height: 17px;
}

.alumni-resource__action img {
  width: 18px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.alumni-resource:hover,
.alumni-resource:focus-visible {
  border-color: #990c13;
  background-color: #990c13;
  color: #ffffff;
  transform: translateY(-3px);
}

.alumni-resource:hover .alumni-resource__type,
.alumni-resource:focus-visible .alumni-resource__type,
.alumni-resource:hover .alumni-resource__action,
.alumni-resource:focus-visible .alumni-resource__action {
  color: #ffffff;
}

.alumni-resource:hover .alumni-resource__action img,
.alumni-resource:focus-visible .alumni-resource__action img {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .alumni-detail {
    padding: 44px 28px 76px;
  }

  .alumni-detail__content {
    gap: 42px;
  }

  .alumni-detail__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .alumni-detail__logos img {
    max-width: 150px;
    max-height: 62px;
  }

  .alumni-detail__logos .alumni-detail__logo-salvador {
    max-width: 180px;
    max-height: 74px;
  }

  .alumni-detail__header h1 {
    font-size: 42px;
    line-height: 47px;
  }

  .alumni-detail__degree {
    font-size: 20px;
    line-height: 28px;
  }

  .alumni-resource {
    max-width: 100%;
    min-height: 136px;
  }
}

@media (max-width: 520px) {
  .alumni-detail__logos {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .alumni-detail__divider {
    width: 120px;
    min-height: 1px;
  }

  .alumni-detail__header h1 {
    font-size: 34px;
    line-height: 39px;
  }

  .alumni-detail__degree {
    font-size: 18px;
    line-height: 25px;
  }

  .alumni-resource {
    min-height: 128px;
    padding: 22px 20px;
  }

  .alumni-resource__title {
    font-size: 22px;
    line-height: 28px;
  }
}
