/* =====================================================
   BLOG – VARIABLES (local)
===================================================== */

.pt-blog {
  --pt-blog-gap: 32px;
  --pt-blog-radius: 10px;
  --pt-blog-border: rgba(0,0,0,.08);
  --pt-blog-shadow: 0 14px 34px rgba(0,0,0,.08);
  --pt-blog-shadow-hover: 0 22px 44px rgba(0,0,0,.12);
  --pt-blog-beige: rgba(218,209,200,.28);
  --pt-blog-brown: #6f5c4d;
  --pt-blog-brown2: #9a8572;
  --pt-blog-text: #222;
  --pt-blog-muted: #555;
}

/* =====================================================
   BLOG – BASE
===================================================== */

.pt-blog {
      padding-top: 80px;
	padding-bottom: 80px;
}

.pt-blog.container {
  width: 100%;
}

/* =====================================================
   BLOG – MAIN LAYOUT
===================================================== */

.pt-blog__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* Sidebar LEFT */
.pt-blog--sidebar-left .pt-blog__inner {
  grid-template-columns: 340px 1fr;
}

/* No sidebar */
.pt-blog--sidebar-none .pt-blog__inner {
  grid-template-columns: 1fr;
}

/* =====================================================
   BLOG – CONTENT
===================================================== */

.pt-blog__content {
  width: 100%;
}

/* =====================================================
   BLOG – POSTS LIST
===================================================== */

.pt-blog__list {
  display: flex;
  flex-direction: column;
  gap: var(--pt-blog-gap);
}

/* =====================================================
   BLOG – SINGLE ROW CARD
===================================================== */

.pt-blog-row{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:28px;
  align-items:stretch;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  transition:box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.pt-blog-row:hover{
  box-shadow:0 22px 44px rgba(0,0,0,.12);
  transform:translateY(-2px);
  border-color:rgba(0,0,0,.12);
}

.pt-blog-row__image{
  display:block;
  width:100%;
  height:320px;
  overflow:hidden;
  background: rgba(218,209,200,.28);
}

.pt-blog-row__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform .35s ease;
}

.pt-blog-row:hover .pt-blog-row__image img{
  transform:scale(1.02);
}

/* =====================================================
   BLOG – IMAGE PLACEHOLDER (NO THUMB)
===================================================== */


/* Placeholder (no thumbnail) */
.pt-blog-row__img-placeholder{
  display:block;
  width:100%;
  height:100%;
  background:
    radial-gradient(120px 120px at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(218,209,200,.88), rgba(154,133,114,.33));
  position:relative;
}

.pt-blog-row__img-placeholder::after{
  content:'';
  position:absolute;
  inset:0;
  background-image:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,0) 100%
  );
  opacity:.45;
  transform:translateX(-35%);
}

.pt-blog-row__img-placeholder::before{
  content:'PT CLINIC';
  position:absolute;
  left:18px;
  bottom:16px;
  font-family:"Oddlini",serif;
  font-size:34px;
  letter-spacing:.04em;
  color:rgba(255,255,255,.78);
}

.pt-blog-row__content{
  display:flex;
  flex-direction:column;
  padding:0px 26px 26px 0;
  min-height:320px; /* = height image */
}

/* =====================================================
   BLOG – CATEGORY (BADGES)
===================================================== */

