body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.bkft-section {
    font-family: 'MedievalSharp', serif;
}
.bkft-title {
    font-size: 42px;
    color: #e6b800;
    margin-bottom: 10px;
    font-weight: bolder;
    text-align: center;
}

.bkft-subtitle {
    font-size: 28px;
    margin: 5px 0 15px 0;
    color: #0C700B;
    text-align: center;
}

.bkft-text {
    font-size: 18px;
    line-height: 1.4;
    color: #160C6B;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight:800;
}

.member-title {
    font-family: 'MedievalSharp', serif;
    font-size: 32px;
    color: #800000;
    margin: 30px 0 20px 0;
    font-weight: bolder;
    text-align: center;
}

.card {
    background: #e9d8d8;
    padding: 1rem 1.5rem;
    box-shadow: 8px 8px 0 #4b2b1b;
    border-radius: 0px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.member {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'MedievalSharp', serif;
}

    .member:hover {
        transform: scale(1.03);
    }

    .member img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 4px 4px 0 #5b2b18;
    }

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'MedievalSharp', serif;
}

    .member-info .role {
        font-weight: bold;
        font-size: 18px;
        color: #e6b800;
        margin: 0;
    }

    .member-info h3 {
        margin: 4px 0;
        font-size: 24px;
        font-weight: 600;
        color: #1f441e;
    }

    .member-info .desc {
        font-style: italic;
        font-size: 18px;
        color: #160C6B;
        margin: 0;
    }
