/*
Theme Name: Watercraft
Theme URI:
Author:
Author URI:
Description: A clean, readable blog theme with a fixed sidebar navigation. Features customizable blog header, title, subtitle, and three sidebar menus (Quick Links, Tags, Archive). Optimized for comfortable reading.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: watercraft
Tags: blog, two-columns, left-sidebar, custom-logo, custom-menu, featured-images
*/

/* ==========================================================================
   Self-Hosted Fonts
   ========================================================================== */

/* PT Serif */
@font-face {
    font-family: 'PT Serif';
    src: url('fonts/pt-serif-v19-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('fonts/pt-serif-v19-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('fonts/pt-serif-v19-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('fonts/pt-serif-v19-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Roboto Condensed */
@font-face {
    font-family: 'Roboto Condensed';
    src: url('fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('fonts/roboto-condensed-v31-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Source Sans 3 */
@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/source-sans-3-v19-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/source-sans-3-v19-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/source-sans-3-v19-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/source-sans-3-v19-latin-600italic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */

:root { 
    --font-title: 'Roboto Condensed', sans-serif;
    --font-body: 'PT Serif', serif;
    --font-meta: 'Source Sans 3', sans-serif;

    --font-size-xs: 0.85rem;    /* Meta, captions, buttons, labels */
    --font-size-sm: 1rem;       /* Nav links */
    --font-size-base: 1.2rem;   /* Paragraph text (post, sidebar) */
    --font-size-md: 1.5rem;     /* H3, panel headers */
    --font-size-lg: 1.75rem;    /* H2, archive titles */
    --font-size-xl: 2.25rem;    /* Site title, post titles */

    --letter-spacing-tight: 0.02em;  /* Headings, titles */
    --letter-spacing-normal: 0.05em; /* Uppercase UI text */
    --letter-spacing-wide: 0.08em;   /* Small labels, section titles */

    --line-height-tight: 1.2;   /* Headings, titles */
    --line-height-normal: 1.3;  /* UI text, subtitles */
    --line-height-loose: 1.75;  /* Body/reading text */

    --color-brown: #430400;
    --color-orange: #CB5521;
    --color-beige: #F8EDDB;
    --color-grey: #787673;
    --color-light-grey: #E5E3E1;
    --color-white: #ffffff;
    --color-black: #000000;

    --sidebar-width: 320px;
    --mobile-header-height: 100px;
    --admin-bar-height: 0px;

    --radius: 4px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-black);
    background-color: var(--color-white);
}

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

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

ul, ol {
    list-style-position: inside;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.site-sidebar {
    position: fixed;
    top: var(--admin-bar-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--admin-bar-height));
    background-color: var(--color-brown);
    color: var(--color-white);
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.sidebar-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-logo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: var(--radius);
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-title {
    font-family: var(--font-title);
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.site-title a {
    color: var(--color-white);
}

.site-title a:hover {
    opacity: 0.9;
}

.site-subtitle {
    font-family: var(--font-title);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: var(--line-height-normal);
    opacity: 0.9;
    margin-bottom: 15px;
    width: 97%;
}

.site-main-link {
    display: inline-block;
    font-family: var(--font-title);
    font-size: var(--font-size-base);
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.site-main-link:hover {
    opacity: 1;
}

.sidebar-nav {
    margin-top: auto;
    padding-top: 30px;
}

.sidebar-menu-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sidebar-menu-btn {
    font-family: var(--font-title);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.sidebar-menu-btn:hover,
.sidebar-menu-btn.active {
    opacity: 1;
}

.sidebar-menu-btn.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Sidebar Menu Panels */
.sidebar-menu-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-brown);
    padding: 30px;
    overflow-y: auto;
    z-index: 10;
    flex-direction: column;
}

.sidebar-menu-panel.active {
    display: flex;
}

.panel-content {
    flex: 1;
}

.panel-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 2px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.panel-back:hover {
    opacity: 1;
}

.panel-back::before {
    content: '\2039';
    font-size: var(--font-size-md);
    line-height: 0;
    position: relative;
    top: -2px;
}

.panel-header {
    font-family: var(--font-title);
    font-size: var(--font-size-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 10px;
}

.panel-description {
    font-family: var(--font-title);
    font-size: var(--font-size-base);
    color: var(--color-white);
    font-weight: 400;
    line-height: var(--line-height-normal);
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Panel Section Titles (shared by sidebar and mobile) */
.panel-section-title {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-white);
    opacity: 0.6;
    margin-top: 25px;
}

.panel-section-title:first-of-type {
    margin-top: 0;
}

/* Panel Lists (shared by sidebar and mobile) */
.panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.panel-list a {
    font-family: var(--font-meta);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-white);
    transition: opacity 0.2s ease;
}

.panel-list a:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.site-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.content-wrapper {
    max-width: min(750px, calc(100vw - var(--sidebar-width) - 120px));
    margin-left: 30px;
    padding: 60px 40px;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ==========================================================================
   Posts
   ========================================================================== */

.post {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--color-light-grey);
}

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

.post-meta {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    color: var(--color-grey);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
}

.post-meta .post-date {
    font-weight: 600;
}

.post-meta .post-meta-label {
    text-transform: lowercase;
    font-style: italic;
    font-weight: 400;
}

.post-meta .post-author,
.post-meta .post-categories {
    font-weight: 600;
    color: var(--color-black);
}

.post-meta .post-categories a {
    color: var(--color-brown);
    font-style: normal;
}

.post-meta .post-categories a:hover {
    text-decoration: underline;
}

.post-title {
    font-family: var(--font-title);
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 25px;
    color: var(--color-black);
}

.post-title a {
    color: inherit;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--color-brown);
}

/* Post Content */
.post-content {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-black);
}

.post-content p {
    margin-bottom: 1.5em;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: var(--line-height-normal);
    margin-top: 2em;
    margin-bottom: 0.75em;
    color: var(--color-black);
}

.post-content h2 {
    font-size: var(--font-size-lg);
}

.post-content h3 {
    font-size: var(--font-size-md);
}

.post-content h4 {
    font-size: var(--font-size-base);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style-position: outside;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content blockquote {
    border-left: 3px solid var(--color-brown);
    padding-left: 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--color-grey);
}

.post-content a {
    color: var(--color-orange);
    font-weight: 600;
}

.post-content a:has(img) {
    display: block;
    width: fit-content;
    text-decoration: none;
}

.post-content img {
    margin: 1.5em 0;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.post-content figure {
    margin: 1.5em 0;
    max-width: 100%;
}

.post-content figure img {
    margin: 0;
}

.post-content figcaption {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    color: var(--color-grey);
    margin-top: 0.5em;
    text-align: center;
}

.post-content iframe,
.post-content video,
.post-content embed,
.post-content object {
    max-width: 100%;
}

.post-content .wp-block-image {
    margin: 1.5em 0;
}

.post-content .wp-block-image img {
    margin: 0;
}

.post-content pre,
.post-content code {
    font-family: 'Courier New', monospace;
    background-color: var(--color-light-grey);
}

.post-content code {
    padding: 0.15em 0.4em;
    font-size: 0.9em;
}

.post-content pre {
    padding: 1em 1.25em;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.post-content pre code {
    padding: 0;
    background: none;
}


/* Post Tags */
.post-tags {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.post-tags-label {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-grey);
}

.post-tag {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-brown);
    background-color: var(--color-beige);
    padding: 4px 10px;
    border-radius: var(--radius);
    transition: opacity 0.2s ease;
}

.post-tag:hover {
    opacity: 0.7;
}

/* Featured Image */
.post-thumbnail {
    margin-bottom: 25px;
}

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

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    margin-top: 50px;
    padding: 10px 20px;
    background-color: var(--color-beige);
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination .page-prev,
.pagination .page-next {
    flex: 1;
}

.pagination .page-next {
    text-align: right;
}

.pagination .page-num {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pagination a,
.pagination span {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    line-height: 1;
}

.pagination a {
    color: var(--color-brown);
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.pagination a:hover {
    opacity: 0.7;
}

.pagination .page-numbers.current {
    font-weight: 700;
    color: var(--color-black);
    background-color: var(--color-white);
    border-radius: 100px;
    padding: 4px 6px;
    text-align: center;
}

/* ==========================================================================
   Page: Single Post
   ========================================================================== */

.single .post {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ==========================================================================
   Page: Archive & Categories
   ========================================================================== */

.archive-title {
    font-family: var(--font-title);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    padding: 10px 25px;
    background-color: var(--color-beige);
    border-radius: var(--radius);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.archive-clear {
    font-family: var(--font-title);
    font-size: var(--font-size-xs);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--color-grey);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.archive-clear:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Search Page
   ========================================================================== */

.search-page .search-form {
    font-family: var(--font-title);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    padding: 10px 20px;
    background-color: var(--color-beige);
    border-radius: var(--radius);
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.search-page .search-input {
    width: 100%;
    font-family: var(--font-title);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-black);
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.search-page .search-input::placeholder {
    color: var(--color-grey);
}

.search-page .search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.search-page .search-submit,
.search-page .search-clear {
    display: inline-block;
    font-family: var(--font-title);
    font-size: var(--font-size-xs);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--color-white);
    background-color: var(--color-black);
    border: none;
    border-radius: var(--radius);
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.search-page .search-clear {
    background-color: var(--color-grey);
}

.search-page .search-submit:hover,
.search-page .search-clear:hover {
    opacity: 0.7;
}

.search-result-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-light-grey);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item .post-meta {
    margin-bottom: 8px;
}

.search-result-title {
    font-family: var(--font-title);
    font-size: var(--font-size-md);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 10px;
}

.search-result-title a {
    color: var(--color-black);
    transition: color 0.2s ease;
}

.search-result-title a:hover {
    color: var(--color-brown);
}

.search-result-excerpt {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-grey);
}

.search-no-results {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-grey);
}

/* ==========================================================================
   Mobile Styles (≤768px)
   ========================================================================== */

/* Mobile Header - hidden by default, shown via media query */
.mobile-header {
    display: none;
    position: fixed;
    top: var(--admin-bar-height);
    left: 0;
    right: 0;
    background-color: var(--color-brown);
    color: var(--color-white);
    z-index: 200;
    padding: 15px 20px;
}

.mobile-header-inner {
    display: flex;
    gap: 15px;
}

.mobile-header .site-logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.mobile-header .site-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.mobile-site-title {
    font-family: var(--font-title);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.1;
}

.mobile-site-title a {
    color: var(--color-white);
}

.mobile-nav {
    display: flex;
    gap: 12px;
}

.mobile-nav-link {
    font-family: var(--font-meta);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    line-height: 1;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.mobile-nav-link:hover {
    opacity: 1;
}

.mobile-nav-link.active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Mobile Panels (About & Explore) */
.mobile-panel {
    display: none;
    position: fixed;
    top: calc(var(--admin-bar-height) + var(--mobile-header-height));
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-brown);
    z-index: 150;
    overflow-y: auto;
    padding: 30px 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-panel.active {
    transform: translateY(0);
}

.mobile-panel-content {
    max-width: 400px;
}

/* Responsive Breakpoint: Mobile (≤768px) - Keep in sync with js/main.js */
@media screen and (max-width: 768px) {
    :root {
        --font-size-lg: 1.5rem;
        --font-size-xl: 1.75rem;
    }

    html, body {
        overflow-x: hidden;
    }

    .site-wrapper {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .site-sidebar {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-panel {
        display: block;
    }

    .mobile-panel .panel-header {
        display: none;
    }

    .site-main {
        margin-left: 0;
        padding-top: var(--mobile-header-height);
        max-width: 100vw;
        overflow-x: hidden;
    }

    .content-wrapper {
        padding: 30px 20px;
        margin-left: 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .post-content img,
    .post-content iframe,
    .post-content video,
    .post-content embed,
    .post-content object,
    .post-content pre {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .post-content pre {
        overflow-x: auto;
    }

    .post {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .pagination .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .search-page .search-input {
        font-size: var(--font-size-lg);
    }
}

@media screen and (min-width: 1500px) {
    body {
        background-color: white;
    }

    .site-wrapper {
        position: relative;
        max-width: calc(var(--sidebar-width) + 750px + 120px);
        margin: 0 auto;
        background-color: var(--color-white);
    }

    .site-sidebar {
        position: sticky;
        top: calc(var(--admin-bar-height) + 32px);
        left: 0;
        width: var(--sidebar-width);
        min-width: var(--sidebar-width);
        height: calc(100vh - var(--admin-bar-height) - 70px);
        border-radius: var(--radius);
        align-self: flex-start;
    }

    .site-main {
        margin-left: 0;
        min-height: 100vh;
    }

    .content-wrapper {
        margin-left: 30px;
        margin-right: 30px;
    }
}

/* ==========================================================================
   WordPress Admin Bar Adjustment
   ========================================================================== */

.admin-bar {
    --admin-bar-height: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar {
        --admin-bar-height: 46px;
    }

    /* Keep admin bar fixed on mobile (WordPress makes it absolute below 600px) */
    #wpadminbar {
        position: fixed !important;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--color-light-grey);
    clip: auto !important;
    clip-path: none;
    color: var(--color-black);
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
