* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e")
              no-repeat center center/cover;
  background-attachment: fixed;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
}

.container {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

.items {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;

  flex: 1 1 280px;
  max-width: 320px;
  min-width: 240px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.items:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.meta-data {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 20px;
}

.button {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 20px;
  border: 2px solid #7b00ff;
  color: #7b00ff;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.button:hover {
  background: #7b00ff;
  color: #fff;
}
