/*
Theme Name: Lab Child
Template: lab
Version: 1.0
*/

:root{
  --text:#111827;
  --muted:#4b5563;
  --muted-2:#6b7280;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:14px;
  --radius-sm:10px;

  --container:1120px;


  --s1:8px;
  --s2:12px;
  --s3:16px;
  --s4:24px;
  --s5:32px;
  --s6:48px;
  --s7:64px;
  --s8:80px;
  --s9:100px;

  --primary:#62D4D3;
  --primary-2:#457B85;
  --primary-soft:#E9FAF9;
  --primary-border:rgba(98, 212, 211, 0.55);
  --primary-shadow:rgba(98, 212, 211, 0.24);
  --primary-contrast:#111827;

  --focus:#ffbf47;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: var(--primary);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.final-cta__inner {
	padding: 80px 0 !important;
	color: #fff;
}

.final-cta__content {
	padding: 80px 0 !important;
	color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.08s ease,
    box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.cta-btn--primary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 8px 20px var(--primary-shadow);
}

.cta-btn--primary:hover {
  color: #fff;
  background: var(--primary-2);
}

.cta-btn--ghost {
  border-color: var(--single-border);
  background: #fff;
  color: #1d2341;
}

.cta-btn--full {
  width: 100%;
}

.cta-btn--lg {
  min-height: 46px;
}

figure.profile-image {
	width: 160px !important;
	height: 250px !important;
	max-width: 160px;
	max-height: 250px;
}

.profile-image > img {
	width: 160px !important;
	height: 250px !important;
	max-width: 160px;
	max-height: 250px;
}


.card--treatment {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

/* IMAGE TOP AREA */
.treatments-collapsible {
	display: flex;
    justify-content: center;
    flex-direction: column;
}

/* .card__media--wl {
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg,#dfe7e4,#eef2f1);
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 5px;
}

.card__media--wl img {
    width: auto;
    height: 100%;
    object-fit: cover;
} */

/* BODY */
.card__body {
    padding: 20px;
}

.card__title {
    font-size: 22px;
    margin-bottom: 10px;
}

.card__title a {
    text-decoration: none;
    color: #0f172a;
}

.card__text {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* BUTTONS */
.card__actions {
    display: flex;
    gap: 10px;
}

.btn--ghost {
    border: 1px solid #d1d5db;
    background: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 500;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-contrast);
    border: 1px solid var(--primary);
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.btn--primary:hover {
    background: var(--primary-2);
    color: #fff;
    border-color: var(--primary-2);
}


/* POST STYLE */

.post-title{
font-size:40px;
font-weight:700;
margin:15px 0 25px;
line-height:1.2;
}

/* BREADCRUMB */

.breadcrumb{
font-size:14px;
color:#6b7280;
margin-bottom:10px;
}

.breadcrumb a{
color:#6b7280;
text-decoration:none;
}

.breadcrumb a:hover{
text-decoration:underline;
}


/* META CONTAINER */

.post-meta{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:30px;
margin-top:10px;
}


/* AUTHOR + REVIEWER */

.meta-author,
.meta-reviewer{
display:flex;
align-items:center;
gap:12px;
}


/* IMAGE */

.meta-author img,
.meta-reviewer img{
width:48px;
height:48px;
border-radius:50%;
object-fit:cover;
}


/* LABEL */

.meta-label{
display:block;
font-size:12px;
color:#6b7280;
margin-bottom:2px;
}


/* NAME */

.meta-author a,
.meta-reviewer a{
font-size:14px;
font-weight:600;
color:#111827;
text-decoration:none;
}

.meta-author a:hover,
.meta-reviewer a:hover{
text-decoration:underline;
}


/* UPDATED DATE */

.meta-date{
font-size:14px;
color:#374151;
}

.meta-date .meta-label{
margin-bottom:0;
}


/* MOBILE */

@media (max-width:768px){

.post-title{
font-size:30px;
}

.post-meta{
flex-direction:column;
align-items:flex-start;
gap:18px;
}

}