/* Card grid for treatment / blog listings.
   Restores styling for .trtmnt cards (original asset was never in the backup). */

.trtmnt{
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    overflow: hidden;
    min-height: 360px;
    padding-bottom: 72px;          /* space for "Read more" + date */
    transition: box-shadow .2s ease, transform .2s ease;
}

.trtmnt:hover{
    box-shadow: 0 8px 22px rgba(0,0,0,.15);
    transform: translateY(-2px);
}

.imgdivt{
    width: 100%;
    overflow: hidden;
}

.pwimg{
    width: 100%;
    height: 160px;
    background-color: #eef2f5;
    background-size: cover;
    background-position: center;
}

.xcerptt{
    padding: 14px 10px 0 10px;
}

.xcerptt h3{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-left: 11px;
    line-height: 1.3;
}

.xcerptt p{
    line-height: 1.5;
}

.dateliluzi{
    position: absolute;
    left: 24px;
    bottom: 18px;
    font-size: 13px;
    color: #999;
}

/* Cards fade in once revealed by treatmentsozel.js; keep them visible
   even if JS is disabled. */
.col-12 > a > .trtmnt{ opacity: 1; }
