/* ===== SECTION BACKGROUND ===== */

body {
  background-image: url("https://beasgraphichoard.carrd.co/assets/images/gallery08/d694dd88.png?v=675aaf04");
  background-repeat: repeat;
  background-position: top left;
}
.cliques-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;

  border-radius: 25px;
}

/* ===== TITLE ===== */
.cliques-title {
  text-align: center;
  font-size: 30px;
  color: #b86aa6;
  margin-bottom: 25px;
  text-shadow: 1px 1px 0 #ffe6f3;
}

/* ===== GRID ===== */
.cliques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ===== CARD ===== */
.clique-card {
  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;

  border: 3px solid #ffd6ea;
  box-shadow: 0 6px 0 #f3c6dd;

  transition: all 0.2s ease;
}

/* hover cute bounce */
.clique-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: #fff0f7;
  border-color: #ffb6d9;
}

/* ===== IMAGE ===== */
.clique-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;

  border-radius: 14px;
  border: 2px solid #ffe3f1;
}

/* ===== TEXT ===== */
.clique-text {
  display: flex;
  flex-direction: column;
}

.clique-name {
  font-size: 16px;
  font-weight: bold;
  color: #7a4b6b;
}

.clique-sub {
  font-size: 12px;
  color: #b07a9c;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .cliques-grid {
    grid-template-columns: 1fr;
  }
}