body {
    margin: 0;
    background: #f0f2f7;
    color:#313133;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.main {
    max-width: 980px;
    margin: 0 auto;
    padding:50px;
}
.top {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    font-size:13px;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:#2a41a5;
}
.top::before {
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background: #2a41a5;
    box-shadow:0 0 0 6px #96a2c9;
}

h1 {
    line-height: 1.15;
    margin:10px;
    letter-spacing: -0.02em;
}

.brief {
    max-width: 62ch;
    color:#5c5c5e;
    font-size: 17px;
}

 /* Card layout */
 .card {
    background:white;
    border-radius: 20px;
    box-shadow: #5a5f66;
    overflow:hidden;
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
 }

.visual {
    padding: 4px;
    background:#fcfeff;
    border-right: 1px solid rgb(218, 218, 221);
}


.figure {
    aspect-ratio: 4 / 3;
    border:1px dashed #435f83;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.caption {
    margin-top: 3px;
    color:#5c5c5e;
    font-size: 14px;
    padding:10px;
}






 img {
    height:300px;
    width:auto;
 }