/* Board Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
    margin-top: 186px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Board Section */
.board-section {
    padding: 100px 0;
    background: var(--white);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.board-card {
    background: var(--bg-cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.board-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.board-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Individual board member photo adjustments - object-position for face framing */
.board-card:nth-child(1) .board-image img { /* Bradley Fulner */
    object-position: center center;
}

.board-card:nth-child(2) .board-image img { /* Todd Godfrey */
    object-position: center 25%;
}

.board-card:nth-child(3) .board-image img { /* Zach Sperry */
    object-position: center center;
}

.board-card:nth-child(4) .board-image img { /* Teresa Tomlin */
    object-position: center center;
}

.board-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.board-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.board-role {
    display: block;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.board-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.board-social {
    display: flex;
    gap: 12px;
}

.board-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s;
}

.board-social a:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Consultants Section */
.consultants-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.consultants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.consultant-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.consultant-image {
    height: 250px;
    overflow: hidden;
}

.consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Individual consultant photo adjustments */
.consultants-grid .consultant-card:nth-child(1) .consultant-image img { /* Brian McGuire */
    object-position: center 55%;
}

.consultant-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.consultant-content h4 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.consultant-role {
    display: block;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.consultant-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .consultants-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
