.post {
    display: flex;
    flex-direction: row;
    padding: 20px;
    border-radius: 12px;
    margin-top: 60px;
    gap: 30px;
    background-color: #f8faf7;
    max-width: 1400px;
}

.post .inside-article {
    padding: 50px;
}

.post .entry-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b4332;
    line-height: 1.3;
}

.post .entry-header {
    text-align: start;
    margin: 0 0 20px 0;
}

.post .entry-date.published {
    font-size: 14px;
    color: #52b788;
    font-weight: 500;
}

.cat-links, .tags-links, .nav-previous, .nav-next, .next {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d6a4f;
}

.widget-area {
    width: 100%;
    max-width: 400px;
    background-color: #f1faee;
    padding: 25px;
    border-radius: 8px;
}

.widget-area .wp-block-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1b4332;
}

.widget-area li {
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
    color: #2d6a4f;
    transition: color 0.2s;
}

.widget-area li:hover {
    color: #40916c;
}

.widget-area .wp-block-search {
    margin: 20px 0;
}

.widget-area .wp-block-search__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1b4332;
}

.widget-area .wp-block-search__inside-wrapper {
    display: flex;
    gap: 8px;
}

.widget-area .wp-block-search__input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d0e8d9;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.widget-area .wp-block-search__input:focus {
    outline: none;
    border-color: #40916c;
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.widget-area .wp-block-search__button {
    padding: 10px 24px;
    background-color: #40916c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.widget-area .wp-block-search__button:hover {
    background-color: #2d6a4f;
}

.entry-meta > a {
    font-weight: 600;
    text-decoration: none;
    color: #40916c;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.entry-meta > a:hover {
    color: #2d6a4f;
}

.entry-meta {
    text-align: center;
    color: #40916c;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    color: #1b4332 !important;
    line-height: 1.4;
}

.post-thumb > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .post {
        flex-direction: column-reverse;
        padding: 15px;
    }
    .widget-area {
        max-width: 100%;
    }
}