/* Block Download */
.download {
  display: flex;
  gap: 1rem;
  width: 100%;
  border-radius: 0.25rem;
  background: #fff;
  border: 1px solid #be1e2e;
  overflow: hidden;
}

/* Element Image */
.download__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  background: #be1e2e;
  padding: 0.625rem;
}

/* Element Icon */
.download__icon {
  color: #fff;
  font-size: 1.5rem;
}

/* Element Content */
.download__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 3.125rem;
  padding: 1.25rem;
  padding-left: 0;
}

/* Element Title */
.download__title {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Element Size */
.download__size {
  color: #666;
  font-size: 0.875rem;
}

/* Element Button */
.download__button {
  display: flex;
  align-items: center;
  gap: var(--aurore-spacing-xl);
}

/* Element Button Link */
.download__button-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  background: #be1e2e;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: auto;
  justify-content: center;
}

/* Element Button Icon */
.download__button-icon {
  font-size: 1.25rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .download {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .download__image {
    padding: 1rem;
    border-radius: 0.25rem 0.25rem 0 0;
  }

  .download__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }

  .download__size {
    margin-left: 0;
  }

  .download__button {
    margin-left: 0;
    width: 100%;
  }

  .download__button-link {
    width: auto;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .download__content {
    padding: 0.75rem;
  }

  .download__title {
    font-size: 0.875rem;
  }

  .download__size {
    font-size: 0.75rem;
  }

  .download__button-link {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}
