/* === OBA News Layout === */
body {
  background-color: #f4f7fa;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* === Main Wrapper === */
.oba-news-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.oba-news-wrapper:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* === Title === */
.oba-news-wrapper h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* === Cards === */
.oba-news-wrapper .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oba-news-wrapper .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* === CTA Button === */
.oba-news-wrapper .btn-primary {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.oba-news-wrapper .btn-primary:hover {
  transform: scale(1.05);
}

/* === Meta Info === */
.oba-news-wrapper .text-muted {
  font-size: 0.9rem;
  color: #666;
}
/* Style the comment form container */
.comment-form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Style input fields */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style the checkbox */
.comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
  margin-right: 8px;
}

/* Optional: Style the submit button */
.comment-form input[type="submit"] {
  background: #0073aa;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.comment-form input[type="submit"]:hover {
  background: #005a87;
}
/* 🔖 Force styling on all labels in the comment form */
.comment-form label {
  width: 100% !important;
  display: block !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #333 !important;
  margin-bottom: 6px !important;
  text-transform: capitalize !important;
  letter-spacing: 0.5px !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}
.comment-form label {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(4px) !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

/* === Box Color Preview === */
.oba-news-wrapper .row.text-center .col-md-4 > div {
  height: 100px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* === Sidebar Wrapper === */
.oba-sidebar-wrapper {
  background: linear-gradient(135deg, #ff4d4d, #ff9999);
  border-radius: 12px;
  padding: 25px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* === Sidebar Content === */
.sidebar {
  padding-left: 15px;
}

.sidebar .card {
  background: linear-gradient(135deg, #e0f7fa, #fce4ec);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.sidebar .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sidebar ul li a:hover {
  color: #0056b3;
}

/* === Responsive === */
@media (max-width: 768px) {
  .oba-news-wrapper {
    padding: 20px;
  }

  .oba-news-wrapper h1 {
    font-size: 1.8rem;
  }

  .oba-sidebar-wrapper {
    margin-top: 30px;
  }

  .sidebar {
    margin-top: 20px;
  }
}
