.modern-frame {
/* --bg-color из стилей шаблона; по умолчанию: var(--theme-bg-color-300) */
/* --alpha из стилей шаблона; по умолчанию: 30% */
--c-m-bg: color-mix(in srgb, var(--bg-color) var(--alpha), var(--theme-bg-color-100));
--c-m-border: color-mix(in srgb, var(--bg-color) 80%, transparent);
background: var(--bg-color);
display: flex;
flex-direction: column;
border-radius: var(--border-radius-medium);
}
.modern-frame__title {
position: relative;
display: flex;
align-items: center;
min-height: 32px;
padding: 2px 8px;
color: var(--theme-text-color-header);
font-family: var(--font-family-heading);
border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
border-top: 2px solid var(--color-lighter-alpha-x);
border-bottom: 3px solid var(--color-darkened-border);
}
.modern-frame__content {
border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
box-shadow: var(--box-shadow-inset-medium);
border: 2px solid var(--c-m-border);
background: var(--c-m-bg);
flex-grow: 2;
}