/* BOOKLET CARD */

.booklet-card {
  display: flex;
  flex-direction: column;
}

.booklet-card img {
  width: 100%;
  height: auto;
  display: block;
}

.booklet-icon {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(15, 96, 107, .08), rgba(253, 128, 46, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--primary);
}

.booklet-content {
  flex: 1;
  padding: 28px;
  width: 100%;
}

.booklet-title {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 10px;
  color: #222;
}

.booklet-meta {
  color: var(--gray);
  font-size: .9rem;
}

.booklet-meta i {
  color: var(--primary);
}

/* MINI ICON SIDEBAR */

.booklet-icon-mini {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(253, 128, 46, .12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}