* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #d8dae2;
}

.wrapper {
  position: relative;
  padding: 100px 0;
}

.wrapper::before,
.wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #e5e7f0;
  z-index: 0;
}

.wrapper::before {
  width: 433px;
  height: 410px;
  left: 200px;
  bottom: -100px;
}

.wrapper::after {
  width: 310px;
  height: 294px;
  right: 200px;
  top: 0;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  background: #eff0f1;
  padding: 60px;
  border-radius: 26px;
  box-shadow: 0px 76px 27px rgba(6, 27, 82, 0.1);
  position: relative;
  z-index: 1;
}

.container h2 {
  font-family: "Merriweather", serif;
  font-size: 32px;
  font-weight: 700;
  color: #0e0e38;
  margin-bottom: 24px;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.tags span {
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 16px;
  color: #0e0e38;
  cursor: pointer;
  transition: 0.3s;
}

.tags span:hover {
  background: #0e0e38;
  color: #fff;
}

.grid {
  display: flex;
  gap: 40px;
}

.card {
  background: #fff;
  border-radius: 32px;
  padding: 24px;
  width: 100%;
}

.main-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 16px;
}

.thumbs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.thumbs img {
  width: calc(33.33% - 8px);
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0e0e38;
}

.info-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-left img {
  width: 20px;
}

.info-left span {
  font-size: 16px;
  color: #0e0e38;
}
