/**
 * Education Blog — Grid Listing Styles
 * 3-column grid, up to 3 rows (9 posts), then Load More button.
 */

.education-blog-section {
  --eb-primary: #5a7a3b;
  --eb-bg: #ffffff;
  --eb-border: #e8e4d9;
  --eb-text: #000;
  --eb-muted: #7a756d;
  --eb-radius: 8px;
  --eb-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: var(--eb-text);
  background:transparent !important;
  padding: 0px;
}

.education-blog-section * {
  box-sizing: border-box;
}

.eb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eb-header {
  text-align: center;
  margin-bottom: 48px;
}

.eb-header-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eb-primary);
  margin-bottom: 8px;
}

.eb-header-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--eb-text);
}

.eb-header-desc {
  font-size: 16px;
  color: var(--eb-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.eb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eb-card {
  display: flex;
  flex-direction: column;
  background: var(--eb-bg);
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius);
  overflow: hidden;
  box-shadow: var(--eb-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  background: #fff;
    padding: 20px;
}

.eb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.eb-card-thumb {
  overflow: hidden;
}

.eb-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:15px !important;
  transition: transform 0.3s ease;
}

.eb-card:hover .eb-card-thumb img {
  transform: scale(1.05);
}

.eb-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5bfb0;
  font-size: 32px;
}

.eb-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eb-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eb-primary);
  margin-bottom: 8px;
}

.eb-card-title {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--eb-text);
}

.eb-card-excerpt {
  font-size: 14px;
  color: var(--eb-text);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}

.eb-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--eb-muted);
}

.eb-card-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--eb-border);
  flex-shrink: 0;
}

.eb-card-date {
  font-size: 14px;
  color: var(--eb-text);
}

.eb-load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.eb-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: var(--eb-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.eb-load-more-btn:hover {
  background: #4a6a2e;
}

.eb-load-more-btn:active {
  transform: scale(0.98);
}

.eb-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.eb-load-more-btn.loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: eb-spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes eb-spin {
  to { transform: rotate(360deg); }
}

.eb-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--eb-muted);
  font-size: 16px;
}

.eb-skeleton-card {
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius);
  overflow: hidden;
}

.eb-skeleton-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, #f0ede6 0%, #e8e4d9 50%, #f0ede6 100%);
  background-size: 200% 100%;
  animation: eb-shimmer 1.4s ease infinite;
}

.eb-skeleton-body {
  padding: 20px;
}

.eb-skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0ede6 0%, #e8e4d9 50%, #f0ede6 100%);
  background-size: 200% 100%;
  animation: eb-shimmer 1.4s ease infinite;
  margin-bottom: 10px;
}

.eb-skeleton-line.short { width: 40%; }
.eb-skeleton-line.medium { width: 70%; }
.eb-skeleton-line.long { width: 90%; }

@keyframes eb-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Education single post styles */
.education-single-wrapper {
  --eb-primary: #5a7a3b;
  --eb-border: #e8e4d9;
  --eb-text: #000;
  --eb-muted: #7a756d;
  background: #ffffff;
  padding: 0;
}

.education-breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--eb-muted);
}

.education-breadcrumb a {
  color: var(--eb-primary);
  text-decoration: none;
}

.education-breadcrumb a:hover {
  text-decoration: underline;
}

.education-breadcrumb span {
  color: #c5bfb0;
}

.education-single-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.education-entry-hero {
  margin-bottom: 40px;
}

.education-entry-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.education-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.education-badge-primary {
  background: var(--eb-primary);
  color: #ffffff;
}

.education-badge-ghost {
  background: transparent;
  color: var(--eb-primary);
  border: 1.5px solid var(--eb-primary);
}

.education-entry-date {
  font-size: 13px;
  color: var(--eb-muted);
}

.education-entry-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--eb-text);
}

.education-entry-opening {
  font-size: 18px;
  line-height: 1.65;
  color: #4a4740;
  margin: 0 0 32px;
  font-style: italic;
}

.education-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
  background: #f0ede6;
}

