/*
Theme Name: CardioBeat
Theme URI: https://cardiobeat.ru
Author: CardioBeat
Author URI: https://cardiobeat.ru
Description: Современная медицинская тема для блога кардиолога.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: cardiobeat
*/

:root {

    --cb-red: #9E1B32;
    --cb-red-light: #b52b45;

    --cb-text: #182230;
    --cb-muted: #667085;

    --cb-bg: #F8F9FB;
    --cb-card: #ffffff;

    --cb-border: #E5E7EB;

    --cb-radius: 18px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin:0;

    background:
        var(--cb-bg);

    color:
        var(--cb-text);

    font-family:
        Inter,
        Arial,
        sans-serif;

    line-height:
        1.6;
}


a {

    color:
        inherit;

    text-decoration:
        none;
}


img {

    max-width:
        100%;

    height:
        auto;

    display:
        block;
}


.container {

    width:
        min(1200px, 92%);

    margin:
        0 auto;
}


h1,
h2,
h3 {

    font-family:
        Georgia,
        serif;

    line-height:
        1.25;

}