.surgical_board {
  margin-bottom: 60px;
}
.surgical_board .board_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.surgical_board .board_header .board_title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.surgical_board .board_header .board_title .board_subtitle {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
.surgical_board .board_header .board_actions {
  display: flex;
  gap: 12px;
}
.surgical_board .board_header .board_actions .btn_write {
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.surgical_board .board_header .board_actions .btn_write:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.surgical_board .board_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .surgical_board .board_content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.surgical_board .board_card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 280px;
  cursor: pointer;
}
.surgical_board .board_card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.surgical_board .board_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  border-radius: 0 2px 2px 0;
}
.surgical_board .board_card .card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.surgical_board .board_card .card_header .card_category {
  background: #fff1ea;
  color: #e95515;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.surgical_board .board_card .card_header .card_date {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.surgical_board .board_card .card_title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}
.surgical_board .board_card .card_title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.surgical_board .board_card .card_title a:hover {
  color: #e95515;
}
.surgical_board .board_card .card_excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.surgical_board .board_card .card_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-top: auto;
}
.surgical_board .board_card .card_footer .card_author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.surgical_board .board_card .card_footer .card_author .author_avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.surgical_board .board_card .card_footer .card_author .author_info .author_name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.surgical_board .board_card .card_footer .card_author .author_info .author_dept {
  font-size: 11px;
  color: #999;
}
.surgical_board .board_card .card_footer .card_stats {
  display: flex;
  gap: 16px;
}
.surgical_board .board_card .card_footer .card_stats .stat_item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
}
.surgical_board .board_card .card_footer .card_stats .stat_item .stat_icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.surgical_board .board_card .card_footer .card_stats .stat_item .stat_icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.surgical_board .board_card.featured {
  background: linear-gradient(135deg, #fff 0%, #fff1ea 100%);
  border: 2px solid #e95515;
}
.surgical_board .board_card.featured::before {
  width: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #e95515 100%);
}
.surgical_board .board_card.featured .card_category {
  background: #e95515;
  color: #fff;
}
.surgical_board .board_card.new .card_header .card_category {
  background: #f59e0b;
  color: #fff;
}
.surgical_board .board_empty {
  text-align: center;
  padding: 60px 20px;
}
.surgical_board .board_empty .empty_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 32px;
}
.surgical_board .board_empty .empty_title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.surgical_board .board_empty .empty_desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.surgical_board .board_empty .empty_action {
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.surgical_board .board_empty .empty_action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .surgical_board .board_content {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .surgical_board .board_header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .surgical_board .board_card {
    padding: 20px;
    height: 300px;
  }
  .surgical_board .board_card .card_footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .surgical_board .board_card {
    padding: 16px;
    height: 250px;
  }
  .surgical_board .board_card .card_title {
    font-size: 16px;
  }
  .surgical_board .board_card .card_excerpt {
    font-size: 13px;
  }
}
.surgical_procedure_after_detail .surgical_procedure_after_detail_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .surgical_procedure_after_detail .surgical_procedure_after_detail_inner {
    padding: 0 16px;
  }
}
.surgical_procedure_after_detail .surgical_procedure_after_detail_content .surgical_procedure_after_detail_title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  margin-top: 50px;
  text-align: center;
  position: relative;
}
.surgical_procedure_after_detail .surgical_procedure_after_detail_content .surgical_procedure_after_detail_title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .surgical_procedure_after_detail .surgical_procedure_after_detail_content .surgical_procedure_after_detail_title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.surgical_procedure_after_detail .post_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .surgical_procedure_after_detail .post_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.surgical_procedure_after_detail .post_card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.surgical_procedure_after_detail .post_card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.surgical_procedure_after_detail .post_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  border-radius: 0 2px 2px 0;
}
.surgical_procedure_after_detail .post_card .post_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.surgical_procedure_after_detail .post_card .post_header .post_category {
  background: #fff1ea;
  color: #e95515;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.surgical_procedure_after_detail .post_card .post_header .post_date {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.surgical_procedure_after_detail .post_card .post_title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}
.surgical_procedure_after_detail .post_card .post_title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.surgical_procedure_after_detail .post_card .post_title a:hover {
  color: #e95515;
}
.surgical_procedure_after_detail .post_card .post_excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  min-height: 0;
}
.surgical_procedure_after_detail .post_card .post_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-top: auto;
}
.surgical_procedure_after_detail .post_card .post_footer .post_author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.surgical_procedure_after_detail .post_card .post_footer .post_author .author_avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.surgical_procedure_after_detail .post_card .post_footer .post_author .author_info .author_name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.surgical_procedure_after_detail .post_card .post_footer .post_author .author_info .author_dept {
  font-size: 11px;
  color: #999;
}
.surgical_procedure_after_detail .post_card .post_footer .post_stats {
  display: flex;
  gap: 16px;
}
.surgical_procedure_after_detail .post_card .post_footer .post_stats .stat_item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
}
.surgical_procedure_after_detail .post_card .post_footer .post_stats .stat_item .stat_icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.surgical_procedure_after_detail .post_card .post_footer .post_stats .stat_item .stat_icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.surgical_procedure_after_detail .post_card.important {
  background: linear-gradient(135deg, #fff 0%, #fff1ea 100%);
  border: 2px solid #e95515;
}
.surgical_procedure_after_detail .post_card.important::before {
  width: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #e95515 100%);
}
.surgical_procedure_after_detail .post_card.important .post_category {
  background: #e95515;
  color: #fff;
}
.surgical_procedure_after_detail .post_card.new .post_header .post_category {
  background: #f59e0b;
  color: #fff;
}
.surgical_procedure_after_detail .post_empty {
  text-align: center;
  padding: 60px 20px;
}
.surgical_procedure_after_detail .post_empty .empty_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 32px;
}
.surgical_procedure_after_detail .post_empty .empty_title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.surgical_procedure_after_detail .post_empty .empty_desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.surgical_procedure_after_detail .post_empty .empty_action {
  background: linear-gradient(135deg, #e95515 0%, #f59e0b 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.surgical_procedure_after_detail .post_empty .empty_action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .surgical_procedure_after_detail .post_grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .surgical_procedure_after_detail .post_card {
    padding: 20px;
  }
  .surgical_procedure_after_detail .post_card .post_footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .surgical_procedure_after_detail .post_card {
    padding: 16px;
  }
  .surgical_procedure_after_detail .post_card .post_title {
    font-size: 16px;
  }
  .surgical_procedure_after_detail .post_card .post_excerpt {
    font-size: 13px;
  }
}
