.memorial-page {
    background: rgba(255,255,255,0.88);
}

.memorial-intro {
    font-style: italic;
    color: #333;
    margin-bottom: 1em;
}

.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.memorial-card {
    background: #f7f7f7;
    color: #222;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.memorial-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.memorial-photo {
    flex: 0 0 110px;
}

.memorial-photo img,
.memorial-placeholder {
    width: 110px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}

.memorial-info h3 {
    flex: 1;
}

.memorial-details {
    margin-top: 12px;
    width: 100%;
    clear: both;
}

.memorial-death {
    font-weight: 600;
    color: #555;
}

.memorial-career ul {
    margin: 0.4em 0;
    padding-left: 1.2em;
}

.memorial-tribute {
    font-style: italic;
    margin-top: 0.7em;
}

#mem-modif {
	background: #2980b9;
    color: #fff;
    border: none;
    padding: 0.7em 1.2em;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: small;
}

a:hover {
  background: #3498db;
}