/***GLOBAL VARIABLES
*****************************************************/
:root {
/***TEXT***/
    /*--fontSize: clamp(1rem, 1.25vw, 1.5rem);*/
    --fontSizeSmall: 1rem;
    /*--fontSizeLarge: 1.1rem;*/
    --fontSizeMedium: 1.5rem;
    --fontSizeLarge: 2rem;
    --fontSizeXLarge: 3.5rem;
    --fontWeight: 400;
    --letterSpacing: -0.025em;
    --wordSpacing: 0em;
    --lineHeight: 1.1;
    --lineHeightLow: 0.9;

/***SPACES***/
    --spaceY: calc(var(--fontSizeSmall)*1);
    --spaceX: calc(var(--fontSizeSmall)*2);
    --bodySpaces: 0;
    --innerBlockGutter: calc(var(--spaceY)*0.5);
    --innerInlineGutter: calc(var(--spaceX)*0.5);
    --rowGutter: calc(var(--fontSizeMedium)*var(--lineHeight));
    --rowGutterDouble: calc(var(--rowGutter)*2);
    --rowGutterTriple: calc(var(--rowGutter)*3);
    --rowGutterLarge: calc(var(--fontSizeLarge)*var(--lineHeight));
    --rowGutterXLarge: calc(var(--fontSizeXLarge)*var(--lineHeight));
    --rowGutterSmall: calc(var(--fontSizeSmall)*var(--lineHeight));
    --colGutter: calc(var(--spaceX)*1.5);
    --mainTopSpace: calc(var(--spaceY)*2 + var(--rowGutter) + var(--borderWidth)*1);
	/*--betweenSectionsGutter:calc(var(--spaceY)*2 + var(--bubbleHeight) + var(--rowGutterSmall) + var(--borderWidth)* 4);*/
    --betweenSectionsGutter: calc(var(--spaceY)*2 + var(--bubbleHeight));
    --buttonsPadding: var(--innerBlockGutter) var(--innerInlineGutter);

/***SIZES***/
    /*--siteNameHeight: calc(var(--rowGutter) + var(--spaceY)*2);*/
    --bubbleHeight: calc(var(--rowGutter) + var(--innerBlockGutter)*2 + var(--borderWidth)*0);
    --headerHeight: calc(var(--bubbleHeight) + var(--spaceY)*1);
    --mainWidth: 100vw;
    /*--mainHeight: calc(100vh - var(--spaceY)*3 - var(--bubbleHeight)*2 - var(--borderWidth));*/
    --mainHeight: calc(100vh - var(--headerHeight));
    --sectionHeight: 80vh;
    --coverHeight: calc(100vh - var(--spaceY)*2 - var(--bubbleHeight)*2 - var(--borderWidth));
    --footerHeight: calc(100vh - var(--spaceY)*2 - var(--bubbleHeight));
    --footerHeightHome: calc(100vh - var(--spaceY)*4 - var(--bubbleHeight) - var(--rowGutter));

/***GRIDS***/
    --gridTemplate: repeat(5, 1fr);
    --gridTemplateTwo: repeat(2, 1fr);
    --gridTemplateThree: repeat(3, 1fr);
    --gridTemplateFour: repeat(4, 1fr);
    --gridTemplateEight: repeat(8, 1fr);
    --gridGap: 0 var(--innerInlineGutter);

/***COLOR***/
    --paletteWhite: #FFFFFF;
    --paletteGray: #DDDDDD;
    --paletteBlack: #000000;
    --paletteGreen: #00ff77;
    /*--paletteGreen: rgb(0, 255, 101);*/
    --paletteLightBlue: #b7c8e9;
    --paletteAlpha: transparent;
    --backColor: var(--paletteWhite);
    --textColor: var(--paletteBlack);
    --linkColor: var(--paletteBlack);
    --hoverColor: var(--paletteGreen);
    --activeColor: var(--paletteGreen);
    --buttonColor: var(--paletteGray);
    --opacityGray: rgba(200, 200, 200, 0.625);

/***DECORATION***/
    --linkDeco: underline;
    --borderWidth: 1px;
    --borderLine: var(--borderWidth) solid var(--paletteBlack);
    --borderRadius: var(--bubbleHeight);
    /*--borderRadius: 5px;*/
    --buttonEffect: blur(10px);
    --textShadow: 5px 5px var(--paletteBlack);

/***TRANSITION***/
    --transitionDuration: 0.15s;
    
}
  
