/*
====================================
About Us Page Specific Styles (about-styles.css)
====================================
*/

/* Firm Overview Section */
.firm-overview {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Text wider than image */
    gap: 40px;
    align-items: center;
}

.firm-overview h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
}

.firm-overview .image-block img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* History and Values Section */
.history-values {
    background-color: var(--light-bg);
    padding: 50px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    text-align: left;
    border-radius: 5px;
}

.value-item h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item ul {
    list-style: none;
    padding-left: 0;
}

.value-item ul li {
    margin-bottom: 8px;
}


/* Attorney Profiles Section */
.attorneys-profiles {
    padding: 60px 0;
    text-align: center;
}

.attorneys-profiles h2 {
    margin-bottom: 40px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.attorney-card {
    background: var(--white);
    padding: 20px;
    border: 1px solid #ddd;
    border-top: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.attorney-card img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* Circular images */
    margin-bottom: 15px;
    border: 3px solid var(--light-bg);
}

.attorney-card h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 5px;
}

.attorney-card .title {
    color: #777;
    font-style: italic;
    margin-bottom: 15px;
}

.view-all {
    margin-top: 50px;
}


/* Media Query for Responsiveness */
@media (max-width: 800px) {
    .overview-content, .values-grid {
        grid-template-columns: 1fr; /* Stack content on smaller screens */
    }
    .firm-overview .image-block {
        order: -1; /* Move image above text on mobile for better visibility */
    }
}