.education-article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--eb-text);
}

.education-article-body h2,
.education-article-body h3,
.education-article-body h4 {
  font-weight: 600;
  color: var(--eb-text);
  margin: 1.8em 0 0.6em;
}

.education-article-body h2 { font-size: 28px; }
.education-article-body h3 { font-size: 22px; }
.education-article-body h4 { font-size: 18px; }

.education-article-body p {
  margin: 0 0 1.4em;
}

.education-article-body a {
  color: var(--eb-primary);
  text-decoration: underline;
}

.education-article-body blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--eb-primary);
  background: #f8f6f1;
  font-style: italic;
  color: #4a4740;
}

.education-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5em 0;
}

.education-article-body ul,
.education-article-body ol {
  margin: 0 0 1.4em 1.5em;
}

.education-article-body li {
  margin-bottom: 0.4em;
}

/* ── Comments wrapper (inside .education-single-container, no extra padding needed) ── */
.education-comments-section {
  margin-top: 40px;
}

.education-no-comments {
  color: var(--eb-muted);
  font-size: 15px;
}

/* ── Comment submission notice ── */
.education-comment-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 28px;
  background: #f0f7eb;
  border: 1.5px solid #c3dba8;
  border-radius: 8px;
  position: relative;
}

.education-comment-notice-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--eb-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.education-comment-notice-text {
  flex: 1;
}

.education-comment-notice-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--eb-text);
  margin-bottom: 3px;
}

.education-comment-notice-text p {
  margin: 0;
  font-size: 14px;
  color: var(--eb-muted);
  line-height: 1.5;
}

.education-comment-notice-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: var(--eb-muted);
  cursor: pointer;
  padding: 0;
}

/* ── WordPress comment list ── */
.education-comments-section #comments {
}

.education-comments-section .comments-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--eb-text);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--eb-border);
}

.education-comments-section .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.education-comments-section .comment-list > li {
  padding: 28px 0;
  border-bottom: 1px solid var(--eb-border);
}

.education-comments-section .comment-list > li:last-child {
  border-bottom: none;
}

/* Avatar + meta row */
.education-comments-section .comment-meta {
  margin-bottom: 12px;
}

.education-comments-section .comment-author.vcard {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.education-comments-section .comment-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.education-comments-section .comment-author .fn {
  font-size: 15px;
  font-weight: 600;
  color: var(--eb-text);
  font-style: normal;
}

.education-comments-section .comment-author .fn a {
  color: var(--eb-primary);
  text-decoration: none;
}

.education-comments-section .comment-metadata {
  font-size: 12px;
  color: var(--eb-muted);
  margin-left: 56px;
  margin-bottom: 10px;
}

.education-comments-section .comment-metadata a {
  color: var(--eb-muted);
  text-decoration: none;
}

.education-comments-section .comment-metadata a:hover {
  color: var(--eb-primary);
}

/* Comment text */
.education-comments-section .comment-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--eb-text);
  margin: 0 0 0.75em;
}

.education-comments-section .comment-content p:last-child {
  margin-bottom: 0;
}

/* Reply link */
.education-comments-section .reply {
  margin-top: 12px;
}

.education-comments-section .comment-reply-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--eb-primary);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.education-comments-section .comment-reply-link:hover {
  text-decoration: underline;
}

/* Nested replies */
.education-comments-section .children {
  list-style: none;
  margin: 16px 0 0 56px;
  padding: 0;
}

.education-comments-section .children > li {
  padding: 20px 0;
  border-bottom: 1px solid var(--eb-border);
}

.education-comments-section .children > li:last-child {
  border-bottom: none;
}

/* ── Comment form ── */
.education-comments-section .comment-respond {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--eb-border);
}

.education-comments-section .comment-reply-title,
.education-comments-section #reply-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--eb-text);
  margin: 0 0 20px;
}

