.regext-page{
    padding:60px 0 90px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f2f6fb 100%
        );
}

/* HERO */

.regext-hero{
    margin-bottom:70px;
}

.regext-hero-content h1{
    font-size:64px;

    font-weight:900;

    line-height:1.1;

    color:#16315c;

    margin-bottom:24px;
}

.regext-hero-content p{
    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:34px;
}

.regext-hero-image img{
    width:100%;

    border-radius:34px;

    object-fit:cover;

    box-shadow:
        0 18px 45px rgba(15,23,42,.08);
}

/* STATS */

.hero-stats{
    display:flex;

    gap:24px;
}

.hero-stat{
    min-width:140px;

    padding:24px;

    border-radius:24px;

    background:white;

    border:1px solid #e7edf5;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.hero-stat h3{
    font-size:38px;

    font-weight:900;

    color:#16315c;

    margin-bottom:6px;
}

.hero-stat span{
    color:#64748b;
}
/* =========================================
TABLE
========================================= */

.regext-table-wrapper{
    background:white;

    border-radius:34px;

    overflow:hidden;

    border:1px solid #e7edf5;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.regext-table{
    width:100%;

    border-collapse:collapse;
}

.regext-table thead{
    background:#f8fbff;
}

.regext-table thead th{
    height:74px;

    padding:0 26px;

    font-size:15px;

    font-weight:800;

    color:#16315c;

    border-bottom:1px solid #e7edf5;
}

.regext-table tbody td{
    padding:24px 26px;

    border-bottom:1px solid #eef2f7;

    vertical-align:middle;
}

.regext-table tbody tr:last-child td{
    border-bottom:none;
}

.regext-table tbody tr{
    transition:.3s;
}

.regext-table tbody tr:hover{
    background:#f8fbff;
}

/* NUMBER */

.table-number{
    width:42px;
    height:42px;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;
}

/* TITLE */

.table-title{
    display:flex;

    align-items:center;

    gap:18px;
}

.table-icon{
    width:58px;
    height:58px;

    border-radius:18px;

    background:#fff1f2;

    color:#dc2626;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;
}

.table-title h5{
    font-size:18px;

    line-height:1.7;

    font-weight:700;

    color:#16315c;

    margin:0;
}

/* DATE */

.table-date{
    color:#64748b;

    font-weight:600;
}

/* ACTIONS */

.table-actions{
    display:flex;

    gap:12px;
}

.table-btn{
    height:46px;

    padding:0 20px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    transition:.3s;
}

.table-btn.primary{
    background:#002f6c;

    color:white;
}

.table-btn.secondary{
    background:#eff6ff;

    color:#2563eb;
}

.table-btn:hover{
    transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .regext-table{
        min-width:900px;
    }

}
/* EMPTY */

.regext-empty{
    grid-column:1/-1;

    text-align:center;

    padding:120px 20px;
}

.regext-empty i{
    font-size:80px;

    color:#cbd5e1;

    margin-bottom:24px;
}

.regext-empty h3{
    font-size:34px;

    font-weight:800;

    color:#16315c;

    margin-bottom:14px;
}

.regext-empty p{
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:992px){

    .regext-hero-content h1{
        font-size:46px;
    }

}

@media(max-width:768px){

    .regext-page{
        padding:40px 0 60px;
    }

    .regext-grid{
        grid-template-columns:1fr;
    }

    .regext-card{
        padding:26px;
    }

    .regext-actions{
        flex-direction:column;
    }

    .regext-hero-content h1{
        font-size:38px;
    }

}