.pt-blog-row__cat{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}
.pt-blog-row__cat ul {
padding:0;
display:flex;
}
.pt-blog-row__cat ul li {
list-style: none;
margin-right:10px;
}
.pt-blog-row__cat a{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(154,133,114,.32);
  background:rgba(218,209,200,.28);
  color:#6f5c4d;
  font-size:11px;
  letter-spacing:.10em;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
  line-height:1;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.pt-blog-row__cat a:hover{
  background:rgba(218,209,200,.55);
  border-color:rgba(154,133,114,.55);
  transform:translateY(-1px);
}

/* =====================================================
   BLOG – TITLE
===================================================== */

.pt-blog-row__title{
  font-family:"Oddlini",serif;
  font-size:30px;
  line-height:1.15;
  margin:0 0 10px;
  color:#222;
}

.pt-blog-row__title a{
  color:inherit;
  text-decoration:none;
}

.pt-blog-row__title a:hover {
  color: #000;
}

/* =====================================================
   BLOG – EXCERPT
===================================================== */

.pt-blog-row__excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: var(--pt-blog-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* desktop clamp */
  overflow: hidden;
}

/* =====================================================
   BLOG – CTA ARROW
===================================================== */

.pt-blog-row__arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 26px;
  opacity: .65;
  text-decoration: none;
  color: #2b2521;
  transition: transform .2s ease, opacity .2s ease;
  padding: 10px 10px;
  border-radius: 999px;
}

.pt-blog-row:hover .pt-blog-row__arrow {
  opacity: 1;
  transform: translateX(6px);
}

/* =====================================================
   BLOG – LOAD MORE BUTTON
===================================================== */

.pt-blog-loadmore {
  margin: 52px auto 0;
  padding: 14px 36px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.45);
  background: rgba(218,209,200,.22);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pt-blog-loadmore:hover {
  transform: translateY(-1px);
  background: rgba(218,209,200,.35);
  border-color: rgba(154,133,114,.65);
}

.pt-blog-loadmore:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}

/* =====================================================
   BLOG – PAGINATION (SEO friendly)
===================================================== */

.pt-blog-pagination {
  margin-top: 56px;
}

.pt-blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-blog-pagination a,
.pt-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.35);
  background: rgba(218,209,200,.12);
  text-decoration: none;
  font-weight: 600;
  color: #2b2521;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.pt-blog-pagination a:hover {
  transform: translateY(-1px);
  background: rgba(218,209,200,.28);
  border-color: rgba(154,133,114,.55);
}

.pt-blog-pagination .current {
  background: rgba(154,133,114,.20);
  border-color: rgba(154,133,114,.70);
  color: #2b2521;
}

/* =====================================================
   BLOG – SIDEBAR (sticky)
===================================================== */

.pt-blog__sidebar {
  position: sticky;
  top: 210px; /* dopasuj do headera */
  align-self: start;
}

/* =====================================================
   BLOG SIDEBAR – WIDGET BASE
===================================================== */

.pt-blog__sidebar .widget {
  margin-bottom: 44px;
}

.pt-blog__sidebar .widget:last-child {
  margin-bottom: 0;
}

/* Titles */
.pt-blog__sidebar .widget-title,
.pt-blog__sidebar h2,
.pt-blog__sidebar h3 {
  font-family: "Oddlini", serif;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
}

.pt-blog__sidebar .widget-title::after,
.pt-blog__sidebar h2::after,
.pt-blog__sidebar h3::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(154,133,114,.9), rgba(154,133,114,.2));
}

/* =====================================================
   BLOG SIDEBAR – MENUS (Zacznij tutaj / Polecane)
===================================================== */

.pt-blog__sidebar .widget_nav_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-blog__sidebar .widget_nav_menu li {
  margin-bottom: 12px;
}

.pt-blog__sidebar .widget_nav_menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.30);
  background: rgba(218,209,200,.16);
  color: var(--pt-blog-brown);
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.pt-blog__sidebar .widget_nav_menu a:hover {
  background: rgba(218,209,200,.34);
  border-color: rgba(154,133,114,.55);
  transform: translateX(4px);
}

.pt-blog__sidebar .widget_nav_menu .current-menu-item > a,
.pt-blog__sidebar .widget_nav_menu .current-post-ancestor > a {
  background: rgba(218,209,200,.52);
  border-color: rgba(154,133,114,.75);
}

/* =====================================================
   BLOG SIDEBAR – DEFAULT WP CATEGORIES (widget_categories)
===================================================== */

.pt-blog__sidebar .widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-blog__sidebar .widget_categories li {
  margin-bottom: 12px;
}

