/* CONTENT WIDTH & BASE TEXT */
.entry-content,
.wp-block-post-content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #1f2933;
}

/* ---------------------------------------
   HEADINGS
---------------------------------------- */
.entry-content h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2em;
  font-weight: 800;
}

.entry-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5em;
  margin-bottom: 1em;
  font-weight: 700;
  border-left: 5px solid #ff6b2c;
  padding-left: 1rem;
}

.entry-content h3 {
  font-size: 1.4rem;
  margin-top: 2em;
  margin-bottom: 0.75em;
  font-weight: 700;
}

/* ---------------------------------------
   PARAGRAPHS & INDENTS
---------------------------------------- */
.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content p.indent {
  text-indent: 2em;
}

/* ---------------------------------------
   LINKS
---------------------------------------- */
.entry-content a {
  color: #ff6b2c;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 107, 44, 0.3);
  transition: all 0.2s ease;
}

.entry-content a:hover {
  border-bottom-color: #ff6b2c;
}

/* ---------------------------------------
   LISTS
---------------------------------------- */
.entry-content ul,
.entry-content ol {
  margin: 1.5em 0 1.5em 2em;
}

.entry-content li {
  margin-bottom: 0.75em;
  line-height: 1.7;
}

/* Styled bullets */
.entry-content ul li::marker {
  color: #ff6b2c;
}

/* ---------------------------------------
   BLOCKQUOTES / CALLOUTS
---------------------------------------- */
.entry-content blockquote {
  margin: 2.5em 0;
  padding: 1.8em 2em;
  background: #fff7f2;
  border-left: 6px solid #ff6b2c;
  border-radius: 8px;
  font-size: 1.05rem;
}

/* ---------------------------------------
   TABLES
---------------------------------------- */
.entry-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2.5em 0;
  font-size: 0.95rem;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Header */
.entry-content thead th {
  background: #1f2933;
  color: #ffffff;
  padding: 1em;
  text-align: left;
  font-weight: 700;
}

/* Cells */
.entry-content th,
.entry-content td {
  padding: 0.9em 1em;
  border-bottom: 1px solid #eee;
}

/* Zebra rows */
.entry-content tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover */
.entry-content tbody tr:hover {
  background-color: #fff1ea;
}

/* ---------------------------------------
   IMAGES
---------------------------------------- */
.entry-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2.5em 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ---------------------------------------
   CODE BLOCKS
---------------------------------------- */
.entry-content pre {
  background: #0f172a;
  color: #e5e7eb;
  padding: 2em;
  border-radius: 12px;
  overflow-x: auto;
  margin: 2.5em 0;
  font-size: 0.9rem;
}

.entry-content code {
  background: #f3f4f6;
  color: #111827;
  padding: 0.3em 0.5em;
  border-radius: 6px;
  font-size: 0.9em;
}

/* ---------------------------------------
   PRO TIP / NOTE BOX
---------------------------------------- */
.entry-content .note-box {
  background: #ecfeff;
  border-left: 6px solid #06b6d4;
  padding: 1.5em 2em;
  border-radius: 10px;
  margin: 2.5em 0;
  font-weight: 600;
}

/* ---------------------------------------
   BUTTON STYLE
---------------------------------------- */
.entry-content .content-button {
  display: inline-block;
  background: #ff6b2c;
  color: #ffffff;
  padding: 0.8em 1.8em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin: 1.5em 0;
  transition: all 0.2s ease;
}

.entry-content .content-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 44, 0.4);
}
