/******************************************************************************/
/*                                                                            */
/* article-11pt.css - Size overrides for 11pt article layout                  */
/* =========================================================                  */
/*                                                                            */
/* Load this stylesheet AFTER article.css to produce an 11pt article.         */
/*                                                                            */
/* Values derived from the LaTeX article class at 11pt:                       */
/*                                                                            */
/*   \normalsize    = 11pt     (10.95pt in LaTeX, rounded)                    */
/*   \baselineskip  = 13.6pt   (ratio 1.236)                                 */
/*   \footnotesize  = 9pt      (8.95pt in LaTeX, rounded)                    */
/*   \scriptsize    = 8pt      (used for footnote markers)                    */
/*   Page margins   ~ 3.25cm   (interpolated between 10pt and 12pt)          */
/*                                                                            */
/* This program is part of the Rexx Parser package                            */
/* [See https://rexx.epbcn.com/rexx-parser/]                                  */
/*                                                                            */
/* Copyright (c) 2024-2026 Josep Maria Blasco <josep.maria.blasco@epbcn.com>  */
/*                                                                            */
/* License: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)  */
/*                                                                            */
/* Version history:                                                           */
/*                                                                            */
/* Date     Version Details                                                   */
/* -------- ------- --------------------------------------------------------- */
/* 20260310    0.5  First version.                                            */
/*                                                                            */
/******************************************************************************/

:root {
  --doc-font-size:        11pt;
  --doc-line-height:      1.24;
  --doc-footnote-size:    9pt;
  --doc-fn-marker-size:   6.5pt;
  --doc-pre-size:         7.9pt;
}

/******************************************************************************/
/* @page overrides                                                            */
/* var() may not work inside @page rules, so we use literal values.           */
/******************************************************************************/

@page {

  margin: 3.25cm;

  @bottom-center {
    font-size: 11pt;
  }

}