.pt-blog__sidebar .widget_categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.30);
  background: rgba(218,209,200,.16);
  color: var(--pt-blog-brown);
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.pt-blog__sidebar .widget_categories a:hover {
  background: rgba(218,209,200,.34);
  border-color: rgba(154,133,114,.55);
  transform: translateX(4px);
}

.pt-blog__sidebar .widget_categories .count {
  font-size: 13px;
  opacity: .65;
}

/* =====================================================
   BLOG SIDEBAR – TOP CATEGORIES (custom widget)
===================================================== */

.pt-blog__sidebar .pt-blog-catlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-blog__sidebar .pt-blog-catlist__item {
  margin-bottom: 12px;
}

.pt-blog__sidebar .pt-blog-catlist__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(47,65,87,.18);
  color: #2f4157;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.pt-blog__sidebar .pt-blog-catlist__link:hover {
  background: #2f4157;
  color: #fff;
}

.pt-blog__sidebar .pt-blog-catlist__count {
  font-size: 13px;
  opacity: .65;
}

/* =====================================================
   BLOG SIDEBAR – CTA (Custom HTML)
===================================================== */

.pt-blog__sidebar .pt-blog-cta {
  padding: 18px 18px;
  background: #2f4157;
  color: #fff;
  border-radius: 16px;
  margin: 30px 0;
}

.pt-blog__sidebar .pt-blog-cta__title {
  font-family: "Oddlini", serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.pt-blog__sidebar .pt-blog-cta__text {
  color: #fff;
  margin: 0 0 14px;
}

.pt-blog__sidebar .pt-blog-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
    border-radius: 16px;
  text-decoration: none;
  background: #fff;
  color: #2f4157;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pt-blog__sidebar .pt-blog-cta__btn:hover {
 background: #dad1c8;
}

.pt-blog__sidebar .pt-blog-cta__phone {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}

/* =====================================================
   BLOG – TABLET
===================================================== */

@media (max-width: 1024px) {

  .pt-blog__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pt-blog__sidebar {
    position: static;
    margin-top: 8px;
  }

  .pt-blog-row__content {
    min-height: auto;
    padding-right: 22px;
  }
}

/* =====================================================
   BLOG – MOBILE
===================================================== */

@media (max-width: 768px) {

  .pt-blog {
        padding-top: 30px;
	padding-bottom: 30px;
  }

  .pt-blog-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pt-blog-row__image {
    height: 220px;
  }

  .pt-blog-row__content {
    padding: 18px 18px 18px;
  }

  .pt-blog-row__title {
    font-size: 22px;
  }

  .pt-blog-row__excerpt {
    font-size: 15px;
    -webkit-line-clamp: 4;
  }

  .pt-blog-row__arrow {
    margin-top: 14px;
    align-self: flex-start;
    padding: 0;
  }

  .pt-blog__sidebar .widget {
    margin-bottom: 34px;
  }

  .pt-blog__sidebar .widget-title,
  .pt-blog__sidebar h2,
  .pt-blog__sidebar h3 {
    font-size: 20px;
  }

  .pt-blog-pagination a,
  .pt-blog-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
  }
}
/* =====================================================
   BLOG SIDEBAR – "Zacznij tutaj" (PT widget)
===================================================== */

.pt-blog__sidebar .pt-start-here{
  border: 1px solid rgba(154,133,114,.28);
  background: rgba(218,209,200,.14);
  border-radius: 12px;
  padding: 18px 18px 16px;
}

/* lista */
.pt-blog__sidebar .pt-start-here__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* jeśli wp_nav_menu wyrzuci <li> bez klasy – też obsłużymy */
.pt-blog__sidebar .pt-start-here__list li{
  margin: 0;
}

/* link */
.pt-blog__sidebar .pt-start-here__link,
.pt-blog__sidebar .pt-start-here__list a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.28);
  background: rgba(255,255,255,.55);
  color: #6f5c4d;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pt-blog__sidebar .pt-start-here__link:hover,
