/* ==========================================================================
   Flavor Theme — Main Stylesheet
   Version: 1.0.0
   No CDN. No frameworks. Hand-written.
   ========================================================================== */

/* ---------- Reset ---------- */

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ---------- Accessibility ---------- */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal;
}

.screen-reader-text:focus {
    clip: auto;
    display: block;
    height: auto;
    width: auto;
    position: fixed;
    top: 5px;
    inset-inline-start: 5px;
    background: #000;
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 100000;
    font-size: 0.875rem;
}

/* ---------- Layout ---------- */

.container {
    max-width: 960px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.container-narrow {
    max-width: 720px;
}

/* ---------- WordPress Admin Bar Override ---------- */

html.wp-toolbar {
    padding-top: 0 !important;
}

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ---------- Top Bar (Secondary Nav) ---------- */

.top-bar {
    background: transparent;
    border-bottom: 2px solid #000;
    font-size: 0.75rem;
}

.top-bar .container {
    display: flex;
}

.top-bar-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.top-bar-list li {
    display: inline;
}

.top-bar-list a {
    display: block;
    padding: 0.375rem 0.625rem;
    color: #555;
    font-weight: 400;
    transition: color 0.15s ease;
}

.top-bar-list a:hover {
    color: #000;
}

/* ---------- Header ---------- */

.site-header {
    border-bottom: 2px solid #000;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 2rem;
}

.site-brand a {
    display: flex;
    align-items: center;
}

.site-brand img {
    height: 2.25rem;
    width: auto;
}

.site-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ---------- Navigation ---------- */

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.main-nav .nav-list li {
    position: relative;
}

.main-nav .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: background 0.15s ease;
    border-radius: 0.25rem;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list .current-menu-item > a,
.main-nav .nav-list .current_page_item > a {
    background: #f0f0f0;
}

/* Dropdown */
.main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 12rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    padding: 0.375rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10000;
    text-align: right;
    direction: rtl;
}

.main-nav .nav-list li:hover > .sub-menu {
    display: block;
}

.main-nav .sub-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 0;
    text-align: right;
}

.main-nav .sub-menu a:hover {
    background: #f5f5f5;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: #111;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Header Search ---------- */

.main-nav .header-search-toggle {
    margin-inline-start: 0.25rem;
}

.header-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #111;
    display: flex;
    align-items: center;
    transition: color 0.15s ease;
}

.header-search-toggle:hover {
    color: #555;
}

/* Style: dropdown (default) */
.header-search-box.search-style-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: #fff;
    border-bottom: 2px solid #000;
    padding: 1rem 1.5rem;
    z-index: 999;
}

.header-search-box.search-style-dropdown.is-open {
    display: block;
}

.header-search-box.search-style-dropdown .search-form {
    max-width: 100%;
}

/* Style: inline */
.search-inline {
    margin-inline-start: 0.5rem;
    flex-shrink: 1;
    min-width: 0;
}

.search-inline .search-form {
    max-width: 14rem;
    border-color: #e0e0e0;
}

.search-inline .search-input {
    padding: 0.375rem 0.75rem;
}

.search-inline .search-submit {
    padding: 0.375rem 0.5rem;
}

/* Style: overlay */
.header-search-box.search-style-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

.header-search-box.search-style-overlay.is-open {
    display: flex;
}

.header-search-box.search-style-overlay .search-form {
    max-width: 36rem;
    width: 100%;
    border-color: rgba(255, 255, 255, 0.3);
}

.header-search-box.search-style-overlay .search-input {
    color: #fff;
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
}

.header-search-box.search-style-overlay .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-box.search-style-overlay .search-submit {
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem;
}

.header-search-box.search-style-overlay .search-submit:hover {
    color: #fff;
}

/* Style: modal */
.header-search-box.search-style-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.header-search-box.search-style-modal.is-open {
    display: flex;
}

.header-search-box.search-style-modal .search-form {
    max-width: 32rem;
    width: 100%;
    background: #fff;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-search-box.search-style-modal .search-input {
    font-size: 1.125rem;
    padding: 1rem 1.25rem;
}

.header-search-box.search-style-modal .search-submit {
    padding: 1rem;
}

/* Search close button */
.search-close {
    position: absolute;
    top: 1.5rem;
    inset-inline-end: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: opacity 0.15s ease;
}

.search-close:hover {
    opacity: 0.7;
}

.search-style-modal .search-close {
    color: #111;
}

/* ---------- Hero ---------- */

.hero {
    padding: 0;
}

.hero-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 2rem;
}

