/* ==========================================================================
   Homepage Styles (extracted from inline style attributes)
   Scoped with .home- prefix to avoid conflicts
   ========================================================================== */

/* --------------------------------------------------------------------------
   Welcome Section (pg-home-0)
   -------------------------------------------------------------------------- */

.home-welcome-heading {
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 10px 0;
}

.home-welcome-intro {
    text-align: center;
}

.home-welcome-intro-text {
    color: #000;
    font-size: 18px;
}

.home-welcome-intro-text a {
    color: #000;
}

/* --------------------------------------------------------------------------
   Team Cards (below welcome heading)
   -------------------------------------------------------------------------- */

.home-team-container {
    max-width: 550px;
    margin: 0 auto;
}

.home-team-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.home-team-member {
    text-align: center;
    flex: 1;
}

.home-team-member-name {
    color: #aeaa8b;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.home-team-member-specs {
    color: #9a9a9a;
    font-size: 10px;
}

.home-team-member-specs a {
    color: #9a9a9a;
    text-decoration: none;
}

.home-team-photo {
    width: 100%;
    aspect-ratio: 550 / 328;
}

/* --------------------------------------------------------------------------
   Specializations Section (pg-home-1, left column)
   -------------------------------------------------------------------------- */

.home-section-heading {
    color: #aeaa8b;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.home-section-heading-spaced {
    color: #aeaa8b;
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0 10px 0;
}

/* Links and text in specialization lists that should be black */
#panel-home-1-0-0 .textwidget ul a,
#panel-home-1-0-0 .textwidget ul span {
    color: #000;
}

.home-contact-line {
    text-align: left;
}

/* --------------------------------------------------------------------------
   Right Column (pg-home-1, right column)
   -------------------------------------------------------------------------- */

#panel-home-1-1-0 .textwidget > p > span {
    color: #000;
}

.home-banner-link img,
.home-banner-img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Brand Accent Colors (used across sections)
   -------------------------------------------------------------------------- */

.home-accent {
    color: #aeaa8b;
}

.home-dark {
    color: #000;
}

/* --------------------------------------------------------------------------
   Recent Blog Posts Section
   -------------------------------------------------------------------------- */

.home-recent-posts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.home-recent-heading {
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 25px 0;
}

.home-recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%;
}

.home-recent-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-recent-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.home-recent-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-recent-card-body {
    padding: 15px;
}

.home-recent-card-category {
    display: inline-block;
    background: #aeaa8b;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.home-recent-card-title {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #464646;
}

.home-recent-card-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #999;
    margin: 0;
}

.home-recent-card-meta {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.home-recent-card-meta-separator {
    margin: 0 4px;
}

.home-recent-cta {
    text-align: center;
    margin-top: 20px;
}

.home-recent-cta-button {
    display: inline-block;
    padding: 10px 24px;
    background: #203965;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