.pt-blog__sidebar .pt-start-here__list a:hover{
  transform: translateX(4px);
  background: rgba(255,255,255,.75);
  border-color: rgba(154,133,114,.55);
}

/* label */
.pt-blog__sidebar .pt-start-here__label{
  display: inline-block;
}

/* strzałka */
.pt-blog__sidebar .pt-start-here__icon{
  opacity: .55;
  transition: transform .2s ease, opacity .2s ease;
}

.pt-blog__sidebar .pt-start-here__link:hover .pt-start-here__icon,
.pt-blog__sidebar .pt-start-here__list a:hover .pt-start-here__icon{
  opacity: 1;
  transform: translateX(4px);
}

/* aktywny */
.pt-blog__sidebar .pt-start-here__list .current-menu-item > a,
.pt-blog__sidebar .pt-start-here__list .current-post-ancestor > a{
  background: rgba(218,209,200,.35);
  border-color: rgba(154,133,114,.70);
}
/* =====================================================
   BLOG – SINGLE POST (ARTICLE VIEW)
===================================================== */




/* =====================================================
   SINGLE – META (kategorie / data / autor)
===================================================== */

.pt-single__meta {
  gap: 10px;
  margin-bottom: 14px;
}

.pt-single__meta a {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.32);
  background: rgba(218,209,200,.28);
  color: #6f5c4d;
  font-size: 11px;
  letter-spacing: .10em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}

.pt-single__meta a:hover {
  background: rgba(218,209,200,.55);
  border-color: rgba(154,133,114,.55);
}

/* =====================================================
   SINGLE – TITLE + LEAD
===================================================== */

.pt-single__title {
  font-family: "Oddlini", serif;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--pt-blog-text);
}

.pt-single__lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--pt-blog-muted);
  margin-bottom: 42px;
}

/* =====================================================
   SINGLE – HERO IMAGE
===================================================== */

.pt-single__hero {
  margin: 0 0 48px;
  border-radius: 14px;
  overflow: hidden;
}

.pt-single__hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   SINGLE – TABLE OF CONTENTS (TOC)
===================================================== */

.pt-single__toc {
  border: 1px solid rgba(154,133,114,.25);
  background: rgba(218,209,200,.18);
  padding: 20px 22px;
  border-radius: 12px;
  margin: 0 0 48px;
}

.pt-single__toc strong {
  font-family: "Oddlini", serif;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.pt-single__toc ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.pt-single__toc li {
  margin-bottom: 6px;
}

.pt-single__toc a {
  color: var(--pt-blog-brown);
  text-decoration: none;
  font-weight: 600;
}

.pt-single__toc a:hover {
  text-decoration: underline;
}

/* =====================================================
   SINGLE – CONTENT TYPOGRAPHY
===================================================== */

.pt-single__content h2 {
  font-family: "Oddlini", serif;
  font-size: 30px;
  margin: 56px 0 18px;
  color: var(--pt-blog-text);
}

.pt-single__content h3 {
  font-size: 20px;
  margin: 38px 0 14px;
  color: var(--pt-blog-text);
}

.pt-single__content p {
	font-family: "Garamond", serif;
  font-size: 24px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: #333;
}

.pt-single__content ul,
.pt-single__content ol {
  padding-left: 22px;
  margin-bottom: 26px;
}

.pt-single__content li {
	font-family: "Garamond", serif;
  margin-bottom: 8px;
font-size: 24px;
  line-height: 1.85;
    list-style-position: outside;
}
.pt-single__content li::marker {
  color: #9a8572;
}
.pt-single__content a {
  color: #2b2521;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   SINGLE – TAGS
===================================================== */

.pt-single__tags {
  margin-top: 42px;
}

.pt-single__tags a {
  display: inline-block;
  margin: 6px 8px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.30);
  background: rgba(218,209,200,.20);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--pt-blog-brown);
  transition: background .2s ease, border-color .2s ease;
}

.pt-single__tags a:hover {
  background: rgba(218,209,200,.35);
  border-color: rgba(154,133,114,.55);
}

