* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.ladies-section {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  background: #000;
}

.card {
  position: relative;
  flex: 1 1 50%;
  height: 100vh;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #000;
  transition: flex 0.5s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transition: clip-path 0.5s cubic-bezier(0.4, 2, 0.6, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s;
  z-index: 1;
}

/* .card:hover .card-bg {
  clip-path: polygon(100% 0, 0 0, 0 100%);
} */

.card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.card-title {
  font-family: "Special Gothic Expanded One", Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.learn-more {
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 18px 59px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
  display: none;
  background-color: transparent;
}
a {
  text-decoration: none;
}
.card:hover .learn-more {
  display: block;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 900px) {
  .ladies-section {
    flex-direction: column;
  }
  .card {
    width: 100vw;
    height: 50vh;
  }
}

.ladies-section:hover .card {
  transition: flex 0.5s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
}

.ladies-section .card:hover {
  z-index: 2;
  flex: 1 1 70%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ladies-section .card:not(:hover) {
  flex: 1 1 30%;
  /* filter: blur(1px) grayscale(30%); */
  z-index: 1;
}
@media (min-width: 320px) and (max-width: 768px) {
  .learn-more {
    border: 2px solid #fff;
    display: block;
    padding: 10px 20px;
  }
}
