    .case-container {
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1.5rem;
      margin-bottom:2rem;
    }
    .case-text { flex:2; }
    .case-image { flex:1; max-width:300px; text-align:right; }
    .case-image img {
      width:100%;
      height:auto;
      border-radius:8px;
      box-shadow:0 0 10px rgba(0,0,0,0.4);
    }
    @media (max-width:768px){
      .case-container { flex-direction:column; align-items:center; }
      .case-image { max-width:100%; text-align:center; }
    }

    .related-articles {
    margin-top: 1rem;
    background: #ffffff;             /* ΛΕΥΚΟ BACKGROUND */
    border-left: 3px solid #999;
    padding: .75rem 1rem;
    color: #111;                     /* Σκούρο κείμενο */
    border-radius: 4px;
}

.related-articles h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: #111;                     /* Μαύρο για καθαρό contrast */
    font-weight: 700;
    border-bottom: 1px dotted #aaa;
    padding-bottom: .3rem;
}

.related-articles ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.related-articles li {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .4rem 0;
    border-bottom: 1px dotted #ccc;
}

.related-articles li:last-child {
    border-bottom: none;
}

.ra-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ra-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ra-title a {
    color: #b00;                     /* Κόκκινο, ίδιο με το site */
    text-decoration: none;
    //font-weight:600;
    //line-height:1.3;
}

.ra-title a:hover {
    opacity: 0.75;
}

.ra-meta {
    color: #555;
    font-size: .85rem;
}