/* Profile Page Specific Styles */

.profile-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(107, 142, 35, 0.05), transparent);
}

.profile-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 100px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: fadeIn 1.2s ease-out;
}

.profile-card:nth-child(even) {
    flex-direction: row-reverse;
}

.profile-image-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.profile-image {
    width: 100%;
    height: 500px;
    background: var(--accent-color);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1.2;
}

.profile-role {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-name {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.profile-name span {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 15px;
    opacity: 0.7;
}

.profile-text {
    line-height: 2;
    margin-bottom: 30px;
}

.profile-specialty {
    background: rgba(107, 142, 35, 0.05);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

.profile-specialty h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.profile-specialty ul {
    list-style: none;
    font-size: 0.95rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.profile-specialty li::before {
    content: "・";
}

/* Responsive */
@media screen and (max-width: 991px) {
    .profile-card, .profile-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .profile-image-box {
        max-width: 100%;
    }
    .profile-image {
        height: 350px;
    }
    .profile-specialty {
        display: block;
    }
    .profile-specialty ul {
        justify-content: center;
    }
}
