SOME HEALTH ISSUES only impact adults, but gum disease is not one of them. Oral bacteria doesn’t wait for us to get older, so kids and teenagers are also at risk of developing gingivitis and more severe forms of periodontal disease.
What Causes Gum Disease?
The main cause of gum disease in young children is poor oral hygiene. If plaque is left to build up on the teeth until it hardens into tartar, the gums become more vulnerable to irritation and inflammation.
It’s a slightly different story for teenagers because the flood of hormones that comes with puberty can increase blood flow to the gums and make them more sensitive. Girls are more susceptible to this problem than boys, but more than half of teenagers have some form of gum disease.
Parents Can Watch for These Signs
Children lack the life experience to easily recognize when something is wrong, even if they’re experiencing discomfort, so they might not think to give you a detailed description of their symptoms of gum disease. This can be a real problem because gum disease can worsen over time and it could be more advanced by the time they’ve noticed. Fortunately, there are signs parents can keep an eye out for:
- Bleeding gums during brushing or flossing
- Swollen and reddened gums
- Gum recession
- Constant bad breath regardless of brushing and flossing
Preventing and Treating Gum Disease
It’s wonderful if your child doesn’t have gum disease, but the fight to maintain healthy gums is continuous. Good dental hygiene habits are essential, so be sure to set an example by brushing twice a day and flossing daily and helping them follow that example. Schedule regular dental checkups for your kids and teens, because the dentist can catch problems early when they’re easier to reverse and professional cleanings are the only way to remove built-up tartar.
Preventing a dental problem is always preferable to treating it once it appears, but it is very possible to fight back against existing gum disease with these same methods: good dental hygiene habits and regular dental appointments.
Let’s Work Together for Healthy Gums!
Childhood is an important time for a person’s oral health, because it’s the time to learn and build the habits that will keep our teeth and gums healthy for the rest of our lives. Parents and dentists can work together to give kids a great headstart on good oral health. They’ll be able to defeat gum disease and build all the tools they need for a lifetime of healthy smiles!
Visit Us
Our goal is for you to leave our office with a memorable and enjoyable experience, which is why our welcoming and compassionate staff will do everything they can to make you feel right at home.
`,
stat1: "", stat1Label: "",
stat2: "", stat2Label: "",
signature: "Nazanin Morshedi, DDS"
},
{
name: "Dr. Kazemi",
role: "Dentist In Palo Alto",
image: "/wp-content/uploads/2023/11/Dr.-Kazemi-e1639418422835.jpeg",
bio1: `
Dr. Kazemi is a board-certified Periodontist & Implant surgeon. She completed her certificate in Periodontal Surgery & Implant Dentistry at the University of Southern California, Los Angeles. During her time at USC, she was the President of ‘’Advanced Periodontology Residents Study Club’’ and was selected to receive ‘’Associate endowed scholarship’’ from USC School of Dentistry. Before her time at USC, she earned an MS degree in Clinical Translational Sciences from the University of Illinois at Chicago where she received the ‘’Board of trustees Scholarship’’ for academic excellence.
A recipient of several awards and honors, she has also lectured nationally and internationally on implant dentistry and laser dentistry. Dr. Kazemi has published several articles in peer-reviewed journals and serves as a peer reviewer and associate editor of scientific journals in the field of implant dentistry and periodontology.
Dr. Kazemi strives to make dental visits a low-stress experience with minimal discomfort. She takes pride in providing high quality evidence based care to each patient based on their unique individual needs. When not working, she spends time with her family & friends, enjoys hiking, working out, cooking and traveling.
`,
stat1: "", stat1Label: "",
stat2: "", stat2Label: "",
signature: "Dr. Kazemi"
},
];
if( doctors.length > 1 ) {
document.querySelector('#team .section-title').innerText = 'Meet Your Doctors';
} else {
document.querySelector('#team .section-title').innerText = 'Meet Your Doctor';
}
let currentDocIndex = 0;
function renderThumbnails() {
const container = document.getElementById('doctor-thumbnails');
container.innerHTML = doctors.map((doc, index) => `
`).join('');
}
function switchDoctor(index) {
if (index === currentDocIndex && document.getElementById('doc-name').innerText !== "") return;
currentDocIndex = index;
renderThumbnails();
const container = document.getElementById('doctor-spotlight-content');
// Simple fade effect
container.classList.remove('fade-in');
void container.offsetWidth; // Trigger reflow
container.classList.add('fade-in');
const doc = doctors[index];
document.getElementById('doc-image').src = doc.image;
document.getElementById('doc-name').textContent = doc.name;
document.getElementById('doc-role').textContent = doc.role;
document.getElementById('doc-bio1').innerHTML = doc.bio1;
document.getElementById('doc-stat1').textContent = doc.stat1;
document.getElementById('doc-stat1-label').textContent = doc.stat1Label;
document.getElementById('doc-stat2').textContent = doc.stat2;
document.getElementById('doc-stat2-label').textContent = doc.stat2Label;
document.getElementById('doc-signature').textContent = doc.signature;
}
document.addEventListener('DOMContentLoaded', () => {
renderThumbnails();
switchDoctor(0);
});