/* ABOUT PAGE */
.about-page {
    padding: 40px 0;
}
body{
font-family: 'Karla', sans-serif!important;
}
h2,h1,h3 {
    font-weight: 700;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
}

/* TEAM SECTION */
.team-section h2 {
    text-align: center;
    font-size: 32px;
    margin: 50px 0 20px;
}

/* AUTHOR GRID */
.author-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.author-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
}

.author-img img {
    width: 150px;
    height: 144px;
    object-fit: cover;
    border-radius: 50%;
}

.author-title {
    font-size: 20px;
    margin-top: 12px;
    font-weight: 600;
    color: #000;
}

.author-desc {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

/* TABLET */
@media (max-width: 991px) {
    .author-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .author-grid-wrapper {
        grid-template-columns: 1fr;
    }
}
