:root {
	--sm-primary: #0B3276;
	--sm-secondary: #330C65;
	--sm-tertiary: #560606;
	--sm-neutral-accent: #804103;

	--sm-text: #262626;
	--sm-link: #1F44BD;
	--sm-accent: #D55918;
	--sm-black: #000000;
	--sm-white: #FFFFFF;

	--sm-pagination: #B7B7B7;
	--sm-pagination-active: #5B5B5B;

	--sm-heading: #262626;
	--sm-heading-blue: #152C54;
	--sm-heading-blue-alt: #163B7A;
	--sm-heading-dark: #0F1B36;
	--sm-text-white-soft: #F2F2F2;

	--sm-font-body: 'TWK Issey', sans-serif;
	--sm-font-heading: 'Adobe Garamond Pro', Georgia, serif;
}

* {
    box-sizing: border-box;
}
html {
    height: 100%;
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

@media only screen and (min-width: 1921px) {
    html {
        font-size: 0.833vw;
    }
}

body {
    color: var(--sm-text);
    font-family: var(--sm-font-body);
	font-size: 1.563rem; /* 25px */
	line-height: 110%; /* 27.5px */
	font-weight: 400;
    height: 100%;
    margin: 0;
    min-height: 100%;
}
p{
	letter-spacing: .156rem; /* 2.5px */
}
@media only screen and (max-width:767px) {

	body{
		font-size: .875rem; /* 14px */
		line-height: 100%; /* 14px */
	}

}
body.no-scroll{ 
	overflow: hidden;
}
/* Visually hidden (screen reader only) utility */
.sr-only,
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
img, svg {
    vertical-align: middle;
	max-width: 100%;
	height: auto;
}
.media img{
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 0.4s all ease;
}
.image-hover img{
    transition: 0.4s all ease;
	transform: scale(1);
}
.image-hover:hover img{
    transform: scale(1.10);
}
.icon-hover .card-icon{
    position: relative;
    transition: 0.3s all ease;
    left: 0;
}
.icon-hover:hover .card-icon{
    left: .9375rem;
}
.media picture{
    width: 100%;
    height: 100%;
	max-height: 100%;
	display: block;
}
svg path{
    transition: 0.3s all ease;
}
iframe, video {
	width: 100%;
    max-width: 100%;
    height: 100%;
	object-fit: cover;
}
#page {
	overflow-x: clip;
}

a{
	color: var(--sm-link);
	font-weight: 400;
    text-decoration: underline;
    transition: 0.3s all ease;
    outline: none;
	box-shadow: none;
}
button, input, textarea, select {
    outline: none;
	box-shadow: none;
}
a[href^=tel] {
    text-decoration: inherit;
}
.underline-text{
	text-decoration: underline;
}
p{
    margin-top: 0;
    margin-bottom: 0.9375rem; /* 15px */
}
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
}

p strong,
b {
    font-weight: 600;
}
h1,.h1-style, 
h2,.h2-style,
h3,.h3-style,
h4,.h4-style,
h5,.h5-style,
h6,.h6-style {
	color: var(--sm-heading);
	font-family: var(--sm-font-heading);
	margin-top: 0;
	margin-bottom: 0.9375rem; /* 15px */
	font-weight: 400;
}

h1,
.h1-style {
	font-family: var(--sm-font-heading);
	font-size: 1.25rem; /* 20px */
	font-style: italic;
	font-weight: 400;
	line-height: 200%; /* 40px */
	letter-spacing: .125rem; /* 2px */
}

h2,
.h2-style {
	font-family: var(--sm-font-body);
	font-size: 1.5625rem; /* 25px */
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 27.5px */
	letter-spacing: .156rem; /* 2.5px */
	text-transform: uppercase;
}
h3,
.h3-style {
	font-family: var(--sm-font-body);
	font-size: 1.75rem; /* 28px */
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 30.8px */
	letter-spacing: 0.56px;
	text-transform: uppercase;
}
h4,
.h4-style {
	font-size: 1.6875rem;  /* 27px */
	line-height: 133.333%; /* 36px */
}
h5,
.h5-style,
.author-archive__content h2 {
	font-size: 1.5rem; /* 24px */
	line-height: 150%; /* 36px */
}
h6,.h6-style {
	font-size: 1.1875rem; /* 19px */
	line-height: 120%;
}
@media only screen and (max-width: 767px) {

	
}
.card-grid{
	display: grid;
	gap: 1.25rem; /* 20px */
	align-items: stretch; /* Force all cards to equal height */
}
.columns-3{
	grid-template-columns: repeat(3, 1fr);
}
.columns-2{
	grid-template-columns: repeat(2, 1fr);
}
.columns-4{
	grid-template-columns: repeat(4, 1fr);
}
.columns-5{
	grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width:991px) {

	.columns-4,
	.columns-5{
		grid-template-columns: repeat(3, 1fr);
	}
	.columns-4 .content-card:last-of-type{
		grid-column: span 3;
	}
}
@media only screen and (max-width:767px) {
	
	.columns-2{
		grid-template-columns: repeat(1, 1fr);
	}
	.columns-3{
		grid-template-columns: repeat(1, 1fr);
	}
	.columns-4,
	.columns-5{
		grid-template-columns: repeat(1, 1fr);
	}
	.columns-4 .content-card:last-of-type{
		grid-column: inherit;
	}

}

