/* ==========================================================================
   Penerbit FA — Mizan Style Complex Publisher Stylesheet
   Harmonized with natural Olive/Sage Moss Green palette from `logo_fa.jpeg`
   ========================================================================== */

:root {
    /* Theme Colors Harmonized from `logo_fa.jpeg` (#607000 Olive Moss Green) */
    --mz-blue: #5c6f00;            /* Primary Olive/Sage Moss */
    --mz-blue-light: #f1f6e6;      /* Soft Sage Botanical Tint */
    --mz-blue-dark: #435200;       /* Deep Forest Olive Accent */
    --mz-gray-100: #f8f9f6;        /* Warm Ivory/Earth White */
    --mz-gray-200: #f3f6ee;        /* Soft Sage Grey Section BG */
    --mz-gray-300: #e2e8da;        /* Earthy Border/Divider */
    --mz-border: #dce4d2;          /* Crisp Natural Border */
    
    /* Text & Typography */
    --text-main: #1e2412;          /* Deep Olive Charcoal */
    --text-sec: #475235;           /* Sage Grey Medium */
    --text-muted: #6f7a5d;         /* Muted Sage */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(30,36,18,0.05);
    --shadow-md: 0 4px 12px rgba(30,36,18,0.08);
    --shadow-lg: 0 12px 32px rgba(30,36,18,0.12);
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: #ffffff;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--mz-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--mz-blue-dark);
    text-decoration: underline;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= Navbar ================= */
.mz-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 14px 0;
    border-bottom: 1px solid var(--mz-border);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo-img {
    max-height: 46px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(92, 111, 0, 0.2);
}

.footer-logo-img {
    max-height: 52px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-text h1 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    font-weight: 600;
}

.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sec);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--mz-blue);
    background: var(--mz-gray-100);
    text-decoration: none;
}

.arrow-down {
    font-size: 10px;
    opacity: 0.6;
}

/* Megamenu Dropdown */
.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    min-width: 520px;
    z-index: 600;
    margin-top: 8px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--mz-blue);
    margin-bottom: 6px;
    border-bottom: 1px solid var(--mz-gray-200);
    padding-bottom: 4px;
}

.dropdown-item {
    font-size: 13.5px;
    color: var(--text-sec);
    padding: 6px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--mz-blue-light);
    color: var(--mz-blue);
    text-decoration: none;
}

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

.nav-search-btn {
    background: var(--mz-gray-100);
    border: 1px solid var(--mz-border);
    padding: 8px 18px;
    border-radius: 99px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-sec);
    transition: var(--transition);
}

.nav-search-btn:hover {
    border-color: var(--mz-blue);
    color: var(--mz-blue);
    background: #fff;
}

@media (max-width: 992px) {
    .navbar-nav { display: none; }
    .dropdown-menu { min-width: 280px; }
}

/* ================= Hero Search & Quote Section (`bg-mz-gray-200`) ================= */
.hero-search-section {
    background-color: var(--mz-gray-200);
    padding: 32px 0 56px;
    border-bottom: 1px solid var(--mz-border);
}

.search-box-wrapper {
    max-width: 720px;
    margin: 0 auto 36px;
}

.sbx-custom {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--mz-blue);
    border-radius: 99px;
    padding: 6px 6px 6px 24px;
    box-shadow: var(--shadow-md);
}

.sbx-custom input {
    flex: 1;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
    outline: none;
}

.sbx-custom input::placeholder {
    color: var(--text-muted);
}

.sbx-submit {
    background: var(--mz-blue);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.sbx-submit:hover {
    background: var(--mz-blue-dark);
}

/* Hero Showcase Grid */
.hero-showcase-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .hero-showcase-grid { grid-template-columns: 1fr; }
}

