.try-this-section {
  padding: 20px;
  text-align: center;
}

.try-this-section h2{
    font-weight: bold;
    color: white;
    background: #a9f0f5;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto;
}

.try-this-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.try-this-card {
  background: #a9f0f5;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ✅ Keep videos responsive */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.try-this-card h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #c71585;
}

.try-this-card a {
  color: #c71585;
  text-decoration: underline;
  font-size: 14px;
}

.try-this-description {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.6;
  color: #c71585;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .try-this-container {
    grid-template-columns: 1fr; /* stack in one column */
  }
  .try-this-card {
    margin: 0 auto;
    width: 95%;
  }
}
