.static-post-container {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 30%, #d1dae9 100%);
    margin: 0 !important;
    padding: 50px 0 46px;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(25, 57, 99, 0.05);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.leader-title {
    text-align: center;
    margin-bottom: 50px;
}

.leader-title h1 {
    color: #193963;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(25, 57, 99, 0.1);
}

.leader-title p {
    color: #666;
    font-size: 1.1rem;
}


.leader-main {
    width: 100%;
}
.leader-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(25, 57, 99, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #193963, #2c5282);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(25, 57, 99, 0.15);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #193963, #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.leader-avatar::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
}

.leader-avatar span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #193963;
    z-index: 1;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #193963;
    text-align: center;
    margin-bottom: 8px;
}

.leader-position {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.leader-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.leader-email:hover {
    border-color: #193963;
    background: linear-gradient(135deg, #193963, #2c5282);
    color: white;
    transform: scale(1.02);
}

.email-icon {
    font-size: 20px;
    color: var(--color-primary);
    transition: color .3s ease;
}

.email-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #193963;
    transition: color 0.3s ease;
}
.leader-email:hover .email-icon,
.leader-email:hover .email-text {
    color: var(--color-white);
}