/* =====================================================
   SINGLE – MOBILE
===================================================== */

@media (max-width: 768px) {

  .pt-blog--single {
    padding-top: 30px;
	padding-bottom: 30px;
  }

  .pt-single__title {
    font-size: 30px;
  }

  .pt-single__lead {
    font-size: 16px;
  }

  .pt-single__content h2 {
    font-size: 24px;
  }

  .pt-single__content h3 {
    font-size: 18px;
  }
}
/* =====================================================
   FIX – SINGLE POST MOBILE (critical)
===================================================== */

@media (max-width: 768px) {

  /* reset szerokości – zapobiega overflow */
  .pt-blog,
  .pt-blog__inner,
  .pt-blog__content,
  .pt-single__content {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* tytuł – bardziej kompaktowy */
  .pt-single__title {
    font-size: 28px;
    line-height: 1.2;
  }

  /* lead – krótsze wiersze */
  .pt-single__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* 🔴 KLUCZOWE: akapity */
  .pt-single__content p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  /* nagłówki */
  .pt-single__content h2 {
    font-size: 22px;
    margin: 42px 0 14px;
  }

  .pt-single__content h3 {
    font-size: 18px;
    margin: 28px 0 12px;
  }

  /* hero image – brak wizualnego „przytłoczenia” */
  .pt-single__hero {
    margin-bottom: 32px;
    border-radius: 10px;
  }

  /* meta (kategorie, data) – zawijanie */
  .pt-single__meta {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  /* TOC – mniejsze i czytelniejsze */
  .pt-single__toc {
    padding: 16px 16px;
    margin-bottom: 32px;
  }

  .pt-single__toc strong {
    font-size: 21px;
  }

}

/* =====================================================
   GLOBAL TABLES – ARTICLE CONTENT
===================================================== */

.pt-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.pt-single__content th,
.pt-single__content td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.pt-single__content thead th {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6f5c4d;
  background: rgba(218,209,200,.35);
}

.pt-single__content td:first-child {
  font-weight: 700;
  white-space: nowrap;
}

/* =====================================================
   MOBILE – STACKED TABLE (NO CLASSES)
===================================================== */

@media (max-width: 768px) {

  .pt-single__content table,
  .pt-single__content thead,
  .pt-single__content tbody,
  .pt-single__content th,
  .pt-single__content td,
  .pt-single__content tr {
    display: block;
    width: 100%;
  }

  /* hide headers */
  .pt-single__content thead {
    display: none;
  }

  /* card */
  .pt-single__content tr {
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }

  .pt-single__content td {
    padding: 0;
    border: none;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .pt-single__content td:last-child {
    margin-bottom: 0;
  }

  /* labels from <th> */
  .pt-single__content td::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9a8572;
    margin-bottom: 4px;
  }

  /* first column = title */
  .pt-single__content td:first-child {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .pt-single__content td:first-child::before {
    display: none;
  }
}

/* =====================================================
   COMMENTS – BASE
===================================================== */

#comments {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,.08);
}

#comments a {
  color: #2b2521;
  font-weight: 600;
  text-decoration: underline;
}

#comments a:hover {
  text-decoration: none;
}

/* =====================================================
   COMMENTS – LIST
===================================================== */

#comments ol.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#comments li.comment {
  margin-bottom: 32px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

#comments li.comment:last-child {
  margin-bottom: 0;
}

/* reply (nested) */
#comments ol.children {
  list-style: none;
  padding-left: 26px;
  margin-top: 20px;
}

/* =====================================================
   COMMENT HEADER
===================================================== */

#comments .comment-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

#comments .comment-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

#comments .comment-author .fn {
  font-weight: 700;
  font-style: normal;
}

#comments .comment-metadata {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

/* =====================================================
   COMMENT CONTENT
===================================================== */

#comments .comment-content p {
  font-family: "Garamond", serif;
  font-size: 21px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 14px;
}

#comments .comment-content p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   COMMENT ACTIONS
===================================================== */

