@charset "utf-8";

/*
 ************************************************
	folderHorizon 'default.css' layout
    * Do not delete this file!
	* 'home' and 'archive' contexts have the same values
    See 'doc/documentation.html' file for more info
 ***********************************************/

:root {
    /* *****************************************/
    /* REM based on font-size: 16px            */
    /********************************************
    Page Wrapper size/position...
    ****************************/
    /*   Option: center|left   */
    --page-on-center: 0.75rem auto 5rem auto;
    --page-on-left: 0.75rem 0 5rem 9%;
    /* 69rem = 1104px          */
    --wrapper-home-width: 69rem;
    --wrapper-home-margin: var(--page-on-left);
    --wrapper-archive-width: var(--wrapper-home-width);
    --wrapper-archive-margin: var(--page-on-left);

    /********************************************
	Header margin bottom...
	****************************/
    --header-home-margin-bottom: 1.25rem;
    --header-archive-margin-bottom: var(--header-home-margin-bottom);

    /********************************************
    Header menu alignment: left|right
    ****************************/
    --header-home-menu-align: left;
    --header-archive-menu-align: var(--header-home-menu-align);

    /********************************************
	Page Content... 52.5rem = 840px
	****************************/
    --content-home-width: 52.5rem;
    --content-archive-width: var(--content-home-width);

    /********************************************
	Page aside... related to .wrapper/.content
	****************************/
    --aside-home-width: calc(var(--wrapper-home-width) - var(--content-home-width));
    --aside-archive-width: var(--aside-home-width);

    /********************************************
    Homepage...
    * figure caption: left indent
    * text: width
    ****************************/
    --home-caption-indent: 0;
    --home-article-width: 100%;
}