/* Left Hero: Quote & Image Card */
.card-hero-quote {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.card-hero-quote:hover {
    box-shadow: var(--shadow-lg);
}

@media (max-width: 650px) {
    .card-hero-quote { grid-template-columns: 1fr; }
}

.hero-quote-img-box {
    position: relative;
    height: 100%;
    min-height: 280px;
    background: #252b17;
    overflow: hidden;
}

.hero-quote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-hero-quote:hover .hero-quote-img {
    transform: scale(1.06);
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20,25,10,0.1) 0%, rgba(20,25,10,0.35) 100%);
}

.hero-quote-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-tag {
    display: inline-block;
    background: var(--mz-blue-light);
    color: var(--mz-blue);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    align-self: flex-start;
}

.hero-quote-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 14px;
    font-style: italic;
}

.hero-quote-desc {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.65;
    margin-bottom: 24px;
}

.hero-quote-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--mz-gray-200);
    padding-top: 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Right Hero Sorotan Panel */
.card-hero-sorotan {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.sorotan-header h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.mz-line-divider {
    display: flex;
    margin: 10px 0 16px;
}

.line-blue { width: 50px; height: 3px; background: var(--mz-blue); }
.line-gray { flex: 1; height: 3px; background: var(--mz-gray-300); }
.line-blue-lg { width: 80px; height: 3px; background: var(--mz-blue); }
.line-gray-lg { flex: 1; height: 3px; background: var(--mz-gray-300); }

.sorotan-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    max-height: 310px;
}

.sorotan-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mz-gray-200);
    display: flex;
    flex-direction: column;
}

.sorotan-item:last-child { border-bottom: none; padding-bottom: 0; }

.s-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mz-blue);
    margin-bottom: 3px;
}

.s-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 4px;
    transition: var(--transition);
}

.s-title:hover {
    color: var(--mz-blue);
    text-decoration: none;
}

.s-date {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ================= Main Catalog Sections ================= */
.main-catalog {
    padding-top: 48px;
    padding-bottom: 64px;
}

.catalog-section {
    margin-bottom: 56px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

.section-title.mz-c-blue { color: var(--mz-blue); }

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.btn-link-all {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--mz-blue);
    cursor: pointer;
}

/* Category Quick Pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    background: var(--mz-gray-100);
    border: 1px solid var(--mz-border);
    color: var(--text-sec);
    padding: 8px 16px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pill:hover, .pill.active {
    background: var(--mz-blue);
    color: #fff;
    border-color: var(--mz-blue);
    box-shadow: 0 4px 10px rgba(92, 111, 0, 0.25);
}

/* Grid Layouts */
.books-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.books-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

/* ================= Book Cards (Mizan Style `.card-mz`) ================= */
.card-mz {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
}

.card-mz:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #b0c080;
}

.card-img-box {
    background: var(--mz-gray-100);
    height: 260px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--mz-gray-200);
    overflow: hidden;
}

.card-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.card-mz:hover .card-img-box img {
    transform: scale(1.05);
}

/* Hardcover Mockup (Olive Moss Academic Edition) */
.mizan-hardcover {
    width: 84%;
    height: 94%;
    background: #fdfefc;
    border: 1.5px solid #c8d4b8;
    border-radius: 4px 10px 10px 4px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
    box-shadow: -6px 0 14px rgba(30,36,18,0.18), inset 6px 0 0 var(--mz-blue);
}

.mh-header {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--mz-blue);
}

.mh-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.35;
    margin: auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mh-footer {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    border-top: 1px solid var(--mz-gray-200);
    padding-top: 6px;
}

/* Card Body */
.card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mz-blue);
    margin-bottom: 4px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-author {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid var(--mz-gray-200);
    padding-top: 10px;
}

.card-click-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--mz-blue);
}

/* Empty State */
.empty-state-box {
    text-align: center;
    padding: 64px 20px;
    background: var(--mz-gray-100);
    border-radius: 16px;
    border: 1px dashed var(--mz-border);
}

.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state-box h5 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; margin-bottom: 6px; }

/* ================= Layanan & Kolaborasi Section ================= */
.layanan-section {
    margin-top: 64px;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 800px) {
    .layanan-grid { grid-template-columns: 1fr; }
}

