.search-card{

    margin-top:40px;

    width:420px;

    background:white;

    border-radius:24px;

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:16px;

    box-shadow:var(--shadow-md);

}

.search-item{

    background:#F8FAFC;

    padding:16px;

    border-radius:16px;

    font-size:17px;

    color:var(--text);

}

.search-button{

    border:none;

    background:var(--accent);

    color:white;

    padding:18px;

    border-radius:18px;

    font-size:18px;

    cursor:pointer;

    transition:.25s;

}

.search-button:hover{

    transform:translateY(-2px);

}
.widget-container{

    width:min(95%,1100px);

    margin:40px auto;

}

.widget-box{

    min-height:420px;

    background:white;

    border-radius:32px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    font-weight:700;

}
.widget-area{

    max-width:1200px;

    margin:40px auto;

    padding:20px;

}

.widget-placeholder{

    background:white;

    border-radius:24px;

    padding:50px;

    box-shadow:var(--shadow-md);

}