:root {
    --customBlue: #0085FF;
    --customBlue-txt: #0085FF;
    --customBlue-bg: #E5F3FF;

    --customGreen: #00BA34;
    --customGreen-txt: #00BA34;
    --customGreen-bg: #E5F8EB;

    --customCoral: #ec6161;
    --customCoral-txt: #FF7B7B;
    --customCoral-bg: #FFEBEB;

    --customGrey: #878787;
    --customGrey-txt: #878787;
    --customGrey-bg: #e9e9e9;

    --customDarkGrey-bg: #252525;

    --customDarkGrey-2-bg: #1c1c1c;

    --customPurple: #9604DD;
    --customPurple-txt: #9604DD;
    --customPurple-bg: #F1D3FF;

    --customWhite-txt: #e1e1e1;
    --customWhite-hover: #3f3f3f;
}

.col-dsc-sm {
    color: var(--systemTertiary);
    font-size: var(--h6-fontSize);
    font-weight: 200;
    line-height: 1.4;
}

.col-dsc-code {
    font-size: var(--h6-fontSize);
    font-weight: 200;
    line-height: 1.6;

    background-color: var(--system-bg-secondary);
    color: var(--customCoral);
    border-radius: var(--systemSpacing-4);
    padding: var(--systemSpacing-2) var(--systemSpacing-8);

    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wght" 400, "wdth" 100, "opsz" 8;
}

.dsc-sm-link {
    color: var(--systemTertiary);
    font-size: var(--h6-fontSize);
    font-weight: 200;
    line-height: 1.4;
    text-decoration: underline;
}

.dsc-sm-link:hover {
    text-decoration: none;
}

.dsc-sm-code {
    font-size: var(--p-fontSize);
    background-color: var(--system-bg-secondary);
    color: var(--customCoral);
    border-radius: var(--systemSpacing-4);
    padding: var(--systemSpacing-2) var(--systemSpacing-8);

    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wght" 400, "wdth" 100, "opsz" 8;
}


@media screen and (max-width: 600px) {

    .col-dsc-sm {
        font-size: var(--p-fontSize);
    }

    .dsc-sm-link {
        font-size: var(--p-fontSize);
    }

    .dsc-sm-code {
        font-size: var(--ch-fontSize);
    }

    .col-dsc-code {
        font-size: var(--ch-fontSize);
    }
}