/* About Mrs. B page */

.about-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 0 30px;
}

.about-hero {
    text-align: center;
    margin-bottom: 28px;
}

.about-hero h1 {
    font-family: 'Schoolbell', cursive;
    color: var(--navy);
    font-size: 2.6rem;
    font-weight: normal;
    margin-bottom: 8px;
}

.about-hero .tagline {
    color: var(--green);
    font-weight: 700;
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.about-photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 16px;
    border: 4px solid var(--navy);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
    display: block;
}

.about-intro p {
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-highlights li {
    position: relative;
    padding-left: 22px;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.45;
}

.about-highlights li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--green);
}

.blog-preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-preview-item {
    padding: 14px 0;
    border-bottom: 2px dashed rgba(0, 51, 102, 0.12);
}

.blog-preview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-preview-item h3 {
    font-family: 'Schoolbell', cursive;
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.blog-preview-item h3 a {
    color: var(--navy);
    text-decoration: none;
}

.blog-preview-item h3 a:hover {
    color: var(--green);
}

.blog-preview-meta {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
}

.blog-preview-excerpt {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    opacity: 0.9;
}

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(0, 51, 102, 0.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.tag-pill:hover {
    background: var(--navy);
    color: white;
}

.about-cta {
    text-align: center;
    margin-top: 8px;
}

.about-cta .chalkboard-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 12px 24px;
    min-width: auto;
}

.device-desktop .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.device-desktop .about-intro {
    grid-template-columns: 220px 1fr;
}

.device-desktop .about-photo {
    margin: 0;
    max-width: none;
}
