.journal-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: auto;
    text-align: right;
}

.journal-image img {
    width: 250px !important;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px !important;
}

.journal-meta {
    flex-grow: 1;
}

.journal-meta h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.journal-meta p {
    font-size: 1.1rem;
    color: #555;
}

.journal-buttons {
    margin-top: 15px;
    text-align: center;
}

.journal-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    font-family: cairo;
    color: white;
    background: #0073e6;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}


.journal-buttons a:hover {
    background: #005bb5;
}

/* جعل التصميم متجاوبًا مع الموبايل */
@media (max-width: 768px) {
    .journal-header {
        flex-direction: column;
        text-align: center;
    }

    .journal-image img {
        width: 100%;
        max-width: 300px;
    }
}