/* override initial */
.site-content .content-header-left .page-title-wrap {width: initial;}
.site-content .content-header {margin: 0 0 50px 0;}
.notice-card-layout .wp-block-heading { margin-bottom: 10px; }
#knowledgebase.public-notice, .notice-cards-section {
	margin-bottom: 50px;
}
.notice-hero-subtext {
  font-size: 18px;
  color: #4b4b4b;
  margin-bottom: 20px;
}
/* Count above cards */
.notice-cards-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.notice-count {
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

/* Card layout */
.notice-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 10px;
}

.notice-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #ececec;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.notice-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.notice-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e9f5f5;
  color: #5bbab5;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid #5bbab5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-card-title {
  font-size: 20px;
  color: #2f4858;
  font-weight: 700;
  margin-bottom: 16px;
}

.notice-card-summary {
  font-size: 15px;
  color: #444;
  margin-bottom: 0;
  line-height: 1.6;
}

.notice-divider {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #eee;
}

.notice-card-sub {
  font-size: 14px;
  color: #4b4b4b;
  margin-bottom: 6px;
}

.notice-card-link {
  margin-top: 14px;
  font-weight: 600;
  color: #5bbab5;
  border-bottom: 2px solid #5bbab5;
  text-decoration: none;
  display: inline-block;
}

.notice-card-link:hover {
  color: #b80067;
  border-bottom-color: #b80067;
}
.notice-card-sub .deadline-met {
  font-weight: 700;
  text-decoration: underline;
  color: #b80067;
  display: inline-block;
}

/* Pagination */
.notice-pagination {
  text-align: center;
  margin-top: 50px;
}

.notice-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
}

.notice-pagination .page-numbers.current {
  background: #5bbab5;
  color: #fff;
  border-color: #5bbab5;
}

.notice-pagination .page-numbers:hover {
  background: #b80067;
  color: #fff;
  border-color: #b80067;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .kb-search-field {
    font-size: 18px;
    padding: 18px 20px;
  }

  .kb-search-submit {
    font-size: 16px;
    padding: 0 15px;
  }
}
/* === HEADER === */
.single-notice-header {
  background: inherit;
  padding: 20px 0 20px;
}

.single-notice-title {
  font-size: 30px;
  color: #2f4858;
  font-weight: 700;
  margin-bottom: 20px;
}

.dispute-button {
  display: inline-block;
  background-color: #b80067;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dispute-button:hover {
  background-color: #8e004e;
}

/* === MAIN LAYOUT === */
.notice-card-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.notice-sidebar {
  flex: 1;
  max-width: 30%;
}

.notice-main-content {
  flex: 2;
  max-width: 65%;
}

.notice-entry {
  background: #fff;
  padding: 20px 40px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  border: 1px solid #ececec;
}

.sidebar-sticky {
  position: sticky;
  top: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.sidebar-sticky p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #444;
}

/* === TIMELINE === */
.notice-timeline-section {
  padding: 60px 0;
}

.notice-timeline-section h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #2f4858;
}

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

.timeline-box {
  background: #ffffff;
  padding: 25px 20px;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #5bbab5;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}

.timeline-box:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.timeline-label {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-date {
  font-size: 20px;
  font-weight: 700;
  color: #2f4858;
  margin-bottom: 10px;
}

.timeline-sub {
  font-size: 14px;
  color: #4b4b4b;
  line-height: 1.5;
}

.timeline-sub a {
  color: #5bbab5;
  text-decoration: underline;
  font-weight: 600;
}

.timeline-sub a:hover {
  color: #b80067;
}

.deadline-met {
  font-weight: 700;
  text-decoration: underline;
  color: #b80067;
}

/* === DISCLAIMER BLOCK === */
.notice-disclaimer-section {
  background: inherit;
  padding: 0;
}

.disclaimer-block {
  background: #fff;
  border-left: 4px solid #b80067;
  padding: 25px 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.notice-disclaimer-section.bottom {
  margin-top: 60px;
}

/* === RESPONSIVE === */
@media only screen and (max-width: 768px) {
  .notice-card-layout {
    flex-direction: column;
  }

  .notice-sidebar,
  .notice-main-content {
    max-width: 100%;
  }

  .single-notice-title {
    font-size: 24px;
  }

  .dispute-button {
    margin-top: 15px;
    display: inline-block;
  }
}
.notice-sidebar h3, .notice-entry h3 {
    margin-top: 0px;
}
@media only screen and (max-width: 768px) {
  .kb-contact-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .kb-contact-left,
  .kb-contact-right {
    max-width: 100%;
    width: 100%;
  }

  .kb-contact-form-wrapper {
    width: 100%;
  }

  .kb-contact-right p {
    text-align: left !important;
  }
}