:root {
  --backdrops-brown: rgb(80, 34, 11);
  --backdrops-font: Alike, serif;
}

/* Header */
.backdrops-header {
  max-width: 800px;
}

.backdrops-header__title {
  font-family: var(--backdrops-font);
  font-weight: 700;
  color: var(--backdrops-brown);
}

.backdrops-header__text {
  font-family: var(--backdrops-font);
  color: #000;
  font-size: 18px;
  line-height: 1.7;
}

/* Gallery layout */
.backdrops-gallery {
  padding-left: 16px;
  padding-right: 16px;
}

.backdrops-gallery__col {
  display: flex;
}

/* Card */
.backdrops-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.backdrops-card__name {
  font-family: var(--backdrops-font);
  color: var(--backdrops-brown);
  font-weight: 700;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.backdrops-card__footer {
  margin-top: auto;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Button */
.backdrops-card__button {
  font-family: var(--backdrops-font);
  background: rgb(112, 67, 44);
  color: #f8e7cb;
  border: 0;
}

.backdrops-card__button:hover,
.backdrops-card__button:focus,
.backdrops-card__button:active {
  background: rgb(112, 67, 44);
  color: #f8e7cb;
}

/* Responsive */
@media (max-width: 991.98px) {
  .backdrops-card__image {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .backdrops-gallery__col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .backdrops-card__image {
    height: 210px;
  }
}