﻿/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
} */

.catcontainer {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.entry {
    margin-bottom: 20px;
}

.entry h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.entry-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.entry-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.entry-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.entry-text p {
    margin-top: 0;
    margin-bottom: 15px;
}

.pdf-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.pdf-link:hover {
    text-decoration: underline;
}


hr {
	margin: 0px 0px 30px 0px;
	color:  #ab7878; /* #77bb5f */
}

/* Responsive adjustment for screens wider than 600px */
@media (min-width: 600px) {
    .entry-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .entry-image {
        width: 200px;
    }
}
