@import url('https://fonts.googleapis.com/css?family=MedievalSharp|Merriweather:400,700&display=swap');

.features-container {
  display: flex;
  flex-direction: column; /* vertical */
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 48px auto 38px auto;
  max-width: 900px;
}

.features-container a {
  text-decoration: none;
}

.feature-bubble {
  background: rgba(40,32,24,0.98);
  border: 2.5px solid #bfa76a;
  border-radius: 22px;
  width: 98%;
  max-width: 650px;
  min-height: 120px;
  box-shadow: 0 4px 24px #1a140d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
  transition: box-shadow .18s, transform .18s;
  position: relative;
  text-align: center;
}

.feature-bubble:hover {
  box-shadow: 0 8px 36px #a48d5d;
  transform: translateY(-2px) scale(1.02);
  border-color: #d3b676;
}

.feature-title {
  font-family: 'MedievalSharp', 'Merriweather', serif;
  color: #bfa76a;
  font-size: 1.35em;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #20180f;
}

.feature-description {
  font-size: 1.09em;
  color: #e8dac3;
  margin-bottom: 16px;
}

.feature-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  background: #6c5432;
  color: #f4ecd3;
  border: 2px solid #bfa76a;
  border-radius: 11px;
  font-family: 'MedievalSharp', 'Merriweather', serif;
  font-size: 1.03em;
  font-weight: bold;
  text-decoration: none;
  transition: background .18s, color .18s, box-shadow .18s;
  box-shadow: 0 2px 10px #1a140d;
}

.feature-link:hover {
  background: #bfa76a;
  color: #2a251f;
  box-shadow: 0 4px 18px #a48d5d;
}

@media (max-width: 700px) {
  .features-container {
    max-width: 99vw;
    gap: 14px;
  }
  .feature-bubble {
    max-width: 99vw;
    min-height: 80px;
    padding: 12px 5px;
  }
}