.gegov-earn-list{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(280px,1fr)
        );

    gap:24px;

    margin:30px 0;
}

.gegov-earn-card{

    position:relative;

    width:100%;
    max-width:none;

    box-sizing:border-box;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:18px;

    overflow:hidden;

    box-shadow:
        0 4px 14px rgba(0,0,0,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.gegov-earn-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:4px;

    background:
        linear-gradient(
            90deg,
            #22c55e,
            #3b82f6
        );

    z-index:1;
}


.gegov-earn-card:hover{

    transform:translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(0,0,0,.08);
}



.gegov-earn-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;
}

.gegov-earn-logo{

    width:42px;

    height:42px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;
}

.gegov-earn-meta{

    flex:1;
}

.gegov-earn-meta h3{

    margin:0;

    font-size:16px;

    font-weight:700;

    line-height:1.2;
}

.gegov-earn-network{

    margin-top:3px;

    font-size:12px;

    color:#777;
}

.gegov-earn-reward{

    text-align:center;

    margin:20px 0;

    font-size:34px;

    font-weight:800;

    color:#22c55e;

    line-height:1;
}

.gegov-earn-reward small{

    display:block;

    margin-top:5px;

    font-size:13px;

    color:#777;

    font-weight:500;
}

.gegov-earn-stars{

    text-align:center;

    color:#fbbf24;

    font-size:18px;

    margin-bottom:18px;
}

.gegov-earn-btn{

    display:block;

    width:90%;

    text-align:center;

    padding:12px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:
        linear-gradient(
            90deg,
            #22c55e,
            #3b82f6
        );
}
.gegov-earn-toolbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    flex-wrap:wrap;

    margin:25px 0 30px;

    padding:15px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    box-shadow:
        0 4px 14px
        rgba(0,0,0,.05);
}

.gegov-earn-toolbar input,
.gegov-earn-toolbar select{

    height:48px;

    border:1px solid #e5e7eb;

    border-radius:12px;

    background:#fafafa;

    padding:0 15px;

    font-size:14px;

    outline:none;

    transition:.25s;
}

.gegov-earn-toolbar input{

    flex:1;

    min-width:260px;
}

.gegov-earn-toolbar select{

    min-width:220px;

    cursor:pointer;
}

.gegov-earn-toolbar input:focus,
.gegov-earn-toolbar select:focus{

    border-color:#3b82f6;

    background:#fff;

    box-shadow:
        0 0 0 4px
        rgba(59,130,246,.12);
}

.gegov-earn-toolbar input::placeholder{

    color:#9ca3af;
}

.gegov-back-earn{

    position:fixed;

    bottom:25px;

    right:25px;

    z-index:999;

    animation:gegovEarnFade .3s ease;
}

.gegov-back-earn a{

    display:flex;

    align-items:center;

    gap:8px;

    padding:12px 18px;

    border-radius:999px;

    text-decoration:none;

    font-weight:600;

    color:#fff;

    background:
        linear-gradient(
            90deg,
            #22c55e,
            #3b82f6
        );

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.18);

    transition:.25s;
}

.gegov-back-earn a:hover{

    transform:translateY(-2px);
}

@keyframes gegovEarnFade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width:768px){

    .gegov-back-earn{
        margin-right:9%;
		width: 80%;
		
        
		
    }

    .gegov-back-earn a{

        justify-content:center;

        width:100%;
    }
}

.gegov-earn-stars-rating{

    position:relative;

    display:inline-block;

    font-size:18px;

    line-height:1;

    margin-bottom:6px;
}

.gegov-earn-stars-bg{

    color:#d1d5db;
}

.gegov-earn-stars-fill{

    position:absolute;

    top:0;
    left:0;

    overflow:hidden;

    white-space:nowrap;
}
.gegov-scam-risk{

    display:inline-block;

    margin-left:8px;

    padding:3px 8px;

    border-radius:999px;

    background:#fee2e2;

    color:#dc2626;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;
}

@media (max-width:768px){

    .gegov-earn-toolbar{

        flex-direction:column;

        align-items:stretch;
    }

    .gegov-earn-toolbar input,
    .gegov-earn-toolbar select{

        width:100%;

        min-width:100%;
    }
}