
/* appeal page */
/* =========================
   SECTION BASE
========================= */
.appeal {
  padding: 25px 16px;
  max-width: 900px;
  margin: auto;
}

/* =========================
   HEADINGS (STRONG + TRUST)
========================= */
.appeal h1 {
  font-size: 24px;
  text-align: center;
  color: #003366;
  margin-bottom: 10px;
}

.appeal h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  color: #00509e;
  position: relative;
}

/* underline accent */
.appeal h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, #ffcc00, #007bff);
  border-radius: 10px;
}

.appeal h3 {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #003366;
}

/* =========================
   PARAGRAPH (READABLE)
========================= */
.appeal p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

/* =========================
   HIGHLIGHT BLOCK (OPTIONAL STRONG LINE)
========================= */
.appeal p strong {
  color: #003366;
}

/* =========================
   BOTTOM COLUMNS (BANK / DETAILS)
========================= */
.appeal .wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

/* =========================
   CARD STYLE FOR BOTH COLUMNS
========================= */
.appeal .wp-block-column {
  background: linear-gradient(135deg, #fff7cc, #e6f0ff);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
}

/* top accent strip */
.appeal .wp-block-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffcc00, #007bff);
  border-radius: 16px 16px 0 0;
}

/* =========================
   BANK DETAILS TEXT
========================= */
.appeal .wp-block-column p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* make labels bold */
.appeal .wp-block-column p strong {
  color: #003366;
}

/* =========================
   OPTIONAL BUTTON STYLE
========================= */
.appeal a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffcc00, #007bff);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   DESKTOP VIEW
========================= */
@media (min-width: 768px) {
  .appeal .wp-block-columns {
    flex-direction: row;
    gap: 25px;
  }

  .appeal h1 {
    font-size: 28px;
  }

  .appeal h2 {
    font-size: 22px;
  }
}