.education-comments-section .comment-notes,
.education-comments-section .logged-in-as {
  font-size: 13px;
  color: var(--eb-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.education-comments-section .comment-notes a,
.education-comments-section .logged-in-as a {
  color: var(--eb-primary);
  text-decoration: none;
}

.education-comments-section .comment-form-author,
.education-comments-section .comment-form-email,
.education-comments-section .comment-form-url,
.education-comments-section .comment-form-comment {
  margin-bottom: 18px;
}

.education-comments-section #commentform label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--eb-text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.education-comments-section #commentform input[type="text"],
.education-comments-section #commentform input[type="email"],
.education-comments-section #commentform input[type="url"] {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  color: var(--eb-text);
  background: #ffffff;
  border: 1.5px solid var(--eb-border);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.education-comments-section #commentform input[type="text"]:focus,
.education-comments-section #commentform input[type="email"]:focus,
.education-comments-section #commentform input[type="url"]:focus {
  border-color: var(--eb-primary);
}

.education-comments-section #commentform textarea#comment {
  width: 100%;
  min-height: 150px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--eb-text);
  background: #ffffff;
  border: 1.5px solid var(--eb-border);
  border-radius: 6px;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
  line-height: 1.6;
  box-sizing: border-box;
}

.education-comments-section #commentform textarea#comment:focus {
  border-color: var(--eb-primary);
}

.education-comments-section #commentform .form-submit {
  margin-top: 8px;
}

.education-comments-section #commentform .submit {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: var(--eb-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.3px;
}

.education-comments-section #commentform .submit:hover {
  background: #4a6a2e;
}

.education-comments-section #commentform .submit:active {
  transform: scale(0.98);
}

/* ── Responsive — education grid ── */
@media ( max-width: 960px ) {
  .eb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media ( max-width: 600px ) {
  .eb-grid {
    grid-template-columns: 1fr;
  }
  .eb-header-title {
    font-size: 28px;
  }
  .eb-header-desc {
    font-size: 14px;
  }
  .education-blog-section {
    padding: 40px 0;
  }
}

/* ── Responsive — education single ── */
@media ( max-width: 768px ) {
  .education-single-container {
    padding: 24px 20px 60px;
  }
  .education-entry-title {
    font-size: 30px;
  }
  .education-entry-opening {
    font-size: 16px;
  }
  .education-article-body {
    font-size: 16px;
  }
  .education-article-body h2 { font-size: 24px; }
  .education-article-body h3 { font-size: 20px; }
  .education-comments-section .children {
    margin-left: 24px;
  }
  .education-comments-section .comment-metadata {
    margin-left: 0;
  }
}

@media ( max-width: 480px ) {
  .education-entry-title {
    font-size: 26px;
  }
  .education-share-section {
    flex-wrap: wrap;
    gap: 12px;
  }
  .eb-load-more-btn {
    width: 100%;
    justify-content: center;
  }
}

.education-share-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--eb-border);
  border-bottom: 1px solid var(--eb-border);
  margin: 40px 0;
}

.education-share-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.education-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.education-share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.education-share-facebook { background: #1877f2; }
.education-share-twitter  { background: #000000; }
.education-share-linkedin { background: #0a66c2; }
.education-share-email    { background: var(--eb-muted); }
.education-share-copy {
  background: #333;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* ── Like / Heart button ── */
.education-like-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 40px;
  border-radius: 20px;
  border: 1.5px solid var(--eb-border);
  background: #ffffff;
  color: #aaa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.education-like-btn:hover {
  color: #e05252;
  border-color: #e05252;
}

.education-like-btn.liked {
  color: #e05252;
  border-color: #e05252;
  background: #fff5f5;
}

.education-like-btn.liked .education-like-heart {
  fill: #e05252;
  stroke: #e05252;
}

.education-like-count {
  min-width: 10px;
}

/* ── Post navigation ── */
.education-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--eb-border);
  border-bottom: 1px solid var(--eb-border);
  margin: 0 0 40px;
}

.education-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  max-width: 45%;
  transition: opacity 0.2s ease;
}

.education-post-nav-item:hover {
  opacity: 0.7;
}

.education-post-nav-next {
  text-align: right;
  margin-left: auto;
}

.education-post-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eb-muted);
}