/***FONTS
*****************************************************/
* {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
	text-size-adjust: 100%;
    -webkit-font-smoothing: smooth;
	-moz-font-smoothing: smooth;
    -moz-osx-font-smoothing: smooth;
	-ms-font-smoothing: smooth;
    -o-font-smoothing: smooth;
    text-rendering: geometricPrecision;
}
@font-face {
    font-family: Marfa Regular;
    src: url("https://www.malbapuertos.org.ar//ABCMarfa-Regular.woff");
}
@font-face {
    font-family: Marfa Regular Italic;
    src: url("https://www.malbapuertos.org.ar//ABCMarfa-RegularItalic.woff");
}
.font_size_S {
    font-size: var(--fontSizeSmall);
    line-height: var(--lineHeight);
}
.font_size_M {
    font-size: var(--fontSizeMedium);
    letter-spacing: var(--letterSpacing);
    line-height: var(--lineHeight);
}
.font_size_L {
    font-size: var(--fontSizeLarge);
    letter-spacing: var(--letterSpacing);
    line-height: var(--lineHeightLow);
}
.font_size_XL {
    font-size: var(--fontSizeXLarge);
    letter-spacing: var(--letterSpacing);
    line-height: var(--lineHeightLow);
}
/*
.font_size_XL {
    font-size: var(--fontSizeXLarge);
    line-height: var(--lineHeightLow);
}
*/
.font_size_S:not(.uppercase),
.font_size_M:not(.uppercase),
.font_size_L:not(.uppercase),
.font_size_XL:not(.uppercase) {
    letter-spacing: var(--letterSpacing);
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
i,
.italic {
    font-family: Marfa Regular Italic;
}
b {
    font-style: normal;
}
.same_line {
	white-space: nowrap;
}

/***RESET
*****************************************************/
::-webkit-scrollbar {
    display: none;
}
::-webkit-selection {
    color: var(--hoverColor);
    background-color: transparent;
}
::-moz-selection {
    color: var(--backColor);
    background-color: transparent;
}
::-ms-selection {
    color: var(--hoverColor);
    background-color: transparent;
}
::-o-selection {
    color: var(--hoverColor);
    background-color: transparent;
}
::selection {
    color: var(--hoverColor);
    background-color: transparent;
}
img::-webkit-selectio {
    color: transparent;
    background-color: transparent;
}
img::-moz-selection {
    color: transparent;
    background-color: transparent;
}
img::-ms-selection {
    color: transparent;
    background-color: transparent;
}
img::-o-selection {
    color: transparent;
    background-color: transparent;
}
img::selection {
    color: transparent;
    background-color: transparent;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    /*color-scheme: light dark;*/
    scroll-behavior: smooth;
}
body {
    position: relative;
    margin: var(--bodySpaces);
    color: var(--textColor);
    background: var(--backColor);
    font-family: Marfa Regular, Arial, Helvetica, sans-serif;
    font-size: var(--fontSizeMedium);
    line-height: var(--lineHeight);
}
ul {
    display: block;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}
li {
  display: inline;
}
a {	
    color: var(--linkColor);
    text-decoration: none;
    transition-property: color;
    transition-duration: var(--transitionDuration);
}
p a:hover {	
    color: var(--hoverColor);
    transition-property: color;
    transition-duration: var(--transitionDuration);
}
h1, h2, h3 {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding: 0;
    font-size: var(--fontSizeLarge);
    font-style: normal;
    font-weight: 400;
}
p {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}
/*
span {
    display: inline;
}
*/
form, input, textarea, submit,
iframe, embed, audio {
    margin: 0;
    padding: 0;
    color: var(--textColor);
    background: transparent;
    border: 0;
    outline: none;
    font: inherit;
    font-size: inherit;
}
input:focus, textarea:focus {
    outline: none;
}
input[name="submit"] {
	cursor: pointer;
}
:-webkit-input-placeholder {
	/*internet explorer*/
	color: var(--textColor);
}
::-moz-input-placeholder {
	/*mozilla edge*/
    color: var(--textColor);
}
::-ms-input-placeholder {
	/*microsoft edge*/
    color: var(--textColor);
}
::-o-input-placeholder {
	/*microsoft edge*/
    color: var(--textColor);
}
::placeholder {
	/*chrome, firefox, opera, safari*/
    color: var(--textColor);
}
img, video, iframe {
    vertical-align: middle;
}

/***LAZY LOAD
*****************************************************/
img,
video,
iframe {
    transition-property: opacity;
    transition-duration: var(--transitionDuration);
}
img.lazy,
video.lazy,
iframe.lazy {
    opacity: 0;
}
img.lazy.loaded,
video.lazy.loaded,
iframe.lazy.loaded {
    opacity: 1;
}

/***HEADER AND MENU
*****************************************************/
header {
    /*width: 100%;*/
    /*min-height: var(--headerHeight);*/
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /*
    left: var(--spaceX);
    */
    padding: var(--spaceY) var(--spaceX) calc(var(--borderWidth));
    display: flex;
    gap: 0 var(--spaceX);
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
header > * {
}
.site_name {
    width: 25%;
    display: flex;
    position: relative;
    justify-content: start;
    text-wrap: nowrap;
}
.site_name a {
    width: 100%;
    position: relative;
    /*transition-property: transform, width, opacity;*/
    transition-property: transform;
    transition-duration: var(--transitionDuration);
}
.site_name a:hover {
    transform: rotate(-3.33deg);
}
.site_name span.logo_letters {
	display: inline-block;
	width: auto;
    opacity: 1;
    transition-property: width, opacity;
    /*transition-duration: var(--transitionDuration);*/
}
.site_name.min span.logo_letters {
	width: 0;
    opacity: 0;
}
.menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
nav.main_menu {
    width: 50%;
}
nav.main_menu ul {
    display: flex;
    justify-content: center;
    gap: var(--borderWidth);
}
nav.secondary_menu {
    width: 25%;
}
nav.secondary_menu ul {
    display: flex;
    justify-content: end;
    /*gap: 0 var(--colGutter);*/
}
nav.main_menu li.menu_item,
nav.secondary_menu li.menu_item:not(.tag_button) {
    display: inherit;
    overflow: hidden;
}
nav.main_menu li.menu_item a,
nav.secondary_menu li.menu_item a:not(.tag_button) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
header .tag_button a {
	width: var(--bubbleHeight);
    height: var(--bubbleHeight);
    display: flex;
    justify-content: center;
    align-items: center;
}

/***MARQUEE***/
.marquee_container {
    position: -webkit-sticky;
    position: sticky;
    bottom: var(--rowGutter);
    z-index: 100;
    /*margin-top: calc(var(--spaceY)* 2 + var(--bubbleHeight) + var(--rowGutterSmall) + var(--borderWidth)* 4);*/
    margin-top: calc(var(--betweenSectionsGutter)*2);
}
.marquee {
    width: 100%;
    padding: var(--spaceY) var(--spaceX);
    display: flex;
    justify-content: start;
    gap: var(--inlineGutter);
    text-wrap: nowrap;
    overflow-x: hidden;
    color: var(--paletteWhite);
    background: var(--paletteBlack);
}
.marquee a {
    color: var(--paletteWhite);
}

/***BUBBLES***/
nav.main_menu li.menu_item a,
nav.secondary_menu li.menu_item a,
.tags_blocks a {
    padding: var(--buttonsPadding);
    background: var(--buttonColor);
    border-radius: var(--borderRadius);
    transition-property: color, background;
    transition-duration: var(--transitionDuration);
}
/*
nav.main_menu li.menu_item a,
nav.secondary_menu li.menu_item a {
	background: var(--opacityGray);
    backdrop-filter: var(--buttonEffect);
}
*/
nav.main_menu li.menu_item a:hover,
nav.secondary_menu li.menu_item a:hover {
    color: var(--paletteWhite) !important;
    background: var(--paletteBlack) !important;
    text-decoration: none;
}
nav.main_menu li.menu_item a.active,
nav.secondary_menu li.menu_item a.active {
    /*padding: var(--buttonsPadding);*/
    color: var(--paletteWhite);
    background: var(--paletteBlack);
}
.tags_blocks {
    /*min-height: var(--rowGutter);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--borderWidth);
    position: -webkit-sticky;
    position: sticky;
    top: var(--mainTopSpace);
    z-index: 50;
    padding-inline: var(--spaceX);
    padding-block: 0 var(--borderWidth);
    /*padding-block: 0 var(--spaceY);*/
}
/*
body#home .tags_blocks,
article.single .tags_blocks {
	padding-block: 0 var(--borderWidth);
}
body#home .tags_blocks {
	padding-block: 0 var(--borderWidth);
}
article.single .tags_blocks {
	padding-block: 0 var(--borderWidth);
}
*/
.tags_title {
    position: -webkit-sticky;
    position: sticky;
    top: var(--mainTopSpace);
    z-index: 75;
    pointer-events: none;
}
.tags_title .tags_blocks {
    margin-bottom: var(--borderWidth);
}
.tags_title .tags_blocks span {
    color: var(--paletteWhite);
    background: var(--paletteBlack);
}
.tags_blocks span {
    padding: var(--buttonsPadding);
    background: var(--paletteGray);
    /*border: var(--borderLine);*/
    border-radius: var(--borderRadius);
}
.tags_blocks span.active {
    color: var(--paletteBlack);
    background: var(--activeColor);
}
section.active .tags_blocks a {
    color: var(--paletteBlack);
    background: var(--activeColor);
}
section:not(.active) .tags_blocks a:hover {
    color: var(--textColor) !important;
    background: var(--hoverColor) !important;
}
section.active .tags_blocks a:hover {
    color: var(--paletteWhite) !important;
    background: var(--paletteBlack) !important;;
}
.tags_blocks a.active {
    color: var(--paletteBlack);
    background: var(--activeColor);
}
.tags_blocks a.active:hover {
	color: var(--paletteWhite) !important;
    background: var(--paletteBlack) !important;
}
/*
.tags_blocks a.active:hover,
body#single_article .tags_blocks a:hover {
	color: var(--paletteWhite) !important;
    background: var(--paletteBlack) !important;
}
*/
.tags_wall .tags_blocks {
    padding-inline: var(--spaceX);
    padding-block: 0;
}
.tags_wall .tags_blocks a:hover {
    color: var(--textColor) !important;
    background: var(--activeColor) !important;
}
body#tags .tags_wall:not(:first-child) {
    /*margin-top: calc(var(--bubbleHeight) + var(--borderWidth))*/;
    margin-top: var(--borderWidth);
}
.bubble.compressed {
    height: var(--bubbleHeight);
    width: var(--bubbleHeight);
    padding: var(--innerBlockGutter) 0;
    /*padding: var(--buttonsPadding);*/
    display: flex;
    justify-content: center;
}
.bubble.expanded {
    height: var(--bubbleHeight);
    width: 100%;
    padding: var(--buttonsPadding);
}

/***INTRO MASK
*****************************************************/
.mask {
    -webkit-mask-image: url(../media/vector/cirlces.svg);
    mask-image: url(../media/vector/cirlces.svg);
    mask-repeat: no-repeat;
  }

/***MAIN CONTENT
*****************************************************/
main.content {
    max-width: var(--mainWidth);
    min-height: var(--mainHeight);
    position: relative;
    /*margin-inline: auto;*/
}
main.content:not(.home):not(.tags) {
	padding-bottom: var(--betweenSectionsGutter);
}
main.content.tags {
	padding-bottom: calc(var(--betweenSectionsGutter)*2);
}
section {
    position: relative;
}
/*
section > article:not(.sheet_row) {
    margin-bottom: calc(var(--rowGutter) + var(--borderWidth)*2);
}
*/

/***HOME***/
section.intro,
section.visit article,
section.expos article,
section.program article,
section.collection article,
section.public_art article,
section.expo article {
    /*width: var(--mainWidth);*/
    position: relative;
}
/*
section.intro {
    height: var(--mainHeight);
}
*/
section.expo {
    /*padding-top: var(--headerHeight);*/
}
section article .header {
    padding: var(--spaceY) var(--spaceX);
    text-align: center;
}

/***HOME COVERS***/
section article .multimedia.cover {
    height: var(--coverHeight);
    padding-inline: calc(var(--spaceX)*1); 
    margin-top: var(--spaceY);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
section article .multimedia.cover .cover_header {
    width: 800px;
    /*height: 100%;*/
    padding: var(--spaceY) var(--spaceX);
    text-align: center;
    position: absolute;
    /*text-decoration: underline var(--paletteWhite);*/
    /*
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    */
    /*text-shadow: var(--textShadow)*/
}
/* 
section article .multimedia.cover .cover_header p {
    color: var(--paletteWhite);
}
*/
section article .multimedia.cover .cover_header a {
	color: white;
    text-shadow: 1px 0px black;
    transition: color var(--transitionDuration);
}
section article .multimedia.cover .cover_header a:hover {
    color: var(--hoverColor);
}
section article .multimedia.cover .cover_header .cover_names span:not(:last-child):after {
    content: ",";
}
section.intro .media,
.multimedia.cover .media {
    width: 100%;
    height: 100%;
    /*
    position: absolute;
    top: 0;
    left: 0;
    */
    object-fit: cover;
}
section.intro .media img,
section.intro .media video,
.multimedia.cover .media img,
.multimedia.cover .media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section article .multimedia.grid {
    width: 100%;
    display: flex;
    gap: 0 var(--colGutter);
    position: relative;
    margin-top: var(--rowGutterDouble);
}
.multimedia.grid .media,
.multimedia.grid .media img {
    width: 100%;
    height: 100%;
}

/***DATA***/
section > article .data {
    padding-bottom: var(--betweenSectionsGutter);
}
.data {
    padding: var(--spaceY) var(--spaceX);
}
.data a {
    text-decoration: var(--linkDeco);
    transition: color var(--transitionDuration);
}
.data a:hover {
	color: var(--hoverColor);
}
.text .superscript {
	display: inline;
	vertical-align: super;
    padding-top: 1px;
}
.data_sheet {
    margin-top: var(--rowGutterDouble);
    text-decoration: underline;
}
/*
.bio {
    margin-top: var(--rowGutterDouble);
}
*/

/***INDEX SHEET***/
/*
.program {
    margin-bottom: var(--rowGutterDouble);
}
*/
.index_sheet {
    /*
    width: calc(100% - var(--spaceX)*2);
    margin-left: var(--spaceX);
    */
    padding: 0 var(--spaceX);
    /*margin-bottom: calc(var(--rowGutter) + var(--borderWidth)* 2);*/
}
/*
body#home .program_sheet .program_rows {
	margin-top: var(--spaceY);
}
*/
.index_sheet .index_rows {
	margin-top: var(--spaceY);
    padding-bottom: var(--betweenSectionsGutter);
}
.index_sheet .sheet_row{
	position: relative;
    border-top: var(--borderLine);
    display: grid;
    grid-template-columns: var(--gridTemplate);
    grid-gap: var(--gridGap);
    padding-block: var(--innerBlockGutter);
    /*border-bottom: var(--borderLine);*/
}
.index_sheet .sheet_row > * {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index_sheet .sheet_row:last-child {
    border-bottom: var(--borderLine);
}
.index_sheet .sheet_row.no_results:not(:first-child) {
    display: none;
}
.index_sheet a.sheet_link {
    grid-column: 1/5;
    display: grid;
    grid-template-columns: var(--gridTemplateEight);
    grid-gap: var(--gridGap);
}
.index_sheet a.sheet_link > * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index_sheet .sheet_type {
    grid-column: 1/2;
}
.index_sheet .sheet_authorship {
    grid-column: 2/4;
}
.index_sheet .sheet_authorship span:not(:last-child):after {
    content: ", ";
}
.index_sheet .sheet_title {
    grid-column: 4/7;
}
.index_sheet .sheet_date {
    grid-column: 7/9;
}
.index_sheet .sheet_title span,
.index_sheet .sheet_title span a {
    width: 100%;
    /*display: inline-block;*/
}
.sheet_row .sheet_thumb {
    width: calc(var(--bubbleHeight)*5 - var(--borderWidth)*5);
    height: calc(var(--bubbleHeight)*4 - var(--borderWidth)*4);
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    z-index: 50;
    opacity: 0;
    transition: opacity var(--transitionDuration);
    pointer-events: none;
}
.sheet_row .sheet_thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sheet_link:hover .sheet_thumb {
    opacity: 1;
}
.program_sheet .sheet_tags,
.index_sheet .sheet_tags {
    grid-column: 5/6;
    /*text-align: right;*/
}
.sheet_tags span:not(:last-child):after {
    content: ", "
}
.sheet_tags a {
    text-decoration: var(--linkDeco);
    transition: color var(--transitionDuration);
}
.sheet_tags a:before {
    content: "#";
}
.sheet_tags a:hover {
    color: var(--hoverColor);
}

/***TAGS LIST***/
/*
.tags {
    margin-top: calc(var(--headerHeight)*2);
}
*/

/***SINGLE ARTICLE
*****************************************************/
article.single {
	display: grid;
    grid-template-columns: var(--gridTemplate);
    grid-gap: var(--gridGap);
    padding-inline: calc(var(--spaceX)*1);
    margin-top: var(--spaceY);
}
article.single .tags_blocks {
	grid-column: 1/6;
}
article.single .article_header span.author:not(:last-child):after {
	content: ", ";
}
article.single .media {
	grid-column: 2/5;
}
article.single .media .slider {
	width: 100%;
	height: auto;
	position: relative;
    margin-bottom: var(--spaceY);
}
.media .slider .slides {
	width: 100%;
	/*height: 100%;*/
	position: relative;
}
.slider .slides .slide {
	width: 100%;
	height: 100%;
	/*position: absolute;*/
}
.slider .slides .slide:not(.active) {
    display: none;
	/*opacity: 0;*/
}
.slider .slides .slide.active {
    display: inline-block;
	/*opacity: 1;*/
}
.slider .slides .slide img {
	width: 100%;
	height: 100%;
    object-fit: contain;
}
.slider_nav {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	display: flex;
	justify-content: space-between;
    /*display: none;*/
}
.slider_nav .prev,
.slider_nav .next {
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.slider_footer {
	margin-bottom: var(--spaceY);
}
/*
.slider_footer .count,
.slider_footer .captions {
	display: flex;
	justify-content: center;
    align-items: center;
}
*/
.slider_footer .count {
	width: 100%;
	height: 25px;
	text-align: center;
    display: none;
}
.slider_footer .captions {
	width: 100%;
    display: none;
}
article.single .data {
	grid-column: 2/5;
    padding: 0;
    padding-bottom: var(--betweenSectionsGutter);
    /*
    display: flex;
    flex-direction: column;
    row-gap: var(--rowGutter);
    */
}
article.single .data .text p:not(:first-child) {
	text-indent: calc(var(--spaceX)*1.25);
}
article.single .data .embed {
	aspect-ratio: 16 / 9;
	width: 100%;
    margin-block: calc(var(--rowGutter)*2) var(--rowGutter);  
}
article.single .data .embed .module_header {
    margin-bottom: var(--rowGutter); 
}
article.single .data .annex {
	display: grid;
    grid-template-columns: var(--gridTemplateTwo);
    grid-gap: 0 var(--colGutter);
}
.data .annex .annex_text,
.data .annex .annex_data {
	margin-top: var(--rowGutter);
}
.annex_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: var(--borderWidth);
    z-index: 50;
}
.annex_buttons a {
    padding: var(--buttonsPadding);
    background: var(--buttonColor);
    border-radius: var(--borderRadius);
    /*
    backdrop-filter: var(--buttonEffect);
    */
    transition-property: color, background;
    transition-duration: var(--transitionDuration);
}
.annex_buttons a:hover {
    color: var(--paletteWhite);
    background: var(--paletteBlack);
}

/***THUMBNAIL GRID***/
section.thumb_grid {
    display: grid;
    grid-template-columns: var(--threeColsGrid);
    grid-gap: var(--gridGap);
}
article.thumb .thumb_media {
    display: flex;
    justify-content: center;
    align-items: center;
}
article.thumb .thumb_media img {
    width: 100%;
    max-height: auto;
    object-fit: contain;
    object-position: center;
}
article.thumb .thumb_data {
    margin-top: calc(var(--rowGutter)*0.25);
}

/***FOOTER
*****************************************************/
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*
    grid-template-columns: var(--gridTemplate);
    grid-gap: var(--gridGap);
    */
    justify-content: center;
    /*align-items: end;*/
    padding: var(--spaceY) var(--spaceX);
    color: var(--paletteWhite);
    background: var(--paletteBlack);
    text-align: center;
}
footer .footer_contact {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .footer_contact p {
    margin-top: calc(var(--spaceY)*-2);
}
footer nav.social ul {
    display: flex;
    justify-content: center;
    gap: var(--borderWidth);
}
footer nav.social li.social_item {
    display: inherit;
    overflow: hidden;
}
footer nav.social li.social_item a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
footer nav.social .social_item a {
	padding: var(--buttonsPadding);
    color: var(--textColor);
    background: var(--paletteGray);
    border-radius: var(--borderRadius);
    transition-property: color, background;
    transition-duration: var(--transitionDuration);
}
footer nav.social .social_item a:hover {
	color: var(--textColor);
    background: var(--paletteWhite);
}
body#home footer {
    height: var(--footerHeightHome);
}
body:not(#home) footer {
    height: var(--footerHeight);
    /*margin-top: calc(var(--betweenSectionsGutter)*2);*/
}
footer a {
    color: var(--paletteWhite);
}
nav.footer_menu ul li {
    display: block;
}