/* Clean Production Styles for About Page */

/* Body Background */
body {
    background-color: #fdfbff; /* Soft lavender/pinkish-white tone matching brand */
}

/* Breadcrumb: match the detailed raasi page style for consistency */
.breadcrumb-nav {
    font-size: 0.85rem;
    color: #6c757d; /* subtle gray */
    margin-bottom: 1rem;
}
.breadcrumb-nav a {
    text-decoration: none;
    color: var(--brand-primary, #7b2cbf);
    font-weight: 500;
}

/* About page typography tweaks */
#about { font-family: 'Noto Sans Tamil', 'Mukta', sans-serif; }
#about h2 { font-size: 1.35rem; margin-bottom: .6rem; color: var(--brand-primary, #7b2cbf); }
#about p { font-size: 1rem; line-height: 1.6; color: #333; margin-bottom: .9rem; }
/* Make inline strong/bold emphasised text use brand purple for emphasis */
#about p strong, #about p b { color: var(--brand-primary, #7b2cbf); }

/* Side / section subtitle styling (used on other pages as .section-subtitle) */
.section-subtitle, .side-title, #about .subtitle { color: var(--brand-primary, #7b2cbf); font-weight: 700; }

/* Signature tweak to reduce size a bit and match brand */
#about .signature { font-size: 0.98rem; color: #2a2342; }

@media (max-width: 420px) {
    #about h2 { font-size: 1.2rem; }
    #about p { font-size: .98rem; }
}

