/* Professional Page CSS */

.prof-hero-text {
    color: #a35a2f; /* desert brown */
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.prof-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    display: flex;            /* enables flex layout */
    flex-direction: column;   /* stack content vertically */
    justify-content: space-between; /* pushes content evenly */
    height: 100%;             /* ensures it fills the table cell */
}

.prof-card-title {
    color: #c36a2f; /* slightly darker desert tone */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.prof-local-support {
    background-color: #fff3e0; /* subtle desert highlight */
    border-left: 5px solid #c36a2f;
}