.layanan-card {
    background: var(--mz-gray-100);
    border: 1px solid var(--mz-border);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}

.layanan-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    border-color: var(--mz-blue);
}

.l-icon { font-size: 36px; margin-bottom: 16px; }
.layanan-card h5 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.layanan-card p { font-size: 13.5px; color: var(--text-sec); margin-bottom: 18px; line-height: 1.6; }
.l-link { font-family: var(--font-heading); font-size: 13.5px; font-weight: 700; color: var(--mz-blue); }

/* About Section Card */
.about-card-mz {
    background: var(--mz-gray-100);
    border: 1px solid var(--mz-border);
    border-radius: 16px;
    padding: 32px;
}

.about-card-mz h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.about-card-mz p {
    font-size: 14.5px;
    color: var(--text-sec);
    line-height: 1.75;
}

/* ================= Modal (Mizan Detailed Window) ================= */
.modal-backdrop-mz {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 26, 12, 0.78);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-backdrop-mz.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-mz {
    background: #fff;
    border-radius: 16px;
    max-width: 960px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.modal-backdrop-mz.active .modal-content-mz {
    transform: translateY(0);
}

.modal-header-mz {
    padding: 18px 28px;
    border-bottom: 1px solid var(--mz-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--mz-gray-100);
}

.breadcrumb-mz {
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb-mz strong {
    color: var(--mz-blue);
}

.close-modal-btn {
    background: #fff;
    border: 1px solid var(--mz-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.close-modal-btn:hover {
    background: #ffe3e3;
    color: #e03131;
    border-color: #ffa8a8;
}

.modal-body-mz {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;
    padding: 36px;
}

@media (max-width: 768px) {
    .modal-body-mz { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

.cover-showcase-mz {
    background: var(--mz-gray-100);
    border: 1px solid var(--mz-border);
    border-radius: 12px;
    height: 400px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-showcase-mz img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.cover-showcase-mz .mizan-hardcover {
    width: 90%;
    height: 95%;
}

.modal-buttons {
    margin-top: 16px;
}

.btn-mz-outline {
    background: transparent;
    color: var(--mz-blue);
    border: 1px solid var(--mz-blue);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-mz-outline:hover {
    background: var(--mz-blue-light);
    text-decoration: none;
}

.category-badge-mz {
    display: inline-block;
    background: var(--mz-blue-light);
    color: var(--mz-blue);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.modal-book-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 8px;
}

.modal-book-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-sec);
    margin-bottom: 24px;
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid var(--mz-gray-200);
    margin-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--mz-blue);
}

.tab-btn.active {
    color: var(--mz-blue);
    border-bottom-color: var(--mz-blue);
}

.synopsis-box-mz {
    font-size: 14.5px;
    color: var(--text-sec);
    line-height: 1.8;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 12px;
    white-space: pre-wrap;
}

.table-specs-mz {
    width: 100%;
    border-collapse: collapse;
}

.table-specs-mz th, .table-specs-mz td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--mz-gray-200);
    font-size: 14px;
    text-align: left;
}

.table-specs-mz th {
    width: 38%;
    background: var(--mz-gray-100);
    color: var(--text-sec);
    font-weight: 700;
}

.table-specs-mz td {
    color: var(--text-main);
    font-weight: 600;
}

/* ================= Footer ================= */
.mz-footer {
    background: #192010;          /* Deep Forest Olive Charcoal */
    color: #cbd5c0;
    padding-top: 64px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.f-col h4, .f-col h5 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.f-col h5 { font-size: 16px; }

.f-desc, .f-contact {
    font-size: 13.5px;
    line-height: 1.7;
    color: #a4b096;
}

.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul li a { color: #a4b096; font-size: 13.5px; }
.f-col ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    font-size: 13px;
    color: #7a866b;
}

.d-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.f-links-bottom {
    display: flex;
    gap: 20px;
}

.f-links-bottom a { color: #7a866b; }
.f-links-bottom a:hover { color: #fff; }
