.saw-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.saw-left, .saw-right {
    box-sizing: border-box;
}
.saw-left {
    width: 30%;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}
.saw-post-title {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.saw-post-title.active {
    background: #f0f0f0;
    font-weight: bold;
}
.saw-right {
    width: 68%;
    border: 1px solid #ccc;
    padding: 10px;
}
.saw-right img,
.saw-accordion-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.saw-read-more {
    display: inline-block;
    margin-top: 10px;
    background: #0073aa;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
}
.saw-read-more:hover {
    background: #005f8d;
}

/* Loader */
.saw-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}
.saw-loader:after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #0073aa;
    border-top-color: transparent;
    border-radius: 50%;
    animation: saw-spin 1s linear infinite;
}
@keyframes saw-spin {
    to { transform: rotate(360deg); }
}

/* Mobile Accordion */
.saw-mobile {
    display: none;
    width: 100%;
}
.saw-accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.saw-accordion-title {
    padding: 12px;
    background: #eee;
    cursor: pointer;
    font-weight: bold;
}
.saw-accordion-content {
    display: none;
    padding: 10px;
    background: #fafafa;
}
@media (max-width: 768px) {
    .saw-left, .saw-right {
        display: none !important;
    }
    .saw-mobile {
        display: block;
    }
}
