.post{
    display: flex;
    flex-direction: row;
    padding: 10px;
    border-radius: 10px;
    margin-top: 120px;
    gap: 30px;
}
.post .inside-article{
    padding: 50px;
}
.post .entry-title{
    font-size: 24px;
    font-weight: bold;
}
.post .entry-header{
    text-align: start;
    margin: 0;
}
.post .entry-date.published{
    font-size: 14px;
    color: gray;
}
.cat-links, .tags-links, .nav-previous, .nav-next, .next{
    display: flex;
    align-items: center;
    gap: 10px;
}
.widget-area{
    width: 100%;
    max-width: 400px;
}
.widget-area .wp-block-heading{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f13724;
}
.widget-area li {
    padding: 7px;
    text-decoration: underline;
    font-size: 12px;
    color: #0066cc;
}

.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: #333;
}

.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 #ddd;
        border-radius: 4px;
        font-size: 14px;
        font-family: inherit;
        transition: border-color 0.2s;
}

.widget-area .wp-block-search__input:focus {
        outline: none;
        border-color: #0066cc;
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.widget-area .wp-block-search__button {
        padding: 10px 24px;
        background-color: #0066cc;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s;
}

.widget-area .wp-block-search__button:hover {
        background-color: #0052a3;
}

@media (max-width: 1024px) {
  .post{
    margin-top: 150px;
  }
}
@media (max-width: 800px) {
  .post{
    display: flex;
    flex-direction: column-reverse;
  }
  .widget-area{
    max-width: 100%;
  }
}