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);
    }

    /* Modern Font & Base */
  .reviewer-container {
    font-family:
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      Helvetica,
      Arial,
      sans-serif;
    background-color: #f8f9fa;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #111;
  }

  /* Grid System */
  .reviewer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  /* Card Design */
  .reviewer-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s;
    position: relative;
    overflow: hidden;
  }

  .reviewer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #f2988a;
  }

  /* Card Decoration (Top Line) */
  .reviewer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f2988a;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .reviewer-card:hover::before {
    opacity: 1;
  }

  /* Content Styling */
  .reviewer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .reviewer-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    line-height: 1.4;
    margin-right: 10px;
  }

  .reviewer-badge {
    background-color: #fff0ed;
    color: #d16b5a;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
  }

  .reviewer-affil {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
  }

  /* Links Footer */
  .reviewer-links {
    display: flex;
    gap: 12px;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    align-items: center;
  }

  .reviewer-links a {
    opacity: 0.6;
    transition:
      opacity 0.2s,
      transform 0.2s;
    display: flex;
    align-items: center;
  }

  .reviewer-links a:hover {
    opacity: 1;
    transform: scale(1.1);
  }

  .reviewer-links img {
    height: 18px;
    width: auto;
  }

  /* Hidden State for Filter */
  .hidden {
    display: none;
  }