Preview
HTML
<article>
<p class="thumb" aria-hidden="true">Aa</p>
<div>
<h1>Media</h1>
<p>The figure keeps its size. The text fills the rest.</p>
</div>
</article>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
article {
display: flex;
gap: 1rem;
align-items: flex-start;
max-width: 26rem;
}
.thumb {
display: grid;
place-items: center;
width: 3.2rem;
height: 3.2rem;
margin: 0;
border-radius: 0.8rem;
background: var(--accent);
color: var(--on-accent);
font-weight: 800;
}
h1,
p {
margin: 0;
}
h1 {
font-size: 1.1rem;
}