/* ===========================
   PRECISION THERAPY SECTION
=========================== */

.ptc-section {
  font-family: "Raleway", sans-serif;
  padding: 60px 0;
  background: #F6F6F6;
}

.ptc-container {
  /* max-width: 1300px; */
  margin: auto;
  padding: 0 60px;
}

.ptc-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 0;
  text-transform: capitalize;
}

.ptc-title span {
  font-style: italic;
  font-weight: 700;
}

.ptc-subtext {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 140%;
  /* max-width: 500px; */
  margin: 10px auto 40px;
  color: #000000;
  max-width: 900px;
}

/* SLIDER */
.ptc-slider-wrapper {
  position: relative;
}

.ptc-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.ptc-slider::-webkit-scrollbar {
  height: 0;
}

/* CARD */
.ptc-card {
  display: flex;
  min-width: 600px;
  /* padding: 25px; */
  background: white;
  /* border-radius: 6px; */
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.ptc-card:hover{
   transform: scale(1.03); 
}

.ptc-card >div, .ptc-img {
  width: 50%;
  /* object-fit: cover; */
}

.ptc-img{
  /* height: 100%; */
  overflow: hidden;
}

.ptc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills container without stretching */
  object-position: center; /* optional: centers the subject */
  display: block;     /* removes whitespace gap */
}

.ptc-card>div:nth-child(1) {
 padding: 15px;
}

.ptc-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.019em;
  text-transform: capitalize;
}

.ptc-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.022em;
}

.ptc-card a{
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    line-height: 150%;
}

.ptc-learn-more {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.ptc-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ARROWS */
.ptc-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  /* padding: 8px 12px; */
  width: 40px;
  height: 40px;
 border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

button.ptc-arrow{
  text-decoration: none !important;
}

.ptc-arrow-left {
  left: -10px;
}

.ptc-arrow-right {
  right: -10px;
}

/* EXPLORE BUTTON */
.ptc-explore-wrapper {
  text-align: center;
  margin-top: 30px;
}

.ptc-explore-btn {
  text-decoration: none;
  font-weight: 700;
  color: #000;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .ptc-section {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
.ptc-card{
  min-width: 550px;
}

.ptc-card h3{
  margin-top: 6px;
  line-height: normal;
}

.ptc-card a{
  margin-top: 5px;
}
}

@media (max-width: 425px) {
  .ptc-section {
    padding: 20px 0;
  }

  .ptc-title {
    font-size: 26px;
  }

  .ptc-container {
    padding: 0px 20px;
    
  }

}