﻿
/* YK Sayfası Stilleri */
html, body, main {
    background-color: #fff !important;
}


.board-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

    .board-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        font-weight: 700;
        color: #333;
    }

.board-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem 2rem;
    justify-items: center;
}

.board-member {
    text-align: center;
    max-width: 150px;
}

    .board-member img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 0; /* Kare şekli için */
        display: block;
        margin: 0 auto 0.75rem auto;
    }

.member-info h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: #222;
}

.member-info p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.2;
}
