.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb .separator {
    color: #999;
    font-size: 12px;
}

.blog-article {
    margin-inline: 5%;
    padding-block: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.doctor-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.4;

    font-size: 14px;
    color: #555;
}

.doctor-name {
    font-weight: 600;
    font-size: 16px;
    color: black;
}

.doctor-title {
    font-size: 14px;
    color: #555;
}

.blog-article .blog-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: #eaeaea;
}

.blog-article .blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-article h2 {
    margin-top: 20px;
    text-align: left;
    font-size: 28px;
    font-family: "PT Serif", serif;
}

.blog-article h3 {
    text-align: left;
    font-weight: bold;
}

.blog-article p {
    margin: 0px;
}

.blog-article ul {
    margin: 0px;
    text-align: left;
}
