.parent {
    width: 100%;
    padding: 20px;
    perspective: 1000px;
  }

  .card {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    padding: 20px;
    box-sizing: border-box;
    transition: background 0.3s ease-in-out;
  }

  .card-content {
    color: #fff;
  }

  .card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .card-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
  }

  .btn:hover {
    background-color: #45a049;
  }

  .date-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Adjust opacity as needed */
    padding: 8px;
    border-radius: 50%;
  }

  .date-box .month,
  .date-box .date {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #333;
  }
