/*
	* Theme Name: Custom Theme
	* Description: Custom child theme by Paul Ruocco using the Salient parent theme. Optimized for WCAG, ADA compliance, SEO, and speed.
	* Theme URI: https://paulruocco.com/
	* Author: ThemeNectar/Paul Ruocco
	* Author URI: https://paulruocco.com/
	* Template: salient
	* Version: 5.0
*/

@import url('helpers.css');

/* -----------------------------------------------------------
    Variables — Color palette
------------------------------------------------------------ */

:root {
    /* ___(match to Salient "Accent" color) */
    --color-accent: ;
    --color-accent-dk: ;
    --color-accent-lt: ;
    --color-accent-rgb: ;

    /* ___(match to Salient "Extra Color 1") */
    --color-primary: ;
    --color-primary-dk: ;
    --color-primary-lt: ;
    --color-primary-rgb: ;

    /* ___(match to Salient "Extra Color 2") */
    --color-secondary: ;
    --color-secondary-dk: ;
    --color-secondary-lt: ;
    --color-secondary-rgb: ;

    /* ___(match to Salient "Extra Color 3") */
    --color-tertiary: ;
    --color-tertiary-dk: ;
    --color-tertiary-lt: ;
    --color-tertiary-rgb: ;

    /* ___ */
    --color-light: ;
    --color-light-dk: ;
    --color-light-lt: ;
    --color-light-rgb: ;

    /* ___ */
    --color-dark: ;
    --color-dark-dk: ;
    --color-dark-lt: ;
    --color-dark-rgb: ;
}

/* -----------------------------------------------------------
    Variables — Semantic colors
------------------------------------------------------------ */

:root {
    /* Success */
    --color-success: ;
    --color-success-dk: ;
    --color-success-lt: ;
    --color-success-rgb: ;

    /* Info */
    --color-info: ;
    --color-info-dk: ;
    --color-info-lt: ;
    --color-info-rgb: ;

    /* Warning */
    --color-warning: ;
    --color-warning-dk: ;
    --color-warning-lt: ;
    --color-warning-rgb: ;

    /* Danger */
    --color-danger: ;
    --color-danger-dk: ;
    --color-danger-lt: ;
    --color-danger-rgb: ;

    /* Terminal */
    --color-terminal: ;
    --color-terminal-dk: ;
    --color-terminal-lt: ;
    --color-terminal-rgb: ;
}

/* -----------------------------------------------------------
    Variables — Gradients
------------------------------------------------------------ */

:root {
    /* Gradient, Accent */
    --gradient-1: linear-gradient(0deg, var(--color-accent) 0%, var(--color-accent-lt) 65%);

    /* Gradient, Primary */
    --gradient-lt: linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary-lt) 65%);
    
    /* Gradient, Light */
    --gradient-1: linear-gradient(0deg, var(--color-dark) 0%, var(--color-dark-lt) 65%);

    /* Gradient, Dark */
    --gradient-lt: linear-gradient(0deg, var(--color-light) 0%, var(--color-light-lt) 65%);
}

/* -----------------------------------------------------------
    Variables — Typography
------------------------------------------------------------ */

:root {
    --font-heading: "", Arial, sans-serif; /* Set the font for headings, keeping Arial and sans-serif as fallback options */
    --font-body: "", Arial, sans-serif; /* Set the font for body copy, keeping Arial and sans-serif as fallback options */
    --font-body-color: ""; /* Set the salient body font color and this to match */
	--font-code: "Lucida Console", monospace; /* System font, do not change */
}

/* -----------------------------------------------------------
    Site-specific
------------------------------------------------------------ */

.nectar-post-grid-wrap:not([data-style=content_overlaid]) .nectar-post-grid .nectar-post-grid-item .content {
    padding: 25px 10px !important;
}

