.deepdive-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 20px;
  border: 1px solid #e6edf2;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbfd 0%, #eef7fb 100%);
  box-shadow: 0 12px 30px rgba(15, 123, 138, 0.08);
}

.deepdive-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.deepdive-form input,
.deepdive-form select,
.deepdive-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9e2e8;
  border-radius: 10px;
}

.deepdive-form button,
.deepdive-filter button {
  width: fit-content;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f7b8a, #2f6df6);
  color: #fff;
  cursor: pointer;
}

.deepdive-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.deepdive-filter select,
.deepdive-filter input {
  padding: 10px 12px;
  border: 1px solid #d9e2e8;
  border-radius: 10px;
}

.deepdive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.deepdive-card {
  padding: 18px;
  border: 1px solid #e6edf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.deepdive-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deepdive-location {
  color: #2f6d7a;
  font-size: 0.95rem;
}

.deepdive-excerpt {
  color: #556872;
  margin: 8px 0 10px;
}

.deepdive-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf7f8;
  color: #0f7b8a;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.deepdive-success {
  padding: 12px 14px;
  border-radius: 12px;
  background: #eaf8f2;
  color: #1f6d3f;
  border: 1px solid #bfe0c9;
  margin-bottom: 14px;
}

.deepdive-dashboard ul {
  padding-left: 20px;
}

.deepdive-dashboard li {
  margin-bottom: 8px;
}

.deepdive-dashboard a {
  margin-left: 8px;
  color: #0f7b8a;
}

.deepdive-home-hero {
  padding: 28px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f7b8a 0%, #2f6df6 100%);
  color: #fff;
  margin: 20px 0;
}

.deepdive-home-content {
  max-width: 760px;
  margin: 0 auto;
}

.deepdive-home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.deepdive-home-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #0f7b8a;
  font-weight: 700;
  text-decoration: none;
}

.deepdive-home-btn.alt {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.deepdive-single {
  padding: 24px 0;
}

.deepdive-single-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.deepdive-single-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #2f6d7a;
  margin-bottom: 16px;
}

.deepdive-single-content {
  margin-bottom: 18px;
}

.deepdive-single-details {
  border-top: 1px solid #e6edf2;
  padding-top: 14px;
}

@media (max-width: 640px) {
  .deepdive-two-col {
    grid-template-columns: 1fr;
  }
}
