/*
Theme Name: bloggerly Child
Template: bloggerly
Author: Karan Makani
Author URI: https://profiles.wordpress.org/makanikaran/
Description: A minimalist, responsive and clean blogging theme with Dark Mode support.
Tags: blog,news,two-columns
Version: 1.0.5.1782171480
Updated: 2026-06-22 23:38:00
*/

/* ==================================================
BEESAYATV DESIGN SYSTEM
Quiet Cebu trail archive identity
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {

```
/* Typography */

--font-heading: "Nunito Sans", sans-serif;
--font-body: "Nunito Sans", sans-serif;

/* Backgrounds */

--bg-body: #F5F2E8;
--bg-card: #FFFDF6;

/* Text */

--text-color: #263525;
--link-color: #263525;

/* Outdoor palette */

--primary-color: #6E7359;
--hover-color: #4D533F;

--secondary-color: #9A9D84;
--border-color: #D8D2BF;
--muted-color: #6F735F;
```

}

/* ==================================================
GLOBAL
================================================== */

body {
background: var(--bg-body);
color: var(--text-color);
font-family: var(--font-body);
}

a {
color: var(--link-color);
}

/* ==================================================
BRANDING
================================================== */

.site-title,
.site-title a {
font-family: "Playfair Display", serif;
font-weight: 700;
letter-spacing: .5px;
}

/* ==================================================
TITLES
================================================== */

.entry-title,
.post-card .entry-title,
h1,
h2,
h3 {
font-family: var(--font-body);
font-weight: 700;
}

/* ==================================================
REMOVE BLOG FEEL
================================================== */

.entry-meta {
display: none;
}

/* ==================================================
POST / TRAIL CARDS
================================================== */

.post-card {
background: var(--bg-card);
border-radius: 16px;
}

.post-card img {
border-radius: 14px 14px 0 0;
}

.post-card .entry-title {
line-height: 1.3;
}

/* ==================================================
SINGLE TRAIL PAGE
================================================== */

.single .entry-title {
font-size: 28px;
line-height: 1.25;
margin-bottom: 25px;
border-bottom: 1px solid var(--border-color);
padding-bottom: 15px;
}

.single .site-main,
.container {
max-width: 1000px;
}

.single .entry-content {
max-width: 850px;
margin: 0 auto;
}

.single .entry-content p {
line-height: 1.8;
}

.single img {
border-radius: 14px;
}

.single .entry-content img {
margin: 20px 0;
}

/* ==================================================
TABLES
Useful for Trail Index
================================================== */

table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}

table th,
table td {
padding: 12px;
border: 1px solid var(--border-color);
text-align: left;
}

table th {
background: #E8DFC8;
}

/* ==================================================
NAVIGATION DROPDOWN FIX
================================================== */

.main-navigation li {
position: relative;
}

.main-navigation .sub-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
min-width: 190px;
padding: 10px 0;
margin: 0;
list-style: none;
background: #FFFDF6;
border: 1px solid var(--border-color);
border-radius: 12px;
box-shadow: 0 8px 25px rgba(77,83,63,.15);
z-index: 9999;
}

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

.main-navigation .sub-menu a {
display: block;
padding: 10px 18px;
white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
background: #E8DFC8;
color: #4D533F;
}

.main-navigation .sub-menu a::after {
display: none;
}

/* ==================================================
REMOVE DARK MODE
================================================== */

.dark-mode-toggle {
display: none !important;
}

/* ==================================================
REMOVE COMMENTS
================================================== */

#comments,
.comments,
.comments-area,
.wp-block-post-comments,
.wp-block-comments-query-loop,
.wp-block-comment-template,
.wp-block-post-comments-form {
display: none !important;
}

/* ==================================================
REMOVE CATEGORY / TAG FOOTER
================================================== */

.entry-footer {
display: none !important;
}

/* ==================================================
MOBILE READING EXPERIENCE
================================================== */

@media (max-width: 768px) {

    .single .entry-content {
        font-size: 1.15rem;
        line-height: 1.9;
    }
}