/* --- Main Layout, Toolbars, Icon Grid (unchanged) --- */
.aho-ui-wrapper{--left-toolbar-width:0px;--right-toolbar-width:0px;--top-toolbar-height:0px;}.aho-ui-wrapper.has-left-toolbar{--left-toolbar-width:80px;}.aho-ui-wrapper.has-right-toolbar{--right-toolbar-width:80px;}.aho-ui-wrapper.has-top-toolbar{--top-toolbar-height:50px;}#aho-content-area{padding-left:var(--left-toolbar-width);padding-right:var(--right-toolbar-width);padding-top:var(--top-toolbar-height);min-height:100vh;box-sizing:border-box;}.aho-top-toolbar{position:fixed;top:var(--aho-admin-bar-height,0px);left:0;right:0;height:var(--top-toolbar-height);background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.1);z-index:99998;display:flex;justify-content:center;padding:0 20px;}.aho-top-toolbar nav{display:flex;align-items:center;gap:25px;}.aho-top-toolbar nav a{display:flex;align-items:center;gap:8px;text-decoration:none;color:#333;font-weight:500;font-size:14px;transition:color .2s;}.aho-top-toolbar nav a:hover{color:#0073aa;}.aho-top-toolbar nav a svg{width:20px;height:20px;fill:currentColor;}.aho-toolbar{position:fixed;top:calc(var(--aho-admin-bar-height,0px) + var(--top-toolbar-height));bottom:0;width:80px;background:#f8f9fa;box-shadow:0 0 10px rgba(0,0,0,.1);z-index:99997;overflow-y:auto;}.aho-toolbar.left{left:0;}.aho-toolbar.right{right:0;}.aho-toolbar ul{list-style:none;margin:0;padding:20px 0;display:flex;flex-direction:column;align-items:center;}.aho-toolbar .aho-toolbar-item{display:flex;flex-direction:column;align-items:center;justify-content:center;width:60px;height:60px;margin-bottom:15px;text-decoration:none;color:#333;border-radius:10px;transition:background-color .2s ease;}.aho-toolbar .aho-toolbar-item:hover,.aho-toolbar .aho-toolbar-item.active{background-color:#e9ecef;}.aho-toolbar .aho-toolbar-item img{width:32px;height:32px;object-fit:cover;margin-bottom:4px;border-radius:5px;}.aho-toolbar .aho-toolbar-item span{font-size:11px;text-align:center;line-height:1.2;overflow-wrap:break-word;width:100%;}
#aho-content-area .aho-content-inner{padding:20px;transition:opacity .3s ease;}#aho-content-area.loading .aho-content-inner{opacity:.5;}
.aho-icon-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:20px;}.aho-icon-item{text-decoration:none;color:#333;display:flex;flex-direction:column;align-items:center;transition:transform .2s ease;}.aho-icon-item:hover{transform:translateY(-5px);}.aho-icon-item .icon-image{width:80px;height:80px;margin-bottom:10px;border-radius:15px;overflow:hidden;box-shadow:0 4px 8px rgba(0,0,0,.1);}.aho-icon-item .icon-image img{width:100%;height:100%;object-fit:cover;}.aho-icon-item .icon-label{font-size:14px;font-weight:500;text-align:center;}

/* --- **UPDATED**: Content Blocks Area --- */
/* Remove all slider and container styles */
.aho-content-blocks-area {
    width: 100%;
}

/* Each block is displayed sequentially */
.aho-content-block-item {
    margin-bottom: 2em; /* Add some space between blocks */
}

/* Ensure content from the editor displays correctly */
.aho-content-block-item > *:first-child {
    margin-top: 0;
}
.aho-content-block-item > *:last-child {
    margin-bottom: 0;
}


/* --- Responsive (unchanged from last version) --- */
@media (max-width: 768px) {
    .aho-ui-wrapper.has-top-toolbar{--top-toolbar-height:40px;}#aho-content-area{padding-left:0;padding-right:0;padding-bottom:70px;}.aho-top-toolbar{padding:0 10px;justify-content:flex-start;overflow-x:auto;}
    .aho-toolbar.right{display:none;}
    .aho-toolbar{top:auto;bottom:0;left:0;right:0;width:100%;height:70px;display:flex;justify-content:center;box-shadow:0 -2px 5px rgba(0,0,0,.05);z-index:99999;overflow-y:hidden;}
    .aho-toolbar ul{flex-direction:row;padding:0 10px;width:100%;overflow-x:auto;justify-content:flex-start;}
    .aho-toolbar .aho-toolbar-item{margin-bottom:0;flex-shrink:0;}
    .aho-toolbar.left{position:relative;}
    .aho-toolbar.left::after{content:'';position:absolute;top:0;right:0;bottom:0;width:30px;background:linear-gradient(to right,rgba(248,249,250,0),#f8f9fa 80%);pointer-events:none;}
}