/*=================
HERO SECTION: IMAGE
===================*/

.hero-section {
margin-top: 3px;
margin-bottom: 5px;
display: block;
}

.hero-container {
max-width: 1000px;
height: 430px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: stretch;
gap: 7px;
}

.hero-image {
flex: 0 1 540px;
}

.hero-image img {
width: 100%;
height: auto;
display: block;
}

/*======================
HERO SECTION: TEXT BOXES
=======================*/

.hero-text-stack {
flex: 1;
height: 100%;
display: flex;
flex-direction: column;
gap: 4px;
}

.text-box-caption img {
width: 100%;
height: auto;
display: block;
margin-top: -1px;
filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

.text-box {
border-radius: 20px;
border-width: 3.5px;
border-style: solid;
padding: 8px 8px;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}

.text-box p {
margin: 0;
font-family: 'Sniglet', arial, sans-serif;
line-height: 1.1;
text-align: center;
}

.text-box-1 { background: #FEF3F6; border-color: #8F6378; flex: .8; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); }

.text-box-1 p { color: #8F6378; font-size: 2.5rem; line-height: 1.15; }

.text-box-2 { background: #F1FEE1; border-color: #18754A; flex: .4; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); }

.text-box-2 p { color: #18754A; font-size: 2.5rem; line-height: 1.15; }

.text-box-3 { background: #F5FDFF; border-color: #4D6493; flex: .4; margin-top: 7px; margin-bottom: 7px; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); }

.text-box-3 p { color: #4D6493; font-size: 2.4rem; line-height: 1.15; }

.text-box-4 { background: #FCF8FF; border-color: #775CA1; flex: .5; margin-top: 9px; margin-bottom: 6px; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); }

.text-box-4 p { color: #775CA1; font-size: 2.5rem; line-height: 1.15; }

/*====================
TEXT BOX (HTML FORMAT)
====================*/

.text-box-solo {
max-width: 1000px;
width: 99%;
margin: 0 auto;
border-radius: 20px;
border-width: 4px;
border-style: solid;
padding: 5px 4px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84);
background: #dfe7f7;
border-color: #4d5ca8;
margin-bottom: 5px;
margin-top: 5px;
}

.text-box-solo p {
margin: 0;
font-family: 'Sniglet', arial, sans-serif;
font-size: 1.84rem;
letter-spacing: 0.04em;
line-height: 1.2;
text-align: center;
color: #5960b2;
}

#dallas-show-2006-pic {
--rounded-border-color: #644575;
}

#cartoonism-flyer {
--rounded-border-color: #644575;
}

/* ====================
MOBILE RESPONSIVE
==================== */
@media (max-width: 768px) {

.hero-container {
flex-direction: column;
height: auto;
align-items: center;
max-width: 100%;
padding: 0 2px;
box-sizing: border-box;
gap: 4px;
}

.hero-image {
width: 100%;
flex: none;              
}

.hero-image img {
height: auto; 
object-fit: cover;
}

.hero-text-stack {
width: 100%;
height: auto;
flex: none;
gap: 9px;
}

.text-box {
height: auto;
min-height: 80px;
padding: 6px 6px;
}

.text-box-1 p { font-size: clamp(1.7rem, 5.8vw, 3.4rem); }
.text-box-2 p { font-size: clamp(1.7rem, 5.6vw, 3.6rem); }
}