/* custom_styles.css */

/* Main container styling */
.custom-card {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Image section with fixed height */
.custom-image-container {
  background-color: #1f2937; /* bg-gray-800 */
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  height: 300px;
}

/* Image styling */
.custom-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Text section styling */
.custom-text-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* Arrow icon styling */
.custom-arrow {
  background-color: rgba(75, 85, 99, 0.5); /* bg-gray-600 */
  color: white;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Same as width for a perfect circle */
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