.hero-heading {
    font-size: 2.5rem;
    line-height: 1.3;
    max-width: 40rem;
}

.hero-btn {
    background: #fff;
    color: #000;
    font-size: 1rem;
}

.hero-btn:hover {
    background: #e0e0e0;
}

/* ---------- Section ---------- */

.section-title {
    font-size: 1.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #000;
    margin-bottom: 1.5rem;
}

.home-latest {
    padding: 3rem 0;
}

/* ---------- Post Card ---------- */

.post-card {
    border-bottom: 1px solid #e0e0e0;
}

.post-card:last-child {
    border-bottom: none;
}

.post-card-link {
    display: block;
    padding: 1.25rem 0;
    transition: background 0.15s ease;
}

.post-card-link:hover {
    background: #fafafa;
    margin-inline: -1rem;
    padding-inline: 1rem;
    border-radius: 0.375rem;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.post-card-meta {
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.post-card-meta time {
    display: inline;
}

.meta-sep {
    margin-inline: 0.5rem;
    color: #ccc;
}

.post-card-excerpt {
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.6;
}

/* ---------- Archive ---------- */

.archive-page {
    padding: 2.5rem 0;
}

.archive-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.archive-title {
    font-size: 1.5rem;
}

.archive-desc {
    margin-top: 0.5rem;
    color: #555;
    font-size: 1rem;
}

/* ---------- Pagination ---------- */

.pagination {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.pagination .page-numbers li {
    display: inline;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
    display: inline-block;
    min-width: 2.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
    text-align: center;
    transition: all 0.15s ease;
}

.pagination .page-numbers a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagination .page-numbers .current {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ---------- Single Post ---------- */

.single-post,
.single-page {
    padding: 0;
}

.entry-header {
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.8125rem;
    color: #666;
}

.entry-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

.entry-thumbnail img {
    width: 100%;
}

/* ---------- Prose (content) ---------- */

.prose p {
    margin-bottom: 1.5rem;
}

.prose h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.prose a {
    color: #0000ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: #000;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-inline-start: 1.5rem;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 0.375rem;
}

.prose blockquote {
    border-inline-start: 3px solid #000;
    padding-inline-start: 1.25rem;
    margin-inline: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #333;
}

.prose img {
    border-radius: 50%;
    margin-bottom: 1.5rem;
    max-width: 180px;
    height: auto;
    margin-inline: auto;
    display: block;
}

/* Reset round style for media contexts */
.prose .gallery-item img,
.prose .wp-playlist img,
.prose .wp-video img,
.prose .entry-thumbnail img,
.prose figure.wp-caption img {
    border-radius: 0.375rem;
    max-width: 100%;
    margin-inline: auto;
    display: block;
}

.prose figure {
    margin-bottom: 1.5rem;
}

.prose figcaption {
    font-size: 0.8125rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}

.prose pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.prose code {
    background: #f5f5f5;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.prose pre code {
    background: none;
    padding: 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.prose th,
.prose td {
    border: 1px solid #e0e0e0;
    padding: 0.5rem 0.75rem;
    text-align: inherit;
}

.prose th {
    background: #f5f5f5;
    font-weight: 700;
}

/* ---------- Entry Footer / Tags ---------- */

.entry-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.entry-tags {
    font-size: 0.875rem;
}

.entry-tags a {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: #f0f0f0;
    border-radius: 0.25rem;
    margin-inline-end: 0.375rem;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    transition: background 0.15s ease;
}

.entry-tags a:hover {
    background: #000;
    color: #fff;
}

.tags-label {
    font-weight: 600;
    margin-inline-end: 0.5rem;
}

/* ---------- Post Navigation ---------- */

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #000;
}

.post-nav-link {
    display: block;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease;
}

.post-nav-link:hover {
    border-color: #000;
}

.post-nav-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.25rem;
}

.post-nav-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-nav-next {
    text-align: start;
    grid-column: 2;
}

/* ---------- Search Form ---------- */

.search-form {
    display: flex;
    max-width: 28rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.search-form:focus-within {
    border-color: #000;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    background: transparent;
    outline: none;
}

.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.625rem 0.875rem;
    cursor: pointer;
    color: #666;
    transition: color 0.15s ease;
}

.search-submit:hover {
    color: #000;
}

/* ---------- 404 ---------- */

.error-404 {
    padding: 6rem 0;
    text-align: center;
}

.error-404 h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: #000;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background 0.15s ease;
}

.btn:hover {
    background: #333;
}

/* ---------- No Results ---------- */

.no-results {
    padding: 4rem 0;
    text-align: center;
}

.no-results h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.no-results p {
    color: #555;
    margin-bottom: 1.5rem;
}

.no-results .search-form {
    margin-inline: auto;
}

/* ---------- Footer ---------- */

.site-footer {
    border-top: 2px solid #000;
    margin-top: 2rem;
}

.footer-nav {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #555;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.copyright {
    font-size: 0.8125rem;
    color: #888;
}

/* ---------- WordPress Core ---------- */

.alignleft {
    float: inline-start;
    margin-inline-end: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: inline-end;
    margin-inline-start: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-inline: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8125rem;
    color: #666;
    margin-top: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    margin-inline: auto;
    justify-content: center;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0.375rem;
}

.gallery-item img {
    border-radius: 0.375rem;
    width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-caption {
    font-size: 0.75rem;
    color: #666;
    padding: 0.375rem 0;
    text-align: center;
}

/* ---------- Media: Audio / Video / Embeds ---------- */

.prose audio,
.prose video,
.wp-audio-shortcode,
.wp-video-shortcode {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.25rem;
    margin-inline: auto;
    border-radius: 0.375rem;
    outline: none;
}

.prose video {
    background: #000;
}

.wp-video {
    margin-bottom: 1.25rem;
    margin-inline: auto;
}

/* WordPress media player overrides */
.mejs-container {
    margin-bottom: 1.25rem;
    margin-inline: auto;
    border-radius: 0.375rem;
    overflow: hidden;
}

.mejs-controls {
    background: #111 !important;
}

.mejs-time-current {
    background: #000 !important;
}

.mejs-time-loaded {
    background: rgba(255, 255, 255, 0.2) !important;
}

.mejs-horizontal-volume-current {
    background: #000 !important;
}

/* ---------- Media: Playlist ---------- */

.wp-playlist {
    margin-bottom: 1.25rem;
    margin-inline: auto;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    overflow: hidden;
    background: #fafafa;
    padding: 0;
}

.wp-playlist-light {
    background: #fafafa;
    color: #111;
}

.wp-playlist-current-item {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.wp-playlist-current-item img {
    border-radius: 0.25rem;
    max-width: 60px;
    height: auto;
}

.wp-playlist-caption {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111;
}

.wp-playlist-item-meta {
    font-size: 0.8125rem;
    color: #666;
}

.wp-playlist-tracks {
    margin: 0;
    padding: 0;
}

.wp-playlist-item {
    padding: 0.625rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.15s ease;
}

.wp-playlist-item:last-child {
    border-bottom: none;
}

.wp-playlist-item:hover {
    background: #f0f0f0;
}

.wp-playlist-playing {
    background: #f0f0f0;
    font-weight: 600;
}

.wp-playlist-item-title {
    font-size: 0.875rem;
    color: #111;
}

.wp-playlist-item-length {
    font-size: 0.75rem;
    color: #888;
}

/* ---------- Media: Embeds (iframe/oembed) ---------- */

.prose iframe,
.wp-block-embed iframe {
    max-width: 100%;
    border: none;
    border-radius: 0.375rem;
    margin-bottom: 1.25rem;
    margin-inline: auto;
    display: block;
}

.wp-block-embed {
    margin-bottom: 1.25rem;
    margin-inline: auto;
    text-align: center;
}

.wp-block-embed__wrapper {
    position: relative;
}

/* Responsive video embed */
.wp-has-aspect-ratio .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.wp-has-aspect-ratio .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.375rem;
}

.page-links {
    margin-top: 1.5rem;
    font-weight: 600;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .header-inner {
        height: 3.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        inset-inline: 0;
        background: #fff;
        border-bottom: 2px solid #000;
        padding: 1rem 1.5rem;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav .nav-list a {
        padding: 0.75rem 0;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        padding-inline-start: 1rem;
        display: block;
    }

    .main-nav .sub-menu a {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }

    .hero-slide {
        min-height: 40vh;
        padding: 2.5rem 1.5rem;
    }

    .hero-heading {
        font-size: 1.75rem;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .entry-title {
        font-size: 1.5rem;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .post-nav-next {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;
    }

    .container {
        padding-inline: 1rem;
    }

    .hero-content p {
        font-size: 1.0625rem;
    }

    .entry-title {
        font-size: 1.375rem;
    }

    .error-404 h1 {
        font-size: 3.5rem;
    }
}

/* ---------- Print ---------- */

@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .post-nav,
    .pagination,
    .search-form {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: underline;
    }
}
