/* Custom styles for reflections */
.reflection-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
}
.reflection-card {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reflection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.reflection-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.reflection-title {
    flex: 1;
    min-width: 200px;
}
.reflection-title h1, .reflection-title h3 {
    font-size: 24px;
    font-weight: bold;
    color: #075546;
    font-family: 'Open Sans', sans-serif;
    margin: 5px 0;
}
.reflection-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #075546;
    border-radius: 8px;
}
.reflection-card .prose {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-top: 15px;
}
.reflection-card .prose p {
    margin-bottom: 15px;
}
.reflection-card hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}
.signature {
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
}
@media (max-width: 767px) {
    .reflection-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .reflection-photo {
        margin-top: 10px;
    }
}