/* ===========================
   TRUST CARDS – PT CLINIC
=========================== */

.pt-trust-section {
    background: #2f445d;
    padding: 80px 0;
    text-align: center;
}

/* ===========================
   HEADER
=========================== */

.pt-trust-header {
    font-family: "Garamond", serif;
    font-size: 48px;
    line-height: 1.25;
    color: #fff;
	margin: 0;
}

.pt-trust-header h2 {
font-family: "Oddlini", serif;
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
  text-align:center;
}

.pt-trust-lead {
font-family: "Garamond", serif;
  font-size: 24px;
  line-height: 1.6;
  margin: 24px 0;
  color:#fff;
}

/* ===========================
   GRID
=========================== */

.pt-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin: 45px auto 0 auto !important;
}

/* ===========================
   CARD
=========================== */

.pt-trust-card {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    border-radius: 18px;
    padding: 35px 13px;
    transition: transform .45s cubic-bezier(.22,1,.36,1),
                box-shadow .45s cubic-bezier(.22,1,.36,1);
}

/* gradient glow */
.pt-trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.pt-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,.45);
}

.pt-trust-card:hover::before {
    opacity: 1;
}

/* ===========================
   TYPOGRAPHY
=========================== */

.pt-trust-card h3 {
	font-family: "Oddlini", serif;
    font-size: 24px;
    font-weight: 500;
    margin: 16px 0 12px;
    color: #ffffff;
}

.pt-trust-card p {
    font-family: "Garamond", serif;
    font-size: 22px;
    line-height: 1.4;
    color: #d6dde6;
}



/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .pt-trust-section {
        padding: 30px 0;
    }

    .pt-trust-header {
        margin-bottom: 48px;
    }
.pt-trust-header h2 {
font-size: 27px;
    text-align: left;
}
    .pt-trust-lead {
        font-size: 21px;
    text-align: left;
    }

    .pt-trust-card {
        padding: 28px 24px;
    }
}

/* ===========================
   LIGHT THEME
=========================== */

.pt-trust-section.theme-light {
    background: #f3f1ee;
}

.pt-trust-section.theme-light h2,
.pt-trust-section.theme-light .pt-trust-lead,
.pt-trust-section.theme-light .pt-trust-card h3,
.pt-trust-section.theme-light .pt-trust-card,.pt-trust-section.theme-light .pt-trust-card__text {
    color: #203b57;
}

.pt-trust-section.theme-light .pt-trust-card {
    background: #ffffff;
}

/* ===========================
   CARD CONTENT (HTML)
=========================== */
.pt-trust-card__text {
color:#fff;
opacity: 0.7;	
font-size: 18px;
line-height: 1.6;
}
.pt-trust-card__text p {
    margin: 0 0 12px;
}

.pt-trust-card__text ul,
.pt-trust-card__text ol {
    margin: 12px 0 0 18px;
	text-align:left;
	list-style: none;
	padding: 0 !important;
}

.pt-trust-card__text li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    line-height: 1.4;
}
/* ICON */
.pt-trust-card__text li::before {
    content: "\44"; /* kod z icomoon */
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: currentColor;
    opacity: 0.9;
}
.pt-trust-card__text strong {
    font-weight: 600;
}

.pt-trust-card__text em {
    font-style: italic;
}
