/*==================================================
GREEN ASIST | 09-cards.css | CARD MODULE
==================================================*/

.card{
    min-height:340px;
    background:var(--color-beyaz);
    border:1px solid rgba(0,0,0,.05);
    border-radius:20px;
    overflow:hidden;
    transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,133,66,.18);
    box-shadow:0 20px 48px rgba(0,0,0,.10);
}

.card-body{
    height:100%;
    padding:40px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.card-accent{
    width:28px;
    height:4px;
    margin-bottom:34px;
    background:var(--color-yesil-2);
    border-radius:999px;
}

.card-title{
    margin:0 0 18px;
}

.card-text{
    margin:0;
}

.card-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    padding-top:28px;
    transition:gap .2s ease,color .2s ease;
}

.card-link:hover{
    gap:12px;
    color:var(--color-yesil-1);
}