/* Layout container */
.service_content{
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 18px;
}

/* Left image */
.service_content_left{
  /*flex: 0 0 260px;*/              /* vaste kolombreedte */
  border-radius: 16px;
  overflow: hidden;
}

.service_content_left img{
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* Right panel */
.service_content_right{
  flex: 1;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
}

/* Stats (3 kolommen) */
.player-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.player-stats .stat{
  padding: 14px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
}

.player-stats .label{
  display: block;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 6px;
}

.player-stats .value{
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0,0,0,.88);
}

/* Follow title */
.service_content_right h3{
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* Social icons row */
.social-icons{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  gap: 12px;                    /* spatie tussen iconen */
  align-items: center;
}

.social-icons li{
  margin: 0;
  padding: 0;
}

.social-icons a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f2f4f7;
  border: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.75);
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}

.social-icons a:hover{
  transform: translateY(-1px);
  background: #111827;          /* donker */
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(17,24,39,.18);
}

.social-icons i{
  font-size: 16px;
}

/* Buttons row */
.single-post-navigation{
  margin-top: 10px;
}

.navigation-links{
  display: flex;
  gap: 12px;                    /* spatie tussen knoppen */
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Button styling (op jouw bestaande classes) */
.cs-btn-one{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;         /* circle look */
  border: 1px solid rgba(0,0,0,.12);
  background: #ffffff;
  color: rgba(0,0,0,.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.cs-btn-one:hover{
  background: #111827;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17,24,39,.18);
}

/* Optional: als je btn-sm wilt */
.btn-sm{
  padding: 9px 13px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px){
  .service_content{
    flex-direction: column;
  }

  .service_content_left{
    flex-basis: auto;
  }

  .service_content_left img{
    min-height: 220px;
  }

  .player-stats{
    grid-template-columns: 1fr; /* stats onder elkaar op mobiel */
  }
}