/* ==========================================================================
   ISOLATED TEMPORARY ACQUISITION HOLDING PAGE STYLES
   ========================================================================== */

/* Universal Reset to isolate from your global base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: #151515;
    line-height: 1.5;
}

/* Header Tray Layout Elements */
.welcome-hero-wrapper.subpage-header-wrap {
    width: 100%;
    min-height: auto !important;
    padding: 25px 0;
    background-color: #03366A !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

/* Main Content Structural Block Column */
.holding-page-content {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    text-align: center;
}

.holding-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Image containment rules to keep graphics scaling perfectly */
.announcement-image-box {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.announcement-graphic {
    width: 100%;
    height: auto;
    display: block;
}

/* Announcement Sizing Typography Elements */
.holding-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #151515;
    margin: 0 0 15px 0;
}

.holding-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #5E5E5E;
    margin: 0 0 50px 0;
}

/* Main Informational Detail Frame Block */
.holding-directory-card {
    text-align: center; /* Centers the Contact Us heading and accent line */
    background-color: #f8f9fa; 
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.holding-contact-heading {
    font-size: 28px;
    color: #03366A;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.holding-accent-line {
    width: 40px;
    height: 3px;
    background-color: #0066cc;
    margin: 0 auto 30px auto; /* Centered the accent line underneath the heading */
}

/* Directory Layout Matrix Rows */
.directory-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center; /* Forces the flex rows to center perfectly in the container */
}

.directory-item-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 14px;
    width: 100%;
    max-width: 500px; /* Constrains the width slightly so the alignment feels balanced */
    text-align: center; /* Centers both labels and data text entries */
}
.directory-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.directory-label {
    font-size: 13px;
    font-weight: bold;
    color: #03366A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.directory-text {
    font-size: 17px;
    color: #151515;
    margin: 0;
    font-weight: 500;
}

.directory-link-action {
    color: #04346C;
    text-decoration: none;
    font-weight: 600;
}

.directory-link-action:hover {
    text-decoration: underline;
}

/* Minimal Universal Footer Structure */
.site-footer {
    background-color: #151515; /* Standard slate black presentation panel background */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text-line {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.footer-phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-phone-link:hover {
    text-decoration: underline;
}

.white-plus {
    color: #ffffff;
    margin-right: 2px;
}

.footer-floorboard {
    margin-top: 25px;
    border-top: 1px solid #2d2d2d;
    padding-top: 20px;
}

.copyright-text {
    font-size: 13px;
    color: #707070;
}