/*

Theme Name: JF CV Theme

Author: Joana Franco

Description: Theme for Joana Franco's website.

Version: 1.0

*/

/*-------------------------------------------------------------------------------
0. VARIABLES
-------------------------------------------------------------------------------*/

:root {
    --color-light: rgb(255, 255, 255);
    --color-mid: rgb(240, 240, 240);
    --color-dark: rgb(0, 0, 0);
    --unit-L: 100px;
    --unit-M: 60px;
    --unit-S: 20px;
    --unit-XS: 10px;
    --content-wrapper-padding: 20px;
    --nav-side-width: 250px;
    --fontsize-S: 12px; /* 9pt */
    --fontsize-M: 16px; /* 12pt */
    --fontsize-L: 32px; /* 24pt */
    --border: 1px solid var(--color-dark);

}

/*-------------------------------------------------------------------------------
1. GENERAL
-------------------------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: "Inter", sans-serif;
    font-size: 9pt;
    font-weight: 300;
    line-height: 1.6;
    color: black;
}

main {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 50px;
}

a {
    color: inherit;
    text-decoration: underline;
}

h1 {
    font-size: 12pt;
    margin-bottom: 50px;
}

h2 {
    text-transform: lowercase;
    font-size: 9pt;
    font-weight: 600;
    margin-bottom: 50px;
}

h3 {
    font-size: 10pt;
    font-weight: 600;
}

.grupo-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 200px;
}

.item-categorias {
    font-size: 8pt;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    color: blue;
}

.item-ano, .item-parceria {
    display: inline-block;
    vertical-align: top;
    font-size: 9pt;
    font-weight: 400;
    line-height: 1.4;
}

.item-ano {
}

.item-info {
}

.estrela {
    font-size: 10pt !important;
    line-height: 1;
}