/* ===================================================================
   TRANSPORT BUSES SYDNEY — Blog Pages + Contact Form 7 CSS
   =================================================================== */

/* ===== BOOKING FORM — bk-field SYSTEM =====
   Self-contained field wrapper: no <i> tags in HTML.
   Icon comes from ::after pseudo-element using FA6 unicode.
   Works identically for both native fallback and CF7 forms.
=========================================== */

/* Base field wrapper — matches the theme's .form-box look */
.bk-field {
  position: relative;
  margin-bottom: 4px;
}

/* The input inside bk-field — matches theme pill style exactly */
.bk-field input {
  display: block;
  width: 100%;
  height: 58px;
  border: 1px solid rgba(12,35,24,0.15);
  background: transparent;
  border-radius: 50px;
  padding: 0 48px 0 30px;
  outline: none;
  transition: 0.3s;
  font-family: var(--text-font);
  font-size: 16px;
  color: var(--text-color);
}
.bk-field input::placeholder {
  color: var(--text-color);
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 16px;
}
.bk-field input:focus {
  border-color: #0B4654;
}

/* Icon via ::after — sits at right-centre of the pill */
.bk-field::after {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome";
  font-weight: 400; /* regular icons */
  font-size: 15px;
  color: #FF6D45;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}

/* Icon overrides per field type */
.bk-icon-user::after    { content: "\f2bd"; font-weight: 400; } /* fa-circle-user regular */
.bk-icon-phone::after   { content: "\f095"; font-weight: 900; } /* fa-phone solid */
.bk-icon-email::after   { content: "\f0e0"; font-weight: 900; } /* fa-envelope solid */
.bk-icon-building::after{ content: "\f1ad"; font-weight: 400; } /* fa-building regular */
.bk-icon-location::after{ content: "\f3c5"; font-weight: 900; } /* fa-location-dot solid */
.bk-icon-calendar::after{ content: "\f073"; font-weight: 400; } /* fa-calendar regular */
.bk-icon-clock::after   { content: "\f017"; font-weight: 400; } /* fa-clock regular */

/* Date/time: icon goes on the LEFT to avoid clashing with browser chrome */
.bk-icon-calendar::after,
.bk-icon-clock::after {
  right: auto !important;
  left: 18px !important;
}
.bk-icon-calendar input,
.bk-icon-clock input {
  padding-left: 42px !important;
  padding-right: 16px !important;
  cursor: pointer;
}

/* CF7 span wrapper inside bk-field — must not break the layout */
.bk-field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.bk-field .wpcf7-form-control-wrap input {
  width: 100%;
}

/* Textarea — standalone, no icon */
.bk-textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(12,35,24,0.15);
  background: transparent;
  border-radius: 16px;
  padding: 16px 20px;
  outline: none;
  transition: 0.3s;
  font-family: var(--text-font);
  font-size: 16px;
  color: var(--text-color);
  resize: vertical;
}
.bk-textarea::placeholder {
  color: var(--text-color);
  font-weight: 400;
}
.bk-textarea:focus {
  border-color: #0B4654;
}

/* Journey section labels */
.book-journey-label {
  color: #0B4654;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 3px solid #f0a500;
  padding-left: 10px;
}

/* Submit button spacing */
.contact-form-box .contact-form {
  margin-top: 10px;
}

/* ===== CONTACT FORM 7 ===== */

/* CF7 wraps each field in a span — make it behave like a block */
.wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

/* Inputs & textareas inherit the theme .form-box styles;
   these just ensure full width inside the CF7 wrapper span */
.form-box .wpcf7-form-control-wrap input,
.form-box .wpcf7-form-control-wrap textarea,
.form-box .wpcf7-form-control-wrap select {
  width: 100%;
}

/* Inline validation error tip */
.wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #dc3545;
  margin-top: 5px;
  font-family: var(--title-font);
}

/* Response output bar (success / error) */
.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 600;
  border: none !important;
}
.wpcf7-mail-sent-ok {
  background: #d4edda !important;
  color: #155724 !important;
  border-left: 4px solid #28a745 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #f8d7da !important;
  color: #721c24 !important;
  border-left: 4px solid #dc3545 !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: #fff3cd !important;
  color: #856404 !important;
  border-left: 4px solid #ffc107 !important;
}