.layout-padding {
	padding-left: 1.25rem; /* 20px */
	padding-right: 1.25rem; /* 20px */
}

.layout-margin {
	margin-left: 1.25rem; /* 20px */
	margin-right: 1.25rem; /* 20px */
}


@media only screen and (max-width: 767px) {
	
	.layout-padding.layout-padding0 {
		padding-left: 0;
		padding-right: 0;
	}
	.layout-padding-mobile {
		padding-left: 1.25rem; /* 20px */
		padding-right: 1.25rem; /* 20px */
	}
	.layout-margin-mobile {
		margin-left: 1.25rem; /* 20px */
		margin-right: 1.25rem; /* 20px */
	}
}

@media only screen and (min-width: 1200px) {
	
	.layout-padding {
		padding-left: 1.25rem; /* 20px */
		padding-right: 1.25rem; /* 20px */
	}
	.layout-margin {
		margin-left: 1.25rem; /* 20px */
		margin-right: 1.25rem; /* 20px */
	}
}
@media only screen and (min-width: 1600px) {

	.layout-padding{
        padding-left: 1.25rem; /* 20px */
		padding-right: 1.25rem; /* 20px */
    }
	.layout-margin{
        margin-left: 1.25rem; /* 20px */
		margin-right: 1.25rem; /* 20px */
    }

}


/* BreadCrumb Style */

.sm-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: .3125rem;
	margin-top: 1.563rem; /* 25px */
	margin-bottom: .625rem;
	color: var(--sm-primary);
}


.btns{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5625rem; /* 25px */
    row-gap: 1.5625rem; /* 25px */
}
/* Button Base Styles */
.site-btn {
	display: inline-flex;
	padding: 1.563rem 5.375rem; /* 25px 86px */
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
	font-family: var(--sm-font-body);
	font-size: 1.688rem; /* 27px */
	font-style: normal;
	font-weight: 700;
	line-height:  133.333%; /* 36px */
}
.btn-radius{
	border-radius: .25rem; /* 4px */
}
.btn-primary {
	background-color: #0A2B4F;
	color: var(--sm-white);
}
.btn-secondary{
	background-color: var(--sm-accent);
	color: var(--sm-white);
}


.error-404 .site-btn{
	margin-left:auto;
	margin-right:auto;
}
/* Global Submit Field Wrapper with Icon */

.action-field {
	display: flex;
	margin-bottom: 0;
	column-gap: 1.25rem; /* 20px */
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5625rem; /* 25px */
}
@media only screen and (max-width:767px) {

	.action-field {
		flex-direction: column;
		margin-bottom: 0;
		row-gap: 1.25rem; /* 20px */
		justify-content: center;
		align-items: center;
		margin-top: 0;
	}
}


/*
============================================================
404 Error Page Styles
============================================================
*/

/* 404 Page Main Container */
.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 404 Content Wrapper */
.error-404-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
}

/* CAA Character Image Container */
.error-404-character {
    margin-bottom: 2rem; /* 32px */
}
/* CAA Character Image Styling */
.caa-character-404 {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}
.caa-character-404:hover {
    transform: translateY(-2px);
}

/* 404 Page Header */
.error-404 .page-title {
    margin-bottom: 0.5rem; /* 8px */
}

/* 404 Page Content */
.error-404 .page-content {
    width: 100%;
}

.error-404 .page-content > p {
    margin-bottom: 2rem; /* 32px */
}

/* 404 Action Button Container */
.error-404-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem; /* 24px */
}



/* Responsive Design */
@media (max-width: 767px) {
	.error-404 {
		padding-top: 0;
	}
    .caa-character-404 {
        max-width: 150px;
    }
    .error-404-character {
        margin-bottom: 1.5rem; /* 24px */
    }
    
    .error-404 .page-content > p {
        margin-bottom: 1.5rem; /* 24px */
    }
}
