/* ===== GRID ===== */
.tlsb-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin:25px 0;
}

/* ===== CARD ===== */
.tlsb-card{
    position:relative;
    background:rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    border:1px solid rgba(0,0,0,0.08);

    padding:26px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    text-align:center;

    min-height:180px;

    border-radius:0;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */
.tlsb-card img{
    width:100%;
    max-width:210px;
    height:70px;
    object-fit:contain;
    margin-bottom:14px;
    transition:0.4s ease;
}

/* ===== TEXT ===== */
.tlsb-card span{
    font-size:14px;
    font-weight:700;
    color:#222;
    letter-spacing:0.8px;
}

/* ===== UNIQUE GLOW BORDER ===== */
.tlsb-card::before{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid transparent;
    background:linear-gradient(120deg,#00c6ff,#0072ff,#00c6ff);
    opacity:0;
    transition:0.4s;
    z-index:0;
}

.tlsb-card:hover::before{
    opacity:1;
}

/* keep content above glow */
.tlsb-card *{
    position:relative;
    z-index:1;
}

/* ===== HOVER EFFECT ===== */
.tlsb-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 14px 30px rgba(0,0,0,0.18);
}

.tlsb-card:hover img{
    transform:scale(1.06);
}

/* ===== LIGHT SHINE ===== */
.tlsb-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition:0.6s;
}

.tlsb-card:hover::after{
    left:120%;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .tlsb-grid{
        grid-template-columns:1fr;
    }
}
New template css
.green-journal-template{
    background:#ffffff;
    border:1px solid rgba(56,162,116,0.25);
    border-radius:16px;
    padding:18px;
    text-align:center;
    font-family:Arial, sans-serif;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.green-journal-template::before{
    content:"";
    position:absolute;
    top:-60px;
    left:-60px;
    width:140px;
    height:140px;
    background:rgba(56,162,116,0.12);
    border-radius:50%;
}

.green-journal-template:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.green-icon{
    width:60px;
    height:60px;
    margin:0 auto 12px;
    border-radius:14px;
    background:rgba(56,162,116,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#38A274;
    position:relative;
    z-index:2;
}

.green-journal-template h3{
    font-size:17px;
    margin:0 0 8px;
    color:#2b2b2b;
    position:relative;
    z-index:2;
}

.green-journal-template p{
    font-size:13px;
    color:#666;
    margin-bottom:16px;
    line-height:1.5;
    position:relative;
    z-index:2;
}

.green-download-btn{
    display:inline-block;
    background:#38A274;
    color:#fff;
    text-decoration:none;
    padding:11px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
    z-index:2;
    box-shadow:0 4px 12px rgba(56,162,116,0.25);
}

.green-download-btn:hover{
    background:#2f8b63;
    transform:scale(1.05);
}