.smbc-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 12px;
    background: #f2f2f2;
    border: 1px solid #dcdcde;
    border-bottom: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.smbc-accordion-toggle:focus {
    outline: none;
}
.smbc-accordion-toggle.is-open {
    background: #e9e9e9;
}

.smbc-accordion-title {
    font-weight: 600;
}

.smbc-accordion-chevron {
    margin-left: 12px;
    font-size: 0.75rem;
}

.smbc-accordion-content {
    display: none;
    border: 1px solid #dcdcde;
    padding: 12px;
    margin-bottom: 12px;
    margin-block-start:0;
}

.smbc-file-list {
    margin: 8px 0 12px;
    padding-left: 18px;
}

.smbc-file-list li {
    margin: 6px 0;
}

.smbc-section-heading {
    font-weight: 700;
    margin: 12px 0 6px;
}



.smbc-policy-list li {
    display:flex;
    align-items:center;
    border-bottom:1px solid #ddd;
    padding:12px 0;
}

.smbc-branches{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
}

.smbc-branch{
    border:1px solid #dcdcde;
    padding:14px;
    background:#fff;
}

.smbc-branch-title{
    font-weight:700;
    margin:0 0 10px;
}

.smbc-branch-row{
    margin:6px 0;
}

.smbc-branch-label{
    font-weight:600;
}

.smbc-branch-actions{
    margin-top:12px;
}

.smbc-branch-map{
    display:inline-block;
    padding:10px 12px;
    border:1px solid #1d2327;
    border-radius:4px;
    text-decoration:none;
}

@media (max-width: 768px){
    .smbc-branches{
        grid-template-columns:1fr;
    }
}