.education-post-nav-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--eb-text);
  line-height: 1.4;
}

/* ── Author box ── */
.education-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--eb-border);
  border-radius: 10px;
  margin: 0 0 48px;
  background: #fafaf8;
}

.education-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--eb-border);
}

.education-author-info {
  flex: 1;
  min-width: 0;
}

.education-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--eb-text);
  margin-bottom: 2px;
}

.education-author-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eb-muted);
  margin-bottom: 10px;
}

.education-author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4740;
  margin: 0 0 14px;
}

.education-author-socials {
  display: flex;
  gap: 10px;
}

.education-author-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--eb-border);
  color: var(--eb-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.education-author-social-link:hover {
  background: var(--eb-primary);
  color: #ffffff;
}

/* ── Custom comment list ── */
.education-comments-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--eb-text);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--eb-border);
}

.education-comments-list {
  margin-bottom: 48px;
}

.education-comment-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--eb-border);
}

.education-comment-item:last-child {
  border-bottom: none;
}

.education-comment-avatar {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0;
}

.education-comment-body {
  flex: 1;
  min-width: 0;
}

.education-comment-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.education-comment-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--eb-text);
}

.education-comment-post-author-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--eb-primary);
  background: rgba(90, 122, 59, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.education-comment-date {
  font-size: 12px;
  color: var(--eb-muted);
  margin-left: auto;
}

.education-comment-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--eb-text);
  margin-bottom: 10px;
}

.education-comment-text p {
  margin: 0 0 0.7em;
}

.education-comment-text p:last-child {
  margin-bottom: 0;
}

.education-comment-reply a {
  font-size: 13px;
  font-weight: 600;
  color: var(--eb-primary);
  text-decoration: none;
}

.education-comment-reply a:hover {
  text-decoration: underline;
}

/* ── Comment form ── */
.education-comment-form-wrap {
  padding-top: 40px;
  border-top: 1px solid var(--eb-border);
  margin-top: 8px;
}

.education-comment-form-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--eb-text);
  margin: 0 0 24px;
}

.education-comment-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.education-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.education-form-group {
  margin-bottom: 16px;
}

.education-form-group--full {
  margin-bottom: 16px;
}

.education-comment-form input[type="text"],
.education-comment-form input[type="email"],
.education-comment-form input[type="url"] {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--eb-text);
  background: #ffffff;
  border: 1.5px solid var(--eb-border);
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.education-comment-form input[type="text"]::placeholder,
.education-comment-form input[type="email"]::placeholder {
  color: #aaa;
}

.education-comment-form input[type="text"]:focus,
.education-comment-form input[type="email"]:focus {
  border-color: var(--eb-primary);
}

.education-comment-form textarea#comment {
  width: 100%;
  min-height: 160px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--eb-text);
  background: #ffffff;
  border: 1.5px solid var(--eb-border);
  border-radius: 6px;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  line-height: 1.6;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.education-comment-form textarea#comment::placeholder {
  color: #aaa;
}

.education-comment-form textarea#comment:focus {
  border-color: var(--eb-primary);
}

.education-form-consent {
  margin-bottom: 20px;
}

.education-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.education-form-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--eb-primary);
}

.education-form-consent span {
  font-size: 13px;
  color: var(--eb-muted);
  line-height: 1.5;
}

.education-form-consent a {
  color: var(--eb-primary);
  text-decoration: underline;
}

.education-form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.education-comment-submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: var(--eb-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.3px;
}

.education-comment-submit-btn:hover {
  background: #4a6a2e;
}

.education-comment-submit-btn:active {
  transform: scale(0.98);
}

@media ( max-width: 600px ) {
  .education-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .education-post-nav {
    flex-direction: column;
    gap: 16px;
  }
  .education-post-nav-item {
    max-width: 100%;
  }
  .education-post-nav-next {
    text-align: left;
    margin-left: 0;
  }
  .education-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .education-author-socials {
    justify-content: center;
  }
  .education-comment-date {
    margin-left: 0;
    width: 100%;
  }
}