.osm-map-container {
position: relative;
margin: 20px 0;
clear: both;
}
.osm-map {
width: 100%;
height: 400px;
min-height: 200px;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #f8f9fa;
position: relative;
overflow: hidden;
} .osm-map-loading {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
background-color: #f8f9fa;
color: #6c757d;
font-style: italic;
}
.osm-map-loading p {
margin: 0;
padding: 20px;
} .osm-map-error {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
background-color: #fff5f5;
color: #dc3545;
border: 1px solid #f5c6cb;
border-radius: 4px;
text-align: center;
}
.osm-map-error p {
margin: 0;
padding: 20px;
font-weight: 500;
} .osm-map-controls {
position: absolute;
top: 10px;
right: 10px;
z-index: 1000;
display: flex;
flex-direction: column;
gap: 5px;
}
.osm-fullscreen-btn {
background: rgba(255, 255, 255, 0.9);
border: 1px solid #ccc;
border-radius: 4px;
padding: 8px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
}
.osm-fullscreen-btn:hover {
background: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.osm-fullscreen-btn:focus {
outline: 2px solid #0073aa;
outline-offset: 2px;
}
.osm-fullscreen-btn .dashicons {
font-size: 16px;
width: 16px;
height: 16px;
} .osm-map-container.osm-fullscreen {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
z-index: 999999 !important;
margin: 0 !important;
background: #000;
}
.osm-map-container.osm-fullscreen .osm-map {
width: 100% !important;
height: 100% !important;
border: none !important;
border-radius: 0 !important;
} .osm-maps-grid {
display: grid;
gap: 30px;
margin: 20px 0;
}
.osm-maps-grid.columns-1 {
grid-template-columns: 1fr;
}
.osm-maps-grid.columns-2 {
grid-template-columns: repeat(2, 1fr);
}
.osm-maps-grid.columns-3 {
grid-template-columns: repeat(3, 1fr);
}
.osm-maps-grid.columns-4 {
grid-template-columns: repeat(4, 1fr);
} .osm-map-card {
background: #fff;
border: 1px solid #e1e5e9;
border-radius: 8px;
overflow: hidden;
transition: box-shadow 0.2s ease;
}
.osm-map-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.osm-map-title {
margin: 0;
padding: 15px 20px 10px;
font-size: 1.2em;
line-height: 1.4;
}
.osm-map-title a {
text-decoration: none;
color: #2c3e50;
}
.osm-map-title a:hover {
color: #0073aa;
}
.osm-map-thumbnail {
margin: 0;
overflow: hidden;
}
.osm-map-thumbnail img {
width: 100%;
height: auto;
display: block;
transition: transform 0.2s ease;
}
.osm-map-thumbnail:hover img {
transform: scale(1.02);
}
.osm-map-excerpt {
padding: 15px 20px;
color: #666;
line-height: 1.6;
}
.osm-map-excerpt p:last-child {
margin-bottom: 0;
}
.osm-map-embed {
margin: 0;
}
.osm-map-embed .osm-map-container {
margin: 0;
}
.osm-map-embed .osm-map {
height: 250px;
border-radius: 0;
border: none;
border-top: 1px solid #e1e5e9;
border-bottom: 1px solid #e1e5e9;
}
.osm-map-meta {
padding: 15px 20px;
text-align: center;
border-top: 1px solid #f1f3f4;
background: #fafbfc;
}
.osm-map-link {
display: inline-block;
padding: 8px 16px;
background: #0073aa;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-size: 0.9em;
font-weight: 500;
transition: background 0.2s ease;
}
.osm-map-link:hover {
background: #005a87;
color: #fff;
} @media (max-width: 768px) {
.osm-maps-grid.columns-2,
.osm-maps-grid.columns-3,
.osm-maps-grid.columns-4 {
grid-template-columns: 1fr;
}
.osm-map {
height: 300px;
}
.osm-map-controls {
top: 5px;
right: 5px;
}
.osm-fullscreen-btn {
width: 30px;
height: 30px;
padding: 6px;
}
.osm-fullscreen-btn .dashicons {
font-size: 14px;
width: 14px;
height: 14px;
}
}
@media (max-width: 480px) {
.osm-map-container {
margin: 15px 0;
}
.osm-map {
height: 250px;
border-radius: 2px;
}
.osm-map-card {
border-radius: 4px;
}
.osm-map-title {
padding: 12px 15px 8px;
font-size: 1.1em;
}
.osm-map-excerpt,
.osm-map-meta {
padding: 12px 15px;
}
}  .wp-block-group .osm-map-container,
.entry-content .osm-map-container,
.post-content .osm-map-container {
margin: 1.5em 0;
} .widget .osm-map-container {
margin: 1em 0;
}
.widget .osm-map {
height: 200px;
} .wp-block .osm-map-container {
margin: 0;
} @media print {
.osm-map-controls {
display: none !important;
}
.osm-map {
border: 2px solid #000 !important;
background: #fff !important;
break-inside: avoid;
}
.osm-map-container {
break-inside: avoid;
}
.osm-maps-grid {
grid-template-columns: 1fr !important;
}
}  @media (prefers-contrast: high) {
.osm-map {
border: 2px solid #000;
}
.osm-fullscreen-btn {
background: #fff;
border: 2px solid #000;
color: #000;
}
.osm-map-error {
background: #fff;
border: 2px solid #000;
color: #000;
}
} @media (prefers-reduced-motion: reduce) {
.osm-fullscreen-btn,
.osm-map-thumbnail img,
.osm-map-link {
transition: none;
}
.osm-map-card {
transition: none;
}
} .osm-map:focus-within {
outline: 2px solid #0073aa;
outline-offset: 2px;
} @media (prefers-color-scheme: dark) {
.osm-map {
border-color: #444;
background-color: #2a2a2a;
}
.osm-map-loading {
background-color: #2a2a2a;
color: #ccc;
}
.osm-map-error {
background-color: #3a2525;
border-color: #5a3535;
color: #ff6b6b;
}
.osm-fullscreen-btn {
background: rgba(40, 40, 40, 0.9);
border-color: #555;
color: #fff;
}
.osm-fullscreen-btn:hover {
background: #333;
}
.osm-map-card {
background: #2a2a2a;
border-color: #444;
}
.osm-map-title a {
color: #e1e5e9;
}
.osm-map-title a:hover {
color: #4a9eff;
}
.osm-map-excerpt {
color: #ccc;
}
.osm-map-meta {
background: #1a1a1a;
border-color: #333;
}
.osm-map-link {
background: #4a9eff;
}
.osm-map-link:hover {
background: #357abd;
}
}  .osm-numbered-marker {
background: transparent !important;
border: none !important;
}
.osm-numbered-marker .marker-pin {
position: relative;
background: #333;
border: 3px solid #fff;
border-radius: 50%;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
transition: all 0.2s ease;
}
.osm-numbered-marker .marker-pin::after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 8px solid #333;
transition: all 0.2s ease;
}
.osm-numbered-marker .marker-number {
color: #fff;
font-weight: bold;
font-size: 12px;
line-height: 1;
} .osm-numbered-marker:hover .marker-pin {
background: #0073aa;
transform: scale(1.1);
}
.osm-numbered-marker:hover .marker-pin::after {
border-top-color: #0073aa;
} .osm-marker-highlight .marker-pin {
background: #ff4757 !important;
transform: scale(1.3) !important;
animation: pulse 1s ease-in-out infinite alternate;
}
.osm-marker-highlight .marker-pin::after {
border-top-color: #ff4757 !important;
}
@keyframes pulse {
0% { transform: scale(1.3); }
100% { transform: scale(1.4); }
} .osm-numbered-marker[data-number="1"] .marker-pin { background: #e74c3c; }
.osm-numbered-marker[data-number="1"] .marker-pin::after { border-top-color: #e74c3c; }
.osm-numbered-marker[data-number="2"] .marker-pin { background: #3498db; }
.osm-numbered-marker[data-number="2"] .marker-pin::after { border-top-color: #3498db; }
.osm-numbered-marker[data-number="3"] .marker-pin { background: #2ecc71; }
.osm-numbered-marker[data-number="3"] .marker-pin::after { border-top-color: #2ecc71; }
.osm-numbered-marker[data-number="4"] .marker-pin { background: #f39c12; }
.osm-numbered-marker[data-number="4"] .marker-pin::after { border-top-color: #f39c12; }
.osm-numbered-marker[data-number="5"] .marker-pin { background: #9b59b6; }
.osm-numbered-marker[data-number="5"] .marker-pin::after { border-top-color: #9b59b6; }  .osm-annotation-ref {
font-weight: normal;
margin-left: 1px;
}
.osm-ref-link {
color: #0073aa;
text-decoration: none;
font-weight: bold;
padding: 1px 3px;
border-radius: 2px;
transition: all 0.2s ease;
}
.osm-ref-link:hover {
background: #0073aa;
color: #fff;
text-decoration: none;
}
.osm-ref-highlight {
background: #fff3cd !important;
padding: 2px 4px !important;
border-radius: 3px !important;
animation: fadeHighlight 2s ease-out;
}
@keyframes fadeHighlight {
0% { background: #ffeaa7; }
100% { background: transparent; }
}
.osm-annotation-footnotes {
margin: 2em 0;
padding: 1.5em;
background: #f8f9fa;
border-left: 4px solid #0073aa;
border-radius: 4px;
}
.osm-annotation-footnotes h4 {
margin-top: 0;
margin-bottom: 1em;
color: #2c3e50;
font-size: 1.2em;
}
.osm-footnotes-list {
margin: 0;
padding-left: 1.5em;
list-style: decimal;
}
.osm-footnotes-list li {
margin-bottom: 0.8em;
line-height: 1.6;
padding: 0.5em;
border-radius: 3px;
transition: all 0.2s ease;
cursor: pointer;
}
.osm-footnotes-list li:hover {
background: rgba(0, 115, 170, 0.1);
}
.osm-footnote-highlight {
background: #fff3cd !important;
animation: fadeHighlight 2s ease-out;
}
.back-to-ref {
color: #666;
text-decoration: none;
font-size: 0.9em;
margin-left: 0.5em;
opacity: 0.7;
transition: opacity 0.2s ease;
}
.back-to-ref:hover {
opacity: 1;
color: #0073aa;
text-decoration: none;
}
.coordinates {
font-family: monospace;
font-size: 0.85em;
color: #666;
font-weight: normal;
}
.osm-popup-footnote-link {
font-size: 0.9em;
color: #0073aa;
text-decoration: none;
display: inline-block;
margin-top: 5px;
}
.osm-popup-footnote-link:hover {
text-decoration: underline;
} @media (max-width: 768px) {
.osm-annotation-footnotes {
margin: 1.5em 0;
padding: 1em;
}
.osm-footnotes-list {
padding-left: 1.2em;
}
.osm-footnotes-list li {
padding: 0.4em;
font-size: 0.95em;
}
.coordinates {
display: block;
margin-top: 2px;
}
}
.data-source-section {
display: block !important;
background: red !important;
} .osm-annotation-marker {
background: transparent !important;
border: none !important;
}
.osm-annotation-number {
width: 30px;
height: 30px;
background: #333;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 14px;
border: 2px solid #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.osm-marker-highlight .osm-annotation-number {
background: #e74c3c;
animation: marker-pulse 2s ease-in-out;
}
@keyframes marker-pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.2); }
}
.osm-annotation-popup {
text-align: center;
}
.osm-annotation-popup .annotation-label {
font-style: italic;
color: #666;
} .osm-ref-link {
text-decoration: none;
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 3px;
padding: 2px 6px;
font-weight: bold;
color: #495057;
font-size: 0.85em;
}
.osm-ref-link:hover {
background: #e9ecef;
text-decoration: none;
} .osm-annotation-footnotes {
margin: 2em 0;
padding: 1.5em;
background: #f8f9fa;
border-left: 4px solid #007cba;
border-radius: 4px;
}
.osm-footnotes-list {
list-style: decimal;
padding-left: 1.5em;
}
.osm-footnotes-list li {
margin-bottom: 0.5em;
}
.back-to-ref {
margin-left: 0.5em;
text-decoration: none;
color: #007cba;
font-weight: bold;
}
.back-to-ref:hover {
text-decoration: none;
color: #005a87;
}.alignleft,
.alignright {
max-width: 50%; 
}
.alignleft {
float: left;
margin: 0.5rem 1.5rem 1rem 0;
}
.alignright {
float: right;
margin: 0.5rem 0 1rem 1.5rem;
}
.aligncenter {
display: block;
margin: 1rem auto;
}
.alignleft img,
.alignright img {
width: 100%;
height: auto;
display: block;
}
.aligncenter img,
.alignnone img {
max-width: 100%;
height: auto;
display: block;
}
.alignnone {
float: none;
margin: 0.5rem 0;
} .entry-content::after,
.post-content::after {
content: '';
display: table;
clear: both;
}
@media (max-width: 640px) {
.break-desktop br {
display: none;
}
}
@media (max-width: 768px) {
.alignleft,
.alignright {
float: none;
max-width: 100%;
margin: 1rem 0;
display: block;
}
}
a.header-btn {text-decoration: none;}
.page-content ul {
margin: 0  !important;
padding: 0 1rem;
}
.page-content li, .single-layout li {
margin-left: 2rem;
padding: 0.3rem 0.5rem;
}
.page-content ul li {
font-size: 1.1rem !important;
}
.sidebar-section h3 {
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 0.5px;
}
.sidebar-section ul {
padding: 0;
margin: 0 0 2rem;
font-size: 0.9rem;
}
.sidebar-menu ul {
padding: 0 !important;
margin: 0 ;
}
.sidebar-menu li {
padding: 0.4rem 0;
margin: 0 !important;
list-style: none;
}
.sidebar-menu li a {
text-decoration: none;
}
.menu-count {
font-size: 0.7rem;
color: var(--text-color);
}  .search-results-container .forum-main {
max-width: 860px;
margin: 0 auto;
padding: 0 1rem;
} .search-term {
color: var(--primary-color);
font-style: italic;
} .search-result-item {
display: block; }
.search-result-link {
display: block;
text-decoration: none;
color: inherit;
padding: 1rem 1.25rem;
border-radius: var(--border-radius);
transition: var(--transition);
}
.search-result-link:hover,
.search-result-link:focus {
background-color: var(--bg-secondary);
color: var(--primary-color);
}
.search-result-link:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
} .search-result-meta {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.35rem;
} .post-type-badge {
display: inline-block;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
padding: 0.2em 0.6em;
border-radius: 3px;
color: #fff;
line-height: 1.4;
} .badge--post {
background-color: var(--primary-color, #d65c45);
}
.badge--blueprint {
background-color: #2a7d4f; }
.badge--guidance {
background-color: #4a6fa5; }
.badge--question {
background-color: #7b5ea7; } .search-result-date {
font-size: 0.8rem;
color: var(--text-muted);
} .search-result-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.3rem;
color: var(--text-color);
}
.search-result-link:hover .search-result-title,
.search-result-link:focus .search-result-title {
color: var(--primary-color);
} .search-result-excerpt {
font-size: 0.9rem;
color: var(--text-muted);
margin: 0;
line-height: 1.5;
} .no-results {
padding: 2rem 1.25rem;
text-align: center;
}
.no-results h2 {
margin-bottom: 0.5rem;
}
.no-results p {
color: var(--text-muted);
margin-bottom: 1.5rem;
} .search-form--inline {
max-width: 480px;
margin: 0 auto;
} @media (prefers-reduced-motion: reduce) {
.search-result-link {
transition: none;
}
} .knowledge-base-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1rem;
}
.guidance-category {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px var(--shadow);
height: fit-content;
padding: 1.25rem;
margin-bottom: 1rem;
}
.guidance-category:hover {
border-color: var(--border-color-hover);
box-shadow: 0 4px 12px var(--shadow-hover);
transform: translateY(-2px);
}
.category-thumbnail img {
width: 100%;
height: auto;
object-fit: cover;
}
.category-content {
padding: var(--spacing-lg);
}
.category-title {
margin: 0 0 var(--spacing-md);
font-size: 1.25rem;
}
.category-title a {
text-decoration: none;
color: var(--text-primary);
}
.category-title a:hover {
color: var(--accent-primary);
}
.category-description {
color: var(--text-secondary);
margin-bottom: var(--spacing-lg);
line-height: 1.6;
}
.sub-guides h3 {
font-size: 1rem;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
border-bottom: 1px solid var(--border-light);
padding-bottom: var(--spacing-xs);
}
.sub-guides ul {
list-style: none;
margin: 0;
padding: 0;
}
.sub-guides li {
margin-bottom: var(--spacing-xs);
padding-left: var(--spacing-md);
position: relative;
}
.sub-guides li::before {
content: "→";
position: absolute;
left: 0;
color: var(--accent-primary);
font-weight: bold;
}
.sub-guides a {
text-decoration: none;
color: var(--text-primary);
font-size: var(--font-size-sm);
}
.sub-guides a:hover {
color: var(--accent-primary);
}
.more-guides a {
color: var(--accent-primary);
font-weight: 500;
}  .guidance-tree {
margin: 0;
padding: 0.2rem 0;
list-style: none;
line-height: 1.5;
}
.guidance-tree ul {
margin: 0;
padding: 0;
list-style: none;
} .tree-item,
.tree-child,
.tree-grandchild {
list-style: none;
margin: 0;
padding: 0;
} .tree-item {
margin-bottom: 0.25rem;
}
.tree-item > .tree-link {
display: block;
padding: 0.5rem 0;
text-decoration: none;
color: inherit;
font-weight: 500;
}
.tree-item > .tree-link:hover {
} .tree-children {
margin-left: 3rem;
margin-top: 0.25rem;
}
.tree-child {
margin-bottom: 0.125rem;
position: relative;
}
.tree-child > .tree-link {
display: block;
padding: 0.25rem 0;
text-decoration: none;
color: inherit;
position: relative;
padding-left: 2rem;
font-size: 0.95rem;
} .tree-child > .tree-link::before {
content: "–";
position: absolute;
left: 1rem; 
font-weight: normal;
}
.tree-child > .tree-link:hover {
} .tree-grandchildren {
margin-left: 2rem;
margin-top: 0.125rem;
}
.tree-grandchild {
margin-bottom: 0.125rem;
}
.tree-grandchild > .tree-link {
display: block;
padding: 0.2rem 0;
text-decoration: none;
color: inherit;
font-size: 0.9rem;
position: relative;
padding-left: 3rem;
} .tree-grandchild > .tree-link::before {
content: "‒";
position: absolute;
left: 2rem;
font-weight: normal;
font-size: 0.9em;
}
.tree-grandchild > .tree-link:hover {
} .tree-toggle {
background: #f0f0f0;
border: 1px solid var(--border-color);
padding: 4px 6px;
margin: 1px;
margin-right: 0.2rem;
cursor: pointer;
font-family: monospace;
font-size: 0.75em;
font-weight: bold;
line-height: 1;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
}
.tree-toggle:hover {
background: #e8e8e8;
border-color: var(--border-color-hover);
}
.tree-toggle:active {
background: var(--secondary-color);
}
.tree-toggle:focus {
outline: 1px solid yellow;
outline-offset: 1px;
} .tree-link.current-page {
font-weight: 800;
}
.tree-link.current-page::after {
content: " ←";
font-weight: normal;
margin-left: 0.5rem;
} .collapsed .tree-children,
.collapsed .tree-grandchildren {
display: none;
} @media (max-width: 768px) {
.tree-children,
.tree-grandchildren {
margin-left: 1.5rem;
}
.tree-item > .tree-link,
.tree-child > .tree-link,
.tree-grandchild > .tree-link {
padding-top: 0.375rem;
padding-bottom: 0.375rem;
}
}