#comments .reply a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}

#comments .reply a:hover {
  text-decoration: underline;
}

/* =====================================================
   COMMENT FORM
===================================================== */

#respond {
  margin-top: 64px;
  padding: 28px 32px;
  background: rgba(218,209,200,.18);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
}

#reply-title {
  font-family: "Oddlini", serif;
  font-size: 26px;
  margin-bottom: 10px;
}

#cancel-comment-reply-link {
  font-size: 14px;
  font-weight: 600;
}

/* logged user info */
#respond .logged-in-as {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* =====================================================
   FORM FIELDS
===================================================== */

#commentform label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6f5c4d;
  margin-bottom: 6px;
}

#commentform textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  font-size: 16px;
  font-family: inherit;
  background: #fff;
}

#commentform textarea {
  min-height: 160px;
  resize: vertical;
}

/* focus */
#commentform textarea:focus,
#commentform input:focus {
  outline: none;
  border-color: #9a8572;
}

/* =====================================================
   SUBMIT
===================================================== */

#commentform .form-submit {
  margin-top: 18px;
}

#commentform input.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(154,133,114,.45);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

#commentform input.submit:hover {
  transform: translateY(-1px);
  background: rgba(218,209,200,.35);
  border-color: rgba(154,133,114,.75);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  #comments {
    margin-top: 60px;
    padding-top: 40px;
  }

  #comments li.comment {
    padding: 18px 18px;
  }

  #comments .comment-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  #respond {
    padding: 22px 20px;
  }

  #reply-title {
    font-size: 22px;
  }
}


/* =====================================================
   GLOBAL BUTTONS – PT CLINIC
   (shortcode [button], CTA links, article buttons)
===================================================== */

/* bazowy reset */
.pt-single__content a.nectar-button,
.pt-single__content a.button,
.pt-single__content a[class*="button"],
.pt-single__content a[class*="nectar"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 26px;
  margin: 22px 0;

  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  color: #fff;
  background: linear-gradient(
    135deg,
    #9a8572 0%,
    #6f5c4d 100%
  );

  border-radius: 999px;
  border: none;

  box-shadow:
    0 10px 26px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.15);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

/* hover */
.pt-single__content a.nectar-button:hover,
.pt-single__content a.button:hover,
.pt-single__content a[class*="button"]:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.25);
}

/* aktywny */
.pt-single__content a.nectar-button:active,
.pt-single__content a.button:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(0,0,0,.18);
}

/* =====================================================
   BUTTON VARIANTS
===================================================== */

/* duży (size="large") */
.pt-single__content a.large {
  font-size: 16px;
  padding: 18px 32px;
}

/* pełna szerokość (jeśli kiedyś dodasz .is-fullwidth) */
.pt-single__content a.is-fullwidth {
  width: 100%;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .pt-single__content a.nectar-button,
  .pt-single__content a.button,
  .pt-single__content a[class*="button"] {
    width: 100%;
    padding: 16px 22px;
    font-size: 15px;
  }
}

/* =====================================================
   GLOBAL BUTTON – PT CLINIC
===================================================== */

.single-post .pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 26px ;
  margin: 26px 0;
  text-decoration:none !important;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;

  color: #fff !important;
  background: linear-gradient(
    135deg,
    #9a8572 0%,
    #6f5c4d 100%
  );

  border-radius: 999px;
  border: none;

  box-shadow:
    0 10px 26px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.15);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

/* hover */
.single-post .pt-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.25);
}

/* active */
.single-post .pt-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

/* arrow */
.single-post .pt-btn__arrow {
  font-size: 18px;
  transition: transform .2s ease;
}

.single-post .pt-btn:hover .pt-btn__arrow {
  transform: translateX(4px);
}

/* =====================================================
   VARIANTS
===================================================== */

.single-post .pt-btn--large {
  font-size: 21px;
  padding: 10px 30px;
}

.single-post .pt-btn--full {
  width: 100%;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
.single-post  .pt-btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 15px;
  }
}
