.abl-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
	margin 30px 10px;
}

.abl-main-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.abl-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.abl-search-form {
    display: flex;
    background: #00522d;
    padding: 6px;
    border-radius: 8px;
}

.abl-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px;
    border-radius: 6px;
}

.abl-search-btn {
    width: 50px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.abl-sidebar-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.abl-sidebar-title {
    background: #00522d;
    color: #fff !important;
    padding: 15px;
    text-align: center;
    margin: 0;
    font-size: 24px;
}

.abl-sidebar-post {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.abl-sidebar-post:last-child {
    border-bottom: none;
}

.abl-sidebar-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.abl-sidebar-post-title {
    font-weight: 700;
    color: #097C53 !important;
    text-transform: uppercase;
}

.abl-sidebar-post-date {
    font-size: 11px;
    color: #f39c12;
    margin-top: 5px;
}

.abl-card {
    background: #00522d;
    border-radius: 8px;
    overflow: hidden;
}

.abl-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.abl-card-image-wrap {
    height: 320px;
    overflow: hidden;
}

.abl-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abl-no-image {
    width: 100%;
    height: 100%;
    background: #ddd;
}

.abl-card-body {
    padding: 25px;
}

.abl-title {
    color: #FF8100 !important;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.abl-meta,
.abl-category {
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
}

.abl-excerpt {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.abl-read-more {
    background: #f39c12;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
}

@media(max-width: 991px) {

    .abl-wrapper {
        grid-template-columns: 1fr;
    }

    .abl-sidebar {
        position: relative;
        top: 0;
    }
}