/* =========================================
   HIGHBRIEFING - BUREAUCRATIC ARCHIVE STYLES
   ========================================= */

*, *::before, *::after { 
    box-sizing: border-box; 
}

body {
    background-color: #f1f1f1;
    color: #1a1a1a;
    font-family: "Courier New", Courier, monospace;
    margin: 0; 
    padding: 0;
    line-height: 1.6;
}

.hb-wrapper {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header Section */
.hb-header {
    text-align: center;
    margin-bottom: 30px;
}
.hb-header a {
    text-decoration: none;
    color: #000;
}
.hb-header h1 {
    font-size: 52px;
    margin: 0;
    font-family: "Times New Roman", Times, serif;
    font-weight: 900;
    letter-spacing: -2px;
}
.hb-header p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-top: 5px;
}

/* Dropdown/Search Navigation Block */
.hb-registry-block {
    background: #fff;
    border: 2px solid #000;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 6px 6px 0px #ccc;
}
.hb-registry-label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
.hb-select-wrapper {
    position: relative;
    width: 100%;
}

.hb-registry-input {
    width: 100%;
    padding: 12px;
    font-family: inherit;
    border: 1px solid #000;
    background: #fdfdfd;
    font-size: 15px;
    cursor: pointer;
}
.hb-registry-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hb-registry-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
    color: #333;
}
.hb-registry-item:hover {
    background: #000;
    color: #fff;
}
.hb-registry-item span {
    font-size: 11px;
    opacity: 0.6;
    margin-right: 10px;
}

/* Main Content Area */
.hb-main {
    background: #fff;
    border: 1px solid #000;
    padding: 50px;
    min-height: 400px;
    position: relative;
    transition: opacity 0.2s;
}
.hb-meta-bar {
    font-size: 11px;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}
.hb-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 20px 0;
}
.hb-subtitle {
    font-style: italic;
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.4;
}
.hb-content {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 1.7;
}

/* Navigation Buttons */
.hb-controls {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #000;
    padding-top: 20px;
}
.hb-btn {
    background: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}
.hb-btn:hover { 
    background: #000; 
    color: #fff; 
}

/* Global Share Block */
.global-share-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    padding: 15px;
    border-top: 1px dashed #000;
    max-width: 100%;
}
.global-share-block span {
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
}
.global-share-block a {
    display: inline-flex;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}
.global-share-block a:hover {
    transform: translateY(-2px);
    opacity: 1;
}
.global-share-block img {
    width: 22px;
    height: 22px;
    display: block;
    filter: grayscale(100%);
}
.global-share-block a:hover img {
    filter: grayscale(0%);
}

/* Footer Return Link */
.hb-footer-return {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #000;
}
.hb-footer-return a {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    transition: color 0.2s;
}
.hb-footer-return a:hover {
    color: #000;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .hb-header h1 { font-size: 38px; }
    .hb-main { padding: 25px; }
    .hb-title { font-size: 24px; }
    .hb-controls { flex-direction: column; gap: 10px; }
    .hb-btn { width: 100%; }
}