.ms-heading-style-h5 {
    font-size: 1.05rem;
}

.ms-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
}

/* Sidebar (left) */
.ms-sidebar {
    flex: 1;
    padding: 20px;
}

/* Search */
.ms-search-form {
    margin-bottom: 20px;
}

.ms-search-form input {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.4rem 1.25rem;
    font-size: 16px;
    width: 88%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Alphabet Filter */
.ms-alphabet-filter {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ms-alphabet-filter a {
    color: #222c50;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: .4rem;
    padding: .3rem .75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.ms-alphabet-filter a:hover {
    background-color: #ededfa;
}

.ms-alphabet-filter a.active {
    background: #222c50;
    color: #fff;
    border-color: #0073aa;
}

/* Post List (right) */
.ms-post-list {
    flex: 2;
}

.ms-post-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-post-list li {
    border: 1px solid #e2e2e2;
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.ms-post-list li:hover {
    background: #f7f7f7;
}

.ms-post-list a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ms-wrapper {
        flex-direction: column;
    }

    .ms-sidebar {
        margin-bottom: 30px;
    }
}