*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Inter,Segoe UI,Arial,sans-serif;

    background:#f4f7fb;

    color:#243447;


}

.layout{

    display:grid;

    grid-template-columns:280px 1fr;

    min-height:100vh;

}

.content{

    display:flex;

    flex-direction:column;

    gap:25px;

    padding:30px;

}
.bottom-layout{

    display:grid !important;

    grid-template-columns:2fr 1fr;

    gap:24px;

    align-items:start;

    width:100%;

}