.blog-wine {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .blog-wine {
    flex-direction: row;
  }
}

.wine-img {
  display: flex;
  justify-content: center;
}

.wine-img img {
  max-height: 50vw;
}

@media screen and (min-width: 768px) {
  .wine-img img {
    max-height: 470px;
  }
}

.select-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  gap: 1rem;
}

.select-container select {
    background-color: #f1ede4;
    line-height: 24px;
    color: #3e3d40;
    border-radius: 0;
}

.select-container select:focus {
  outline: 1px solid #c51d3b;
}

@media screen and (min-width: 992px) {
  .select-container {
    flex-direction: row;
  }
}

@media screen and (min-width: 1400px) {
  .select-container {
    width: 55%;
  }
}

#wine-info h2 {
  color: #c0a56e;
  font: normal 28px/1em Georgia, "Times New Roman", Times, serif;
  margin: 0 0 10px 0;
  font-style: italic;
}

#wine-info h3 {
  color: #3e3d40;
  font: normal 18px/1em Georgia, "Times New Roman", Times, serif;
  margin: 0 0 35px 0;
  font-style: italic;
}

#wine-info .wine-content {
  color: #3e3d40;
  line-height: 1.75em;
  text-align: justify;
}

.wine-pdf a {
  margin: 15px 0 0 0;
  color: #c51d3b;
}

.wine-pdf a::before {
  content: '>';
}
