/* Container */
.wf-wrapper{
    max-width: 100%;
    margin:0 auto;
    padding:30px 0px;
    font-family: Open Sans;
}

/* Tabs */
.wf-tabs{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:32px;
}
.wf-tab{
    padding:10px 22px;
    border-radius:999px;
    border:0;
    background:#e0e0e0;
    cursor:pointer;
    font-weight:500;
}
.wf-tab.active{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
}

/* Grid */
.wf-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
@media(max-width:768px){
    .wf-grid{grid-template-columns:1fr;}
}

/* Card */
.wf-card{
    background:#fff;
    padding:18px;
    border-radius:20px;
    box-shadow:
        2 30px 50px rgba(221, 96, 252, 0.15),
        inset 0 0 0 1px rgba(120, 174, 255, 0.4);
    transition:.3s ease;
}
/* .wf-card:hover{
    transform:translateY(-6px);
} */

/* Image */
.wf-image-area img{
    width:100%;
    border-radius:14px;
    border-radius:20px;
}

/* Title */
.wf-title{
    font-size:26px;
    margin:16px 0 8px;
    /*font-family: lexend;*/
    font-weight: 500;
}

/* Tags */
.wf-tags-row{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:14px;
}
.wf-tag-item{
    font-size:13px;
    padding:6px 12px;
    background:#eef2ff;
    border-radius:999px;
}

/* Actions */
.wf-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top: 16px;
}



.wf-view-btn{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    text-decoration:none;
}

.wf-view-btn:hover{
    color: #fff;
    background:linear-gradient(135deg,#2563eb,#1e40af);
}

.wf-arrow-icon{
    font-size:22px;
    color:#2563eb;
    text-decoration:none;
}
