/* File: giveaway-suggestions.css
   Description:
*/


.ll-giveaway-suggestions {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
}

.ll-giveaway-hero {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.ll-giveaway-icon {
  font-size: 42px;
  line-height: 1;
}

.ll-giveaway-hero h2 {
  margin: 0 0 6px;
}

.ll-giveaway-hero h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.ll-giveaway-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  margin-top: 22px;
}

.ll-giveaway-category-card,
.ll-giveaway-ideas {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.ll-giveaway-ideas ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ll-giveaway-idea {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.ll-giveaway-idea:hover,
.ll-giveaway-idea.is-selected {
  background: #f2f7ff;
}

.ll-giveaway-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.ll-giveaway-benefits div {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 12px;
  background: #fafafa;
}

.ll-giveaway-benefits strong,
.ll-giveaway-benefits span {
  display: block;
}

.ll-giveaway-benefits span {
  margin-top: 4px;
  font-size: .92rem;
}

.ll-giveaway-footer-note {
  text-align: center;
  margin: 20px 0 0;
  font-weight: 600;
}

.ll-giveaway-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .ll-giveaway-hero,
  .ll-giveaway-main {
    display: block;
  }

  .ll-giveaway-category-card,
  .ll-giveaway-ideas {
    margin-top: 14px;
  }

  .ll-giveaway-benefits {
    grid-template-columns: 1fr;
  }
}