/* Download Button — Bricks Element
   Base styles. Fine-tune further via the Bricks Style tab. */

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e46450;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1rem;
  color: inherit;
  min-width: 10rem;
  transition: background 0.15s, transform 0.1s;
	margin: 2rem 0;
}

.dl-btn:hover {
  background: #efeeea;
}

.dl-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #e60005;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.dl-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dl-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

.dl-meta {
  font-size: 0.8rem;
  color: #888780;
  margin-top: 2px;
}

.dl-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #554f4a;
  flex-shrink: 0;
}
