fix: add overflow-x hidden to page-content and page-section

- Added overflow-x: hidden to .page-content
- Added max-width: 100% and overflow-x: hidden to .page-section
- This prevents FAQ accordion from overflowing outside content area
- FAQ now properly contained within right content panel
This commit is contained in:
TenerifeProp Dev
2026-04-06 23:12:22 +01:00
parent a53fef8dbf
commit 06cfbec435

View File

@@ -415,6 +415,12 @@
/* ============ PAGE CONTENT ============ */
.page-content {
padding: 32px;
overflow-x: hidden;
}
.page-section {
max-width: 100%;
overflow-x: hidden;
}
.page-header {