#profile-content {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
    background-color: #fdfaf2;
    padding: 20px;
}

.profile-header-block {
    margin-bottom: 25px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.main-name {
    font-size: 2.8rem;
    color: #111;
    margin: 0 0 5px 0;
    font-weight: 400;
}

.main-position {
    font-size: 1.5rem;
    color: #444;
    margin: 0;
    font-weight: 300;
}

.profile-wrap-container {
    width: 100%;
}

.full-title {
    font-size: 1.5rem;
    color: #111;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.role-subtitle {
    color: #555;
    font-size: 1.05rem;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.featured-profile-img {
    float: left;
    width: 380px;
    height: auto;
    margin-right: 35px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bio-wrapper-text p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #222;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #1e293b; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px; 
    box-shadow: 0 4px 10px rgba(30, 41, 59, 0.2);
    transition: all 0.3s ease;
}

.btn-readmore .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease; 
    font-size: 0.85rem;
}

.btn-readmore:hover {
    background-color: #353d4a;
    box-shadow: 0 6px 15px rgba(30, 41, 59, 0.35);
    transform: translateY(-2px); 
}

.btn-readmore:hover .btn-arrow {
    transform: translateX(5px);
}

.bio-wrapper-text ul {
    margin-left: 415px; 
    margin-bottom: 20px;
    padding-left: 20px;
}

.bio-wrapper-text li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 8px;
}

.section-subheading {
    font-size: 1.4rem;
    color: #111;
    margin: 35px 0 15px 0;
    font-weight: 700;
    clear: none;
}

.contact-card-block {
    clear: both;
    margin-top: 50px;
    background: #f5efe2;
    padding: 25px;
    border-left: 4px solid #1e293b;
    border-radius: 4px;
}

.contact-card-block h3 {
    margin: 0 0 15px 0;
    font-family: sans-serif;
    color: #333;
    font-size: 1.2rem;
}

.contact-card-block p {
    margin: 8px 0;
    font-size: 1.05rem;
    color: #444;
}

.contact-card-block a {
    color: #1e293b;
    text-decoration: none;
}

@media (max-width: 768px) {
    .featured-profile-img {
        float: none;
        display: block;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 25px auto;
    }
    .bio-wrapper-text ul {
        margin-left: 0;
    }
    .main-name {
        font-size: 2rem;
    }
}