/* Styles for single research details page */
.single-research-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* direction: rtl; */
    /* text-align: right; */
}
.single-research-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-research-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.single-research-date {
    color: #888;
    margin-bottom: 1rem;
}
.single-research-content {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: right;
}
.research-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 0;
}
.research-navigation .nav-links a {
    display: inline-block;
    background: #f9b325;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: background 0.2s;
}
.research-navigation .nav-links a:hover {
    background: #d89c1d;
    color: #fff;
}
.research-details {
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .single-research-container {
        padding: 1rem;
    }
    .single-research-title {
        font-size: 1.3rem;
    }
} 