homepage_about {
    display: none;
}

.block_make_submission a {
    font-size: 1.5rem;
}

.item.published {
	display: none;
}

.editorial-board-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: #444;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px 0;
    }

    /* Section Headers */
    .role-header {
        text-align: center;
        margin-bottom: 30px;
        margin-top: 40px;
        position: relative;
    }
    
    .role-header h3 {
        background-color: #f2988a;
        color: white;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 50px;
        margin: 0;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 1.1rem;
        box-shadow: 0 4px 10px rgba(242, 152, 138, 0.4);
    }

    /* Grid Layout */
    .editor-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    /* Individual Card Design */
    .editor-card {
        background: #ffffff;
        border: 1px solid #f0f0f0;
        border-radius: 16px;
        padding: 25px 20px;
        width: 260px; /* Width of each card */
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.03);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    /* Hover Effect */
    .editor-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 12px 20px rgba(242, 152, 138, 0.25);
        border-color: #f2988a;
    }

    /* Profile Image */
    .editor-img-container {
        position: relative;
        width: 130px;
        height: 130px;
        margin: 0 auto 15px auto;
    }
    
    .editor-img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Text Styling */
    .editor-name {
        font-size: 1.05rem;
        color: #333;
        margin: 5px 0;
        line-height: 1.3;
        font-weight: 700;
    }

    .editor-affil {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 15px;
        line-height: 1.4;
        flex-grow: 1; /* Pushes icons to bottom */
    }

    .editor-country {
        display: block;
        font-weight: 600;
        color: #f2988a;
        margin-top: 4px;
    }

    /* Icon Section */
    .profile-links {
        border-top: 1px dashed #eee;
        padding-top: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: auto;
    }

    .profile-links img {
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.2s;
        max-height: 20px;
        width: auto;
    }

    .profile-links a:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }