.downloads {
  display: flex;
  gap: 2.6rem;
  flex-wrap: wrap; }
  @media (max-width: 1023px) {
    .downloads {
      flex-direction: column; } }
  .downloads__item {
    display: flex;
    align-items: center;
    max-width: 20rem;
    gap: 1.6rem; }
    @media (max-width: 1023px) {
      .downloads__item {
        max-width: none;
        width: auto;
        gap: 12px; } }
    @media (min-width: 1024px) {
      .downloads__item:hover {
        cursor: pointer;
        transition: opacity 0.3s ease;
        opacity: 0.7; } }
  .downloads__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.8rem;
    height: 3.2rem;
    border-radius: .2rem;
    flex-shrink: 0;
    background: rgba(255, 0, 0, 0.8);
    isolation: isolate; }
    @media (max-width: 1023px) {
      .downloads__icon {
        width: 28px;
        height: 32px;
        border-radius: 2px; } }
    .downloads__icon:before, .downloads__icon:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      z-index: -1;
      transform: translate(0.3rem, 0.3rem);
      background: rgba(255, 0, 0, 0.5); }
    .downloads__icon:after {
      transform: translate(0.6rem, 0.6rem);
      background: rgba(255, 0, 0, 0.5); }
    @media (max-width: 767px) {
      .downloads__icon {
        max-width: 28px;
        max-height: 28px; } }
    .downloads__icon .downloads__type {
      isolation: isolate;
      font-size: 1rem;
      text-transform: uppercase;
      line-height: 1;
      color: #FFFFFF; }
      @media (max-width: 1023px) {
        .downloads__icon .downloads__type {
          font-size: 10px; } }
    .downloads__icon--pdf {
      background: rgba(245, 0, 0, 0.8); }
      .downloads__icon--pdf:before {
        background: rgba(245, 0, 0, 0.5); }
      .downloads__icon--pdf:after {
        background: rgba(245, 0, 0, 0.3); }
    .downloads__icon--xls {
      background: rgba(31, 114, 70, 0.8); }
      .downloads__icon--xls:before {
        background: rgba(31, 114, 70, 0.5); }
      .downloads__icon--xls:after {
        background: rgba(31, 114, 70, 0.3); }
    .downloads__icon--zip {
      background: rgba(155, 109, 54, 0.8); }
      .downloads__icon--zip:before {
        background: rgba(155, 109, 54, 0.5); }
      .downloads__icon--zip:after {
        background: rgba(155, 109, 54, 0.3); }
  .downloads__title {
    display: block; }
    @media (min-width: 1024px) {
      .downloads__title {
        max-width: calc(100% - 2.8rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; } }
    @media (max-width: 767px) {
      .downloads__title {
        font-size: 12px; } }
  .downloads__content {
    display: block;
    font-weight: 500; }