/* Spinner shown during AJAX submission */
.wpcf7-spinner {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

/* Submit button — CF7 disables it during submission; reflect that */
.wpcf7 button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Invalid field highlight */
.wpcf7-form-control.wpcf7-not-valid {
  border-color: #dc3545 !important;
}

/* Date and time inputs — ensure they match the theme's form-box style */
.form-box .wpcf7-form-control-wrap input[type="date"],
.form-box .wpcf7-form-control-wrap input[type="time"] {
  cursor: pointer;
}

/* ===== BREADCRUMB NAV ===== */
.breadcumb-nav ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcumb-nav li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.breadcumb-nav li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.breadcumb-nav li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcumb-nav li a:hover {
  color: #f0a500;
}

/* ===== BLOG LISTING ===== */
.blog-listing-section {
  padding: 80px 0;
  background: #f8f5f0;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 70, 84, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(11, 70, 84, 0.16);
}

/* Thumbnail */
.blog-card-thumb {
  position: relative;
  overflow: hidden;
  height: 230px;
  flex-shrink: 0;
}
.blog-card-thumb a {
  display: block;
  height: 100%;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}

/* No-image fallback */
.blog-card-thumb-placeholder {
  width: 100%;
  height: 230px;
  background: linear-gradient(135deg, #0B4654 0%, #1F5A68 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-thumb-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.25);
}

/* Category Badge */
.blog-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FF6D45;
  color: #fff;
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 1;
}

/* Card Body */
.blog-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.blog-card-meta .meta-date,
.blog-card-meta .meta-author,
.blog-card-meta .meta-sep {
  font-size: 13px;
  color: var(--text-color);
}
.blog-card-meta i {
  color: #FF6D45;
  margin-right: 4px;
}

.blog-card-title {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  color: #0B4654;
  margin-bottom: 12px;
  line-height: 1.45;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-card-title a:hover {
  color: #FF6D45;
}

.blog-card-excerpt {
  font-size: 14.5px;
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-btn {
  margin-top: auto;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  color: #0B4654;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid #f0a500;
  transition: color 0.3s, border-color 0.3s;
}
.blog-read-more:hover {
  color: #FF6D45;
  border-color: #FF6D45;
}

/* Pagination */
.blog-pagination {
  text-align: center;
  padding: 40px 0 0;
}
.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 50%;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: #fff;
  color: #0B4654;
  border: 2px solid #dee2e6;
  transition: all 0.3s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: #0B4654;
  color: #fff;
  border-color: #0B4654;
}
.blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

/* No posts message */
.no-posts-message {
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(11, 70, 84, 0.06);
  max-width: 500px;
  margin: 0 auto;
}
.no-posts-message h3 {
  font-family: var(--title-font);
  color: #0B4654;
  font-size: 24px;
  margin-bottom: 12px;
}
.no-posts-message p {
  color: var(--text-color);
  font-size: 15px;
}

/* ===== SINGLE POST ===== */
.blog-single-section {
  padding: 80px 0;
  background: #f8f5f0;
}

.single-post-content {
  background: #fff;
  border-radius: 12px;
  padding: 44px;
  box-shadow: 0 4px 20px rgba(11, 70, 84, 0.07);
}

/* Featured Image */
.post-featured-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.post-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Meta Bar */
.post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 20px;
  background: #F0FDFE;
  border-radius: 8px;
  border-left: 4px solid #f0a500;
}
.meta-item {
  font-size: 13.5px;
  color: var(--text-color);
  font-family: var(--title-font);
}
.meta-item i {
  color: #FF6D45;
  margin-right: 6px;
}
.meta-item a {
  color: #0B4654;
  text-decoration: none;
  transition: color 0.3s;
}
.meta-item a:hover { color: #FF6D45; }

/* Post Title */
.post-single-title {
  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 700;
  color: #0B4654;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* Post Content */
.post-entry-content {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
}
.post-entry-content h2 {
  font-family: var(--title-font);
  color: #0B4654;
  font-size: 26px;
  font-weight: 700;
  margin: 35px 0 16px;
}
.post-entry-content h3 {
  font-family: var(--title-font);
  color: #0B4654;
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.post-entry-content h4 {
  font-family: var(--title-font);
  color: #0B4654;
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 10px;
}
.post-entry-content p { margin-bottom: 20px; }
.post-entry-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
}
.post-entry-content ul,
.post-entry-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
.post-entry-content li {
  margin-bottom: 8px;
  color: #555;
}
.post-entry-content li::marker { color: #FF6D45; }
.post-entry-content blockquote {
  border-left: 4px solid #f0a500;
  background: #F0FDFE;
  padding: 20px 26px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #0B4654;
  font-size: 17px;
}
.post-entry-content a {
  color: #0B4654;
  text-decoration: underline;
  transition: color 0.3s;
}
.post-entry-content a:hover { color: #FF6D45; }
.post-entry-content hr {
  border: none;
  border-top: 2px solid #eee;
  margin: 35px 0;
}

/* Tags */
.post-tags-area {
  margin-top: 32px;
  padding: 20px 22px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
}
.tags-label {
  font-family: var(--title-font);
  font-weight: 700;
  color: #0B4654;
  font-size: 14px;
}
.tags-label i { color: #FF6D45; margin-right: 4px; }
.post-tag {
  display: inline-block;
  padding: 5px 16px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 13px;
  color: #0B4654;
  text-decoration: none;
  transition: all 0.3s;
}
.post-tag:hover {
  background: #0B4654;
  color: #fff;
  border-color: #0B4654;
}

/* Share */
.post-share-area {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}
.share-label {
  font-family: var(--title-font);
  font-weight: 700;
  color: #0B4654;
  font-size: 14px;
}
.share-links { display: flex; gap: 10px; flex-wrap: wrap; }
.share-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
}
.share-links a:nth-child(1) { background: #1877f2; color: #fff; }
.share-links a:nth-child(2) { background: #111; color: #fff; }
.share-links a:nth-child(3) { background: #0a66c2; color: #fff; }
.share-links a:hover { opacity: 0.85; transform: translateY(-2px); }

/* Post Navigation */
.post-navigation-area {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.post-navigation-area .nav-prev,
.post-navigation-area .nav-next { flex: 1; }
.post-navigation-area .nav-next { text-align: right; }
.post-navigation-area a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 18px 22px;
  background: #F0FDFE;
  border-radius: 10px;
  border: 1px solid #d4ebef;
  transition: all 0.3s;
  height: 100%;
}
.post-navigation-area a:hover {
  background: #0B4654;
  border-color: #0B4654;
}
.post-navigation-area .nav-label {
  font-family: var(--title-font);
  font-size: 12px;
  font-weight: 700;
  color: #FF6D45;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.post-navigation-area a:hover .nav-label { color: #f0a500; }
.post-navigation-area .nav-title {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 600;
  color: #0B4654;
  line-height: 1.4;
}
.post-navigation-area a:hover .nav-title { color: #fff; }

/* Author Box */
.post-author-box {
  display: flex;
  gap: 22px;
  padding: 28px;
  background: #F0FDFE;
  border-radius: 12px;
  border: 1px solid #d4ebef;
  margin-top: 36px;
  align-items: flex-start;
}
.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(11, 70, 84, 0.18);
  display: block;
}
.author-info { flex: 1; }
.author-label {
  font-size: 11px;
  color: #FF6D45;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: 5px;
  font-family: var(--title-font);
}
.author-name {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #0B4654;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.65;
  margin: 0;
}

/* Related Posts */
.related-posts-area {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px solid #eee;
}

/* Comments */
.comments-area {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.comments-title {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: #0B4654;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0a500;
}
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list .children { list-style: none; padding-left: 40px; margin-top: 20px; }
.comment-body {
  background: #F0FDFE;
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 22px;
  border: 1px solid #d4ebef;
}
.comment-author .fn {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #0B4654;
}
.comment-author .fn a { color: inherit; text-decoration: none; }
.comment-meta { font-size: 13px; color: var(--text-color); margin-bottom: 10px; }
.comment-meta a { color: var(--text-color); text-decoration: none; }
.comment-content p { font-size: 15px; color: #555; line-height: 1.75; margin: 0; }
.reply { margin-top: 12px; }
.reply .comment-reply-link {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  color: #0B4654;
  text-decoration: none;
  border-bottom: 1px solid #f0a500;
  transition: color 0.3s;
}
.reply .comment-reply-link:hover { color: #FF6D45; }

.comment-respond {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
}
.comment-reply-title {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  color: #0B4654;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0a500;
}
.comment-form p { margin-bottom: 20px; }
.comment-form label {
  font-family: var(--title-font);
  font-weight: 600;
  color: #0B4654;
  font-size: 14px;
  margin-bottom: 7px;
  display: block;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
  background: #fafafa;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #0B4654;
  background: #fff;
}
.comment-form textarea { height: 140px; resize: vertical; }
.comment-form .submit {
  background: #0B4654;
  color: #fff;
  padding: 13px 34px;
  border: none;
  border-radius: 4px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}
.comment-form .submit:hover { background: #FF6D45; }

/* ===== SIDEBAR ===== */
.blog-sidebar { padding-left: 24px; }

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(11, 70, 84, 0.07);
}

.sidebar-widget-title {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  color: #0B4654;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0a500;
  position: relative;
}

/* Search */
.sidebar-search form {
  display: flex;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-search .search-field {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--text-font);
  color: #333;
  background: #fafafa;
}
.sidebar-search button {
  padding: 12px 18px;
  background: #0B4654;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}
.sidebar-search button:hover { background: #FF6D45; }

/* Recent Posts */
.sidebar-recent-posts { list-style: none; padding: 0; margin: 0; }
.sidebar-recent-posts li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.sidebar-recent-posts li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.recent-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-thumb a { display: block; height: 100%; }
.recent-info { flex: 1; }
.recent-date {
  font-size: 12px;
  color: #FF6D45;
  font-weight: 600;
  font-family: var(--title-font);
  display: block;
  margin-bottom: 5px;
}
.recent-date i { margin-right: 4px; }
.recent-info h4 {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  color: #0B4654;
  line-height: 1.45;
  margin: 0;
}
.recent-info h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.recent-info h4 a:hover { color: #FF6D45; }

/* Categories */
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, font-weight 0.1s;
}
.sidebar-categories a:hover { color: #0B4654; font-weight: 600; }
.sidebar-categories .children {
  list-style: none;
  padding-left: 15px;
  margin-top: 4px;
}

/* CTA Widget */
.sidebar-cta-box { background: #0B4654 !important; text-align: center; }
.sidebar-cta-icon {
  font-size: 2.8rem;
  color: #f0a500;
  margin-bottom: 16px;
  display: block;
}
.sidebar-cta-box h3 {
  font-family: var(--title-font);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sidebar-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
}
.sidebar-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f0a500;
  color: #fff;
  border-radius: 4px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}
.sidebar-cta-btn:hover { background: #FF6D45; color: #fff; }

/* Tag Cloud */
.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag-cloud a {
  display: inline-block;
  padding: 6px 15px;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 13px;
  color: #0B4654;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--title-font);
}
.sidebar-tag-cloud a:hover {
  background: #0B4654;
  color: #fff;
  border-color: #0B4654;
}

/* ===== SEARCH PAGE ===== */
.search-results-section { padding: 80px 0; background: #f8f5f0; }

.search-count-bar {
  background: #fff;
  border-radius: 8px;
  padding: 14px 22px;
  margin-bottom: 30px;
  font-family: var(--title-font);
  font-size: 15px;
  color: #555;
  border-left: 4px solid #f0a500;
  box-shadow: 0 2px 10px rgba(11, 70, 84, 0.05);
}
.search-count-bar strong { color: #0B4654; }

.search-result-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(11, 70, 84, 0.07);
  display: flex;
  gap: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.search-result-item:hover {
  box-shadow: 0 8px 30px rgba(11, 70, 84, 0.12);
  transform: translateY(-3px);
}
.search-result-thumb {
  flex-shrink: 0;
  width: 130px;
  height: 95px;
  border-radius: 8px;
  overflow: hidden;
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-thumb a { display: block; height: 100%; }
.search-result-content { flex: 1; }
.search-result-meta {
  font-size: 13px;
  color: #FF6D45;
  font-family: var(--title-font);
  font-weight: 600;
  margin-bottom: 7px;
}
.search-result-meta i { margin-right: 5px; }
.search-result-title {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #0B4654;
  margin-bottom: 10px;
  line-height: 1.35;
}
.search-result-title a { color: inherit; text-decoration: none; transition: color 0.3s; }
.search-result-title a:hover { color: #FF6D45; }
.search-result-excerpt {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 14px;
}
.search-result-link {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  color: #0B4654;
  text-decoration: none;
  border-bottom: 2px solid #f0a500;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.search-result-link:hover { color: #FF6D45; border-color: #FF6D45; }

/* No Results */
.no-results-area {
  text-align: center;
  padding: 70px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(11, 70, 84, 0.06);
}
.no-results-area > i {
  font-size: 3.5rem;
  color: #dee2e6;
  margin-bottom: 20px;
  display: block;
}
.no-results-area h2 {
  font-family: var(--title-font);
  color: #0B4654;
  font-size: 26px;
  margin-bottom: 12px;
}
.no-results-area > p {
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: 15px;
}
.no-results-search form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}
.no-results-search .search-field {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-family: var(--text-font);
  font-size: 15px;
  color: #333;
}
.no-results-search button {
  padding: 14px 22px;
  background: #0B4654;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}
.no-results-search button:hover { background: #FF6D45; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .single-post-content { padding: 32px; }
  .blog-sidebar { padding-left: 16px; }
}

@media (max-width: 991px) {
  .blog-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  .post-single-title { font-size: 28px; }
  .single-post-content { padding: 28px; }
  .post-navigation-area { flex-direction: column; }
  .post-navigation-area .nav-next { text-align: left; }
}

@media (max-width: 767px) {
  .blog-listing-section,
  .blog-single-section,
  .search-results-section { padding: 60px 0; }
  .blog-card-thumb { height: 210px; }
  .blog-card-body { padding: 22px 22px 20px; }
  .post-author-box { flex-direction: column; align-items: flex-start; }
  .post-single-title { font-size: 24px; }
  .search-result-item { flex-direction: column; }
  .search-result-thumb { width: 100%; height: 200px; }
  .post-share-area { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  .post-meta-bar { flex-direction: column; gap: 10px; }
  .blog-card-thumb { height: 190px; }
}
