.featured-area {
  display: flex;
  background-color: white;
  max-width: 1200px;
  max-height: 200px;
  margin: 2rem auto;
  overflow: hidden;
  box-shadow: inset 0 -12px 12px rgba(0, 0, 0, 0.2), inset 0 12px 12px rgba(0, 0, 0, 0.2);
}


.featured-area-img {
  width: 30%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  overflow: hidden;
}


.featured-alltext {
  margin-left: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}


.featured_subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: black;
  text-transform: uppercase;
  font-size: 16px;
  font-family: beausite classic semibold;
}

.bullet-arrow {
  width: 10px;
  height: auto;
}


@media (max-width: 768px) {
  .featured-area {
    flex-direction: column;
    max-height: none;
    box-shadow: inset 0 -6px 6px rgba(0, 0, 0, 0.1), inset 0 6px 6px rgba(0, 0, 0, 0.1);
    margin: 0.5rem;
    padding: 0.5rem;
  }
  
  .featured-area-img {
  width: 100%;
  height: 25%;
  clip-path: none;
  margin-bottom: 20px;
}
