/* ===== Post Content Custom Styles ===== */
/* These styles apply to HTML custom tags in WordPress post/page content */

.wp-post-content .gold-highlight {
  background: linear-gradient(135deg, #fdf8e8, #fff8dc);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.wp-post-content .gold-highlight h4 {
  color: var(--burgundy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-post-content .gold-highlight h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}

.wp-post-content .step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.wp-post-content .step-list li {
  counter-increment: step-counter;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--burgundy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px 16px 52px;
  margin: 12px 0;
  position: relative;
}

.wp-post-content .step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 12px;
  top: 14px;
  background: var(--burgundy);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  font-weight: 700;
}

.wp-post-content .warning-box {
  background: #fff5f5;
  border: 1px solid #e8a0a0;
  border-left: 4px solid #c0392b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  color: #721c24;
}

.wp-post-content .tip-box {
  background: #f0f8ff;
  border: 1px solid #a0c8e8;
  border-left: 4px solid #2980b9;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  color: #1a5276;
}

.wp-post-content .check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.wp-post-content .check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.wp-post-content .check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.wp-post-content .info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.wp-post-content .info-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.wp-post-content .info-card .card-header h4 {
  color: var(--burgundy);
  font-size: 18px;
  margin: 0;
}

.wp-post-content .compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wp-post-content .compare-table th {
  background: var(--burgundy);
  color: white;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.wp-post-content .compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.wp-post-content .compare-table tr:nth-child(even) td {
  background: var(--cream);
}

.wp-post-content .summary-box {
  background: linear-gradient(135deg, var(--dark-burgundy), var(--burgundy));
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
}

.wp-post-content .summary-box h4 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}

.wp-post-content .summary-box ul {
  list-style: none;
  padding: 0;
}

.wp-post-content .summary-box li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: rgba(255,255,255,0.9);
}

.wp-post-content .summary-box li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Image in post */
.wp-post-content .post-image-wrap {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wp-post-content .post-image-wrap img {
  width: 100%;
  display: block;
}

.wp-post-content .post-image-wrap .caption {
  background: var(--cream);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

/* Number highlight */
.wp-post-content .num-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark-burgundy);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
  margin-right: 8px;
}

/* Tag cloud */
.wp-post-content .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.wp-post-content .tag-cloud span {
  display: inline-block;
  background: var(--cream);
  color: var(--burgundy);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 13px;
  border: 1px solid var(--border);
}
