:root {
  --zakra-color-1: #0F766E;
  --zakra-color-2: #115E59;
  --zakra-color-6: #1F2937;
  --zakra-color-9: #E5E7EB;
}
.zak-button,
.wp-block-button .wp-block-button__link,
button,
input[type="submit"] {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  background: #0F766E;
  color: #ffffff;
}

.zak-button:hover,
.wp-block-button .wp-block-button__link:hover {
  background: #115E59;
  color: #ffffff;
}
.entry-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content p {
  font-size: 18px;
  line-height: 1.8;
}
h1, h2, h3 {
  font-weight: 700;
  color: #064E3B;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}
.wp-block-column,
.zak-post,
.widget {
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.08);
  border: 1px solid #E5E7EB;
}
/* App-style homepage cards */
.sbs-app-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.sbs-hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #ecfdf5, #fefce8);
  border-radius: 28px;
  margin-bottom: 40px;
}

.sbs-hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  color: #064e3b;
  margin-bottom: 16px;
}

.sbs-hero p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 20px;
  color: #374151;
}

.sbs-button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sbs-button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

.sbs-button.secondary {
  background: #ffffff;
  color: #0f766e !important;
  border: 2px solid #0f766e;
}

.sbs-level-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sbs-level-card {
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(15, 118, 110, 0.10);
  transition: 0.25s ease;
}

.sbs-level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(15, 118, 110, 0.16);
}

.sbs-level-card h3 {
  color: #065f46;
  margin-bottom: 12px;
}

.sbs-level-card ul {
  margin-left: 0;
  list-style: none;
}

.sbs-level-card li {
  padding: 8px 0;
  border-bottom: 1px solid #ecfdf5;
}

.sbs-level-card li::before {
  content: "✓";
  color: #0f766e;
  font-weight: 800;
  margin-right: 8px;
}

.sbs-daily-box {
  background: #064e3b;
  color: #ffffff;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
}

.sbs-daily-box h2,
.sbs-daily-box p {
  color: #ffffff;
}

@media (max-width: 768px) {
  .sbs-level-grid {
    grid-template-columns: 1fr;
  }

  .sbs-hero {
    padding: 45px 18px;
  }
}