/* ============================================================
   BlogMate PRO (Bloglo) design for Winter CMS blog theme
   Measured from demo.peregrine-themes.com/bloglo/blogmate-pro/
   Body 17px | Container 1450px / 50px padding | px-based (rem = 10px bloglo scale)
   ============================================================ */

:root {
    --bloglo-primary: #FC6668;
    --bloglo-primary_15: #fd7d7f;
    --bloglo-primary_27: rgba(252, 102, 104, 0.27);
    --bloglo-primary_09: rgba(252, 102, 104, 0.09);
    --bloglo-white: #ffffff;
    --bloglo-text: #131315;
    --bloglo-heading: #131315;
    --bloglo-muted: #94979e;
    --bloglo-cream: #fff9f3;
    --bloglo-peach: #ffe7d2;
    --bloglo-card-border: rgba(190, 190, 190, 0.2);
    --bloglo-transition-primary: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

html body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fff;
    color: var(--bloglo-text);
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
    word-break: break-word;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--bloglo-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

a {
    color: var(--bloglo-primary);
    text-decoration: none;
    transition: var(--bloglo-transition-primary);
}

a:hover { color: #ff4c60; }

img { max-width: 100%; }

/* ============================================================
   Animated background pattern (BlogMate CSS)
   ============================================================ */

.bloglo-waves-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.bloglo-waves-wrapper .circle,
.bloglo-waves-wrapper .triangle,
.bloglo-waves-wrapper .square {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: var(--bloglo-primary_15);
    border-radius: 5px;
    opacity: 0.1;
    animation: rise 10s infinite ease-in;
}

.bloglo-waves-wrapper .square:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; }
.bloglo-waves-wrapper .square:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 5s; animation-delay: 1s; }
.bloglo-waves-wrapper .square:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 7s; animation-delay: 2s; }
.bloglo-waves-wrapper .square:nth-child(4) { width: 80px; height: 80px; left: 50%; animation-duration: 11s; animation-delay: 0s; }
.bloglo-waves-wrapper .square:nth-child(5) { width: 35px; height: 35px; left: 55%; animation-duration: 6s; animation-delay: 1s; }
.bloglo-waves-wrapper .square:nth-child(6) { width: 45px; height: 45px; left: 65%; animation-duration: 8s; animation-delay: 3s; }
.bloglo-waves-wrapper .square:nth-child(7) { width: 90px; height: 90px; left: 70%; animation-duration: 12s; animation-delay: 2s; }
.bloglo-waves-wrapper .square:nth-child(8) { width: 25px; height: 25px; left: 80%; animation-duration: 6s; animation-delay: 2s; }
.bloglo-waves-wrapper .square:nth-child(9) { width: 15px; height: 15px; left: 70%; animation-duration: 5s; animation-delay: 1s; }
.bloglo-waves-wrapper .square:nth-child(10) { width: 90px; height: 90px; left: 25%; animation-duration: 10s; animation-delay: 4s; }

.bloglo-waves-wrapper .triangle { clip-path: polygon(50% 0%, 0% 100%, 100% 100%); }
.bloglo-waves-wrapper .triangle:nth-child(11) { width: 20px; height: 22px; left: 50%; animation-delay: 0s; }
.bloglo-waves-wrapper .triangle:nth-child(12) { width: 30px; height: 28px; left: 25%; animation-delay: 12s; }
.bloglo-waves-wrapper .triangle:nth-child(13) { width: 30px; height: 28px; left: 80%; animation-delay: 4s; }
.bloglo-waves-wrapper .triangle:nth-child(14) { width: 40px; height: 38px; left: 30%; animation-delay: 18s; }
.bloglo-waves-wrapper .triangle:nth-child(15) { width: 50px; height: 40px; left: 70%; animation-delay: 1s; }

.bloglo-waves-wrapper .circle { border-radius: 100%; }
.bloglo-waves-wrapper .circle:nth-child(16) { width: 22px; height: 20px; left: 10%; animation-delay: 0s; }
.bloglo-waves-wrapper .circle:nth-child(17) { width: 84px; height: 80px; left: 45%; animation-delay: 12s; }
.bloglo-waves-wrapper .circle:nth-child(18) { width: 53px; height: 50px; left: 90%; animation-delay: 4s; }
.bloglo-waves-wrapper .circle:nth-child(19) { width: 53px; height: 50px; left: 60%; animation-delay: 18s; }
.bloglo-waves-wrapper .circle:nth-child(20) { width: 43px; height: 40px; left: 90%; animation-delay: 1s; }

@keyframes rise {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.1; }
    50%  { transform: translateY(-55vh) translateX(100px); }
    90%  { opacity: 0.1; }
    100% { transform: translateY(-110vh) translateX(-100px); opacity: 0; }
}

/* ============================================================
   Boxed container (Bloglo fw-contained: 1450px, 50px padding)
   ============================================================ */

.bloglo-container {
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 1450px;
    position: relative;
}

/* ============================================================
   Header (Bloglo layout-2: logo left, nav right, 95px tall)
   ============================================================ */

.site-header {
    background-color: #fff;
}

#bloglo-header-inner .bloglo-container,
.bloglo-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
}

.bloglo-logo {
    margin-right: 32px;
}

.bloglo-logo a {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bloglo-heading);
    line-height: 1.4;
    white-space: nowrap;
}

.bloglo-logo a:hover { color: var(--bloglo-primary); }

/* Navigation — Bloglo squarebox style */

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

.bloglo-nav .categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.bloglo-nav .category-item,
.bloglo-nav .categories .category-item {
    display: inline-block;
    padding: 4px 10px 4px 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bloglo-heading);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--bloglo-transition-primary);
}

.bloglo-nav .category-item:hover,
.bloglo-nav .categories .category-item:hover {
    color: #fff;
    background-color: var(--bloglo-primary);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

.bloglo-nav .category-item--active,
.bloglo-nav .categories .category-item--active {
    color: #fff;
    background-color: var(--bloglo-primary);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

/* ============================================================
   Main layout: content (70%) + right sidebar (30%)
   ============================================================ */

.site-main {
    padding: 40px 0 60px;
}

.bloglo-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.content-area {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 50px;
}

.bloglo-sidebar-container {
    flex: 0 0 30%;
    max-width: 30%;
}

/* ============================================================
   Horizontal blog list (BlogMate PRO signature)
   ============================================================ */

.posts {
    display: flex;
    flex-direction: column;
}

.post-item--full {
    margin-bottom: 48px;
}

.post-item--full:last-child { margin-bottom: 32px; }

.bloglo-blog-entry-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.post-thumb.entry-media {
    flex: 0 0 42%;
    margin-right: 30px;
    overflow: hidden;
    position: relative;
}

.post-thumb.entry-media > a {
    position: relative;
    display: block;
    overflow: hidden;
}

.post-thumb.entry-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.post-thumb.entry-media > a:hover img {
    transform: scale(1.05);
}

/* shine sweep on hover (Bloglo) */
.post-thumb.entry-media > a::before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: 0.6;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.post-thumb.entry-media > a:hover::before { animation: shine 1s; }

@keyframes shine {
    100% { left: 125%; }
}

.bloglo-entry-content-wrapper {
    flex: 1 1 0;
    min-width: 0;
}

/* Category badge (colored pill, Bloglo 4-color cycle) */

.post-category {
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-category .cat-link,
.post-category a {
    display: inline-block;
    padding: 6px 10px 4px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: var(--bloglo-transition-primary);
}

.post-category .cat-link:hover,
.post-category a:hover {
    color: #fff;
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.post-item:nth-child(4n + 1) .post-category .cat-link { background-color: #6178df; }
.post-item:nth-child(4n + 2) .post-category .cat-link { background-color: #48aab1; }
.post-item:nth-child(4n + 3) .post-category .cat-link { background-color: #a95edf; }
.post-item:nth-child(4n + 4) .post-category .cat-link { background-color: var(--bloglo-primary); }

/* Title */

.entry-header { margin: 0; }

.entry-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px 0;
}

.entry-title a {
    color: var(--bloglo-heading);
}

.entry-title a:hover { color: var(--bloglo-primary); }

/* Meta row */

.entry-meta {
    margin-top: 16px;
    font-size: 14px;
}

.entry-meta-elements {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--bloglo-text);
}

.entry-meta-elements span { display: inline-flex; align-items: center; gap: 4px; }

.entry-meta-elements i { opacity: 0.6; font-size: 13px; }

/* Summary */

.entry-summary {
    margin: 16px 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--bloglo-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read more button */

.entry-footer { margin: 8px 0 0 0; }

.bloglo-btn.btn-text-1 {
    display: inline-block;
    padding: 8px 24px;
    color: #fff;
    background-color: var(--bloglo-primary);
    line-height: 1.8;
    border-radius: 7px;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
    transition: var(--bloglo-transition-primary);
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 16px;
}

.bloglo-btn.btn-text-1:hover {
    color: #fff;
    background-color: #ff4c60;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_09);
}

/* ============================================================
   Sidebar widgets (BlogMate PRO: cream cards + pill titles)
   ============================================================ */

.bloglo-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.bloglo-widget {
    position: relative;
    background: var(--bloglo-cream);
    border: 1px solid var(--bloglo-peach);
    border-radius: 15px;
    padding: 25px;
}

.bloglo-widget .widget-title {
    position: absolute;
    left: 25px;
    top: -18px;
    z-index: 2;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 4px 25px;
    background-color: #fff;
    border: 1px solid rgba(39, 39, 39, 0.75);
    border-radius: 100px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.25px;
}

/* Categories widget */

.bloglo-sidebar-container .categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 6px;
}

.bloglo-sidebar-container .category-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    color: var(--bloglo-heading);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(190, 190, 190, 0.2);
    text-decoration: none;
}

.bloglo-sidebar-container .category-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--bloglo-primary);
    transition: var(--bloglo-transition-primary);
}

.bloglo-sidebar-container .category-item:hover {
    color: var(--bloglo-primary);
    padding-left: 5px;
}

.bloglo-sidebar-container .category-item--active {
    color: var(--bloglo-primary);
}

/* Recent posts widget */

.bloglo-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.bloglo-recent-post {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bloglo-recent-post__thumb {
    flex: 0 0 75px;
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 3px;
}

.bloglo-recent-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bloglo-recent-post__body {
    min-width: 0;
}

.bloglo-recent-post__title {
    display: block;
    color: var(--bloglo-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.bloglo-recent-post__title:hover { color: var(--bloglo-primary); }

.bloglo-recent-post__date {
    margin-top: 3px;
    font-size: 12px;
    color: var(--bloglo-muted);
}

/* About widget */

.widget-about__text {
    margin: 0;
    font-size: 14px;
    color: #666;
}


/* ---------- Neutralize old theme (dimsog app.css) bleed-through ---------- */

.post-item {
    background: transparent;
    border-radius: 0;
    margin-bottom: 48px;
    box-sizing: border-box;
}

.post-item .post-item__header {
    padding: 0;
}

.post-item .post-item__header a {
    color: inherit;
    text-decoration: none;
}

.post-item .post-item__header a:hover {
    color: var(--bloglo-primary);
}

.post-item .post-item__image {
    text-align: left;
    padding: 0;
}

.post-item .post-item__text {
    padding: 0;
}

.post-item .post-item-blocks {
    overflow: visible;
}

.post-item .post-item-blocks .post-item-blocks__text {
    padding: 0;
}

.post-item .post-item-blocks .post-item-blocks__image {
    padding: 0;
}

.post-item .post-item-blocks__text p {
    margin-bottom: 10px;
}

.post-item--full {
    margin-bottom: 48px;
}




/* ============================================================
   Dark mode (BlogMate PRO colors — measured from demo)
   ============================================================ */

/* Dark mode toggle (Bloglo sun/moon circle icon) */

.bloglo-darkmode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: relative;
}

.bloglo-darkmode input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bloglo-darkmode-toogle {
    width: 22px;
    height: 22px;
    border-radius: 1000px;
    color: var(--bloglo-heading);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.bloglo-darkmode-toogle::before {
    content: "\f185";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.bloglo-darkmode:hover .bloglo-darkmode-toogle {
    color: var(--bloglo-primary);
    transform: scale(1.1);
}

html[data-theme="dark"] .bloglo-darkmode-toogle::before {
    content: "\f186";
}

/* Dark theme surfaces */

html[data-theme="dark"] {
    --bloglo-primary_15: #fd7d7f;
    --bloglo-white: #333333;
    --bloglo-text: #ffffff;
    --bloglo-heading: #ffffff;
    --bloglo-muted: #8a8a8c;
    --bloglo-card-border: rgba(190, 190, 190, 0.2);
}

html[data-theme="dark"] body {
    background-color: #333333;
    color: #ffffff;
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] #bloglo-header-inner,
html[data-theme="dark"] .bloglo-nav-container {
    background-color: #333333;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .bloglo-logo a,
html[data-theme="dark"] .bloglo-nav .category-item,
html[data-theme="dark"] .entry-title a,
html[data-theme="dark"] .entry-summary,
html[data-theme="dark"] .tag-view__name {
    color: #ffffff;
}

html[data-theme="dark"] .bloglo-nav .category-item:hover,
html[data-theme="dark"] .bloglo-nav .category-item--active {
    color: #fff;
}

html[data-theme="dark"] .entry-meta-elements {
    color: #8a8a8c;
}

html[data-theme="dark"] .bloglo-widget,
html[data-theme="dark"] .pyml-slider-items,
html[data-theme="dark"] .author-box {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 190, 190, 0.2);
}

html[data-theme="dark"] .bloglo-widget .widget-title,
html[data-theme="dark"] .pyml-slider-items .widget-title {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-color: rgba(39, 39, 39, 0.75);
}

html[data-theme="dark"] .bloglo-sidebar-container .category-item {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .bloglo-sidebar-container .bloglo-recent-post__title,
html[data-theme="dark"] .author-box__name {
    color: #ffffff;
}

html[data-theme="dark"] .author-box__bio {
    color: #8a8a8c;
}

html[data-theme="dark"] .bloglo-recent-post__date {
    color: #8a8a8c;
}

html[data-theme="dark"] .post-tag-item {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .bloglo-search-form input[type="search"] {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

html[data-theme="dark"] .bloglo-search-form input[type="search"]::placeholder {
    color: #8a8a8c;
}

html[data-theme="dark"] .bloglo-search-form button {
    color: #8a8a8c;
}

html[data-theme="dark"] .comments {
    background: #3a3a3a;
    border-color: rgba(190, 190, 190, 0.2);
}

html[data-theme="dark"] .post-item-blocks__text {
    color: #e6e6e6;
}

html[data-theme="dark"] .posts .pagination .page-link {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Footer stays light (BlogMate PRO keeps cream footer in dark mode) */

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] #bloglo-copyright {
    background-color: #fff9f3;
}

html[data-theme="dark"] .site-footer .category-item,
html[data-theme="dark"] .site-footer .bloglo-recent-post__title {
    color: #44464b;
}

html[data-theme="dark"] .site-footer .bloglo-recent-post__date {
    color: #94979e;
}

html[data-theme="dark"] .site-footer__desc {
    color: #94979e;
}

html[data-theme="dark"] .site-footer .widget-title,
html[data-theme="dark"] .site-footer__brand {
    color: #131315;
}

html[data-theme="dark"] .site-footer__copy {
    color: #333333;
}


/* ============================================================
   Header widgets: social icons + search (BlogMate style)
   ============================================================ */

.bloglo-header-widgets {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bloglo-social-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bloglo-social-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: var(--bloglo-transition-primary);
}

.bloglo-social-nav a:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.12);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.bloglo-social-nav a.social-facebook { background: #1877f2; }
.bloglo-social-nav a.social-twitter  { background: #14171a; }
.bloglo-social-nav a.social-instagram{ background: #e4405f; }
.bloglo-social-nav a.social-telegram { background: #2aabee; }
.bloglo-social-nav a.social-youtube  { background: #ff0000; }
.bloglo-social-nav a.social-github   { background: #24292e; }

.bloglo-search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.bloglo-search-form input[type="search"] {
    border: 1px solid rgba(39, 39, 39, 0.15);
    border-radius: 100px;
    padding: 7px 40px 7px 16px;
    font-size: 14px;
    font-family: inherit;
    width: 180px;
    background: #f7f7f7;
    color: var(--bloglo-text);
    transition: all 0.3s ease;
}

.bloglo-search-form input[type="search"]:focus {
    width: 230px;
    outline: none;
    border-color: var(--bloglo-primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--bloglo-primary_15);
}

.bloglo-search-form input[type="search"]::placeholder {
    color: var(--bloglo-muted);
}

.bloglo-search-form button {
    position: absolute;
    right: 5px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.bloglo-search-form button:hover {
    color: var(--bloglo-primary);
}

/* Search results page */

.search-results .search-empty,
.search-results .search-count {
    font-size: 16px;
    color: var(--bloglo-muted);
    margin: 0 0 24px;
}

.search-results .search-count {
    color: var(--bloglo-text);
    font-weight: 500;
}




/* Sidebar author card (homepage, above Categories — BlogMate style) */

.bloglo-widget--author {
    padding: 25px 25px 20px;
}

.bloglo-widget--author .author-box {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.bloglo-widget--author .author-box__avatar {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    margin-bottom: 4px;
}

.bloglo-widget--author .author-box__label {
    display: none;
}

.bloglo-widget--author .author-box__name {
    margin: 0 0 8px;
    font-size: 20px;
}

.bloglo-widget--author .author-box__bio {
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   Post You Might Like (full-width, bottom of home content)
   ============================================================ */

.pyml-block {
    margin-top: 48px;
}

.pyml-slider-items {
    position: relative;
    background: var(--bloglo-cream);
    border: 1px solid var(--bloglo-peach);
    border-radius: 15px;
    padding: 22px;
}

.pyml-slider-items .widget-title {
    position: absolute;
    left: 25px;
    top: -18px;
    z-index: 2;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 4px 25px;
    background-color: #fff;
    border: 1px solid rgba(39, 39, 39, 0.75);
    border-radius: 100px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.25px;
}

.pyml-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 10px;
}

.pyml-slide-item__thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.pyml-slide-item__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 366;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pyml-slide-item__thumb:hover img {
    transform: scale(1.05);
}

.pyml-slide-item__title {
    margin: 12px 0 2px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.pyml-slide-item__title a {
    color: var(--bloglo-heading);
}

.pyml-slide-item__title a:hover {
    color: var(--bloglo-primary);
}

.pyml-slide-item__date {
    font-size: 13px;
    color: var(--bloglo-muted);
}



/* ============================================================
   Author box (BlogMate style, bottom of single post)
   ============================================================ */

.author-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bloglo-cream);
    border: 1px solid var(--bloglo-peach);
    border-radius: 15px;
    padding: 25px;
    margin: 28px 0 0;
}

.author-box__avatar {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.author-box__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-box__body {
    min-width: 0;
}

.author-box__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bloglo-muted);
    margin-bottom: 4px;
}

.author-box__name {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.author-box__bio {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}



/* Flash messages */

.community-alert--error {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #842029;
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ============================================================
   Community: login / signup + forum
   ============================================================ */

.community-page {
    max-width: 620px;
    margin: 0 auto;
}

.community-card {
    background: var(--bloglo-cream);
    border: 1px solid var(--bloglo-peach);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 24px;
}

.community-card h3,
.community-card h4 {
    margin: 0 0 14px;
}

.community-tabs__nav {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.community-tabs__btn {
    flex: 1;
    padding: 9px 16px;
    border: 1px solid rgba(39, 39, 39, 0.15);
    border-radius: 100px;
    background: #fff;
    color: #44464b;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--bloglo-transition-primary);
}

.community-tabs__btn:hover {
    border-color: var(--bloglo-primary);
    color: var(--bloglo-primary);
}

.community-tabs__btn.is-active {
    background: var(--bloglo-primary);
    border-color: var(--bloglo-primary);
    color: #fff;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

.community-tabs__panel {
    display: none;
}

.community-tabs__panel.is-active {
    display: block;
}

.community-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--bloglo-heading);
    margin: 14px 0 6px;
}

.community-input {
    width: 100%;
    border: 1px solid rgba(190, 190, 190, 0.5);
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--bloglo-text);
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.community-input:focus {
    outline: none;
    border-color: var(--bloglo-primary);
    box-shadow: 0 0 0 3px var(--bloglo-primary_15);
}

textarea.community-input {
    resize: vertical;
}

.community-submit {
    margin-top: 18px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.community-alert {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #842029;
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}

.community-account__logged-in {
    text-align: center;
    padding: 40px 25px;
}

.community-account__logged-in p {
    color: #666;
    margin-bottom: 20px;
}

/* Forum */

.forum-heading {
    font-size: 30px;
    margin-bottom: 20px;
}

.forum-thread-item__title {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--bloglo-heading);
    margin-bottom: 6px;
}

.forum-thread-item__title:hover {
    color: var(--bloglo-primary);
}

.forum-thread-item__meta,
.forum-thread__meta,
.forum-reply__meta {
    font-size: 13px;
    color: var(--bloglo-muted);
    margin-bottom: 8px;
}

.forum-thread-item__excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.forum-thread__title {
    font-size: 26px;
    margin-bottom: 6px;
}

.forum-thread__content {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-top: 12px;
    white-space: pre-line;
}

.forum-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.forum-replies__heading {
    margin: 26px 0 14px;
}

.forum-reply__meta strong {
    color: var(--bloglo-heading);
}

.forum-reply__meta span {
    margin-left: 8px;
}

.forum-reply__content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    white-space: pre-line;
}

.forum-none {
    color: var(--bloglo-muted);
    font-size: 15px;
}

.forum-login-hint {
    text-align: center;
    padding: 30px 25px;
}

.forum-login-hint p {
    color: #666;
    margin-bottom: 16px;
}

/* Dark mode community */

html[data-theme="dark"] .community-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 190, 190, 0.2);
}

html[data-theme="dark"] .community-card h3,
html[data-theme="dark"] .community-card h4,
html[data-theme="dark"] .forum-thread-item__title,
html[data-theme="dark"] .forum-thread__title,
html[data-theme="dark"] .forum-reply__meta strong {
    color: #ffffff;
}

html[data-theme="dark"] .community-input {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

html[data-theme="dark"] .community-label {
    color: #ffffff;
}

html[data-theme="dark"] .forum-thread-item__excerpt,
html[data-theme="dark"] .forum-thread__content,
html[data-theme="dark"] .forum-reply__content,
html[data-theme="dark"] .community-account__logged-in p,
html[data-theme="dark"] .forum-login-hint p {
    color: #e6e6e6;
}

html[data-theme="dark"] .community-tabs__btn {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}



/* ============================================================
   Winter.User account page (login / sign up)
   ============================================================ */

.account-page {
    max-width: 860px;
    margin: 0 auto;
}

.account-page .row {
    display: flex;
    gap: 24px;
    margin: 0;
}

.account-page .col-md-6 {
    flex: 1 1 0;
    max-width: none;
    background: var(--bloglo-cream);
    border: 1px solid var(--bloglo-peach);
    border-radius: 15px;
    padding: 28px;
}

.account-page h3 {
    font-size: 22px;
    margin: 0 0 18px;
}

.account-page .form-group {
    margin-bottom: 14px;
}

.account-page label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--bloglo-heading);
    margin: 0 0 6px;
}

.account-page .form-control {
    width: 100%;
    border: 1px solid rgba(190, 190, 190, 0.5);
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--bloglo-text);
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.account-page .form-control:focus {
    outline: none;
    border-color: var(--bloglo-primary);
    box-shadow: 0 0 0 3px var(--bloglo-primary_15);
}

.account-page .btn-default {
    display: inline-block;
    padding: 8px 24px;
    color: #fff;
    background-color: var(--bloglo-primary);
    line-height: 1.8;
    border-radius: 7px;
    border: none;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
    transition: var(--bloglo-transition-primary);
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
}

.account-page .btn-default:hover {
    color: #fff;
    background-color: #ff4c60;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_09);
}

html[data-theme="dark"] .account-page .col-md-6 {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 190, 190, 0.2);
}

html[data-theme="dark"] .account-page label,
html[data-theme="dark"] .account-page h3 {
    color: #ffffff;
}

html[data-theme="dark"] .account-page .form-control {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ============================================================
   Winter.Forum — BlogMate card look (overrides forum.css)
   ============================================================ */

.forum-heading {
    font-size: 30px;
    margin-bottom: 20px;
}

.winter-forum .forum-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    margin: 0;
}

.winter-forum .root-channel th {
    text-align: left;
    font-size: 18px;
    color: var(--bloglo-heading);
    padding: 4px 8px;
    background: transparent !important;
    border: none !important;
}

.winter-forum tr.forum-channel td {
    background: var(--bloglo-cream) !important;
    border-top: 1px solid var(--bloglo-peach) !important;
    border-bottom: 1px solid var(--bloglo-peach) !important;
    padding: 18px 20px;
    vertical-align: middle;
}

.winter-forum tr.forum-channel td:first-child {
    border-left: 1px solid var(--bloglo-peach) !important;
    border-radius: 15px 0 0 15px;
}

.winter-forum tr.forum-channel td:last-child {
    border-right: 1px solid var(--bloglo-peach) !important;
    border-radius: 0 15px 15px 0;
}

.winter-forum .forum-channel h5 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
}

.winter-forum .forum-channel h5 a {
    color: var(--bloglo-heading);
}

.winter-forum .forum-channel h5 a:hover {
    color: var(--bloglo-primary);
}

.winter-forum .forum-channel td p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.winter-forum .counter-column,
.winter-forum .activity-column {
    color: var(--bloglo-muted);
    white-space: nowrap;
}

.winter-forum .activity-column a {
    color: var(--bloglo-heading);
}

.winter-forum .activity-column a:hover {
    color: var(--bloglo-primary);
}

.winter-forum .activity-column small {
    display: block;
    color: var(--bloglo-muted);
}

/* Topics list */

.winter-forum .forum-topic td {
    background: var(--bloglo-cream) !important;
    border-top: 1px solid var(--bloglo-peach) !important;
    border-bottom: 1px solid var(--bloglo-peach) !important;
    padding: 16px 20px;
    vertical-align: middle;
}

.winter-forum .forum-topic td:first-child {
    border-left: 1px solid var(--bloglo-peach) !important;
    border-radius: 15px 0 0 15px;
}

.winter-forum .forum-topic td:last-child {
    border-right: 1px solid var(--bloglo-peach) !important;
    border-radius: 0 15px 15px 0;
}

.winter-forum .forum-topic h5 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
}

.winter-forum .forum-topic h5 a {
    color: var(--bloglo-heading);
}

.winter-forum .forum-topic h5 a:hover {
    color: var(--bloglo-primary);
}

.winter-forum .forum-topic td p {
    font-size: 13px;
    color: var(--bloglo-muted);
    margin: 0;
}

.winter-forum .forum-topic .member-avatar img {
    border-radius: 50%;
}

/* Topic page: posts */

.winter-forum .forum-post {
    background: var(--bloglo-cream);
    border: 1px solid var(--bloglo-peach);
    border-radius: 15px;
    padding: 22px 24px;
    margin-bottom: 20px;
}

.winter-forum .forum-post .author {
    font-weight: 700;
    font-size: 16px;
    color: var(--bloglo-heading);
}

.winter-forum .forum-post .metadata {
    font-size: 13px;
    color: var(--bloglo-muted);
}

.winter-forum .forum-post .content {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

.winter-forum .avatar img {
    border-radius: 50%;
}

/* Post / reply forms */

.winter-forum .form-control {
    border: 1px solid rgba(190, 190, 190, 0.5);
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--bloglo-text);
    box-sizing: border-box;
}

.winter-forum .form-control:focus {
    outline: none;
    border-color: var(--bloglo-primary);
    box-shadow: 0 0 0 3px var(--bloglo-primary_15);
}

.winter-forum .btn-primary {
    display: inline-block;
    padding: 8px 24px;
    color: #fff;
    background-color: var(--bloglo-primary);
    line-height: 1.8;
    border-radius: 7px;
    border: none;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
    transition: var(--bloglo-transition-primary);
    font-weight: 500;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
}

.winter-forum .btn-primary:hover {
    color: #fff;
    background-color: #ff4c60;
    transform: translateY(-2px);
}

/* Dark mode forum */

html[data-theme="dark"] .winter-forum tr.forum-channel td,
html[data-theme="dark"] .winter-forum .forum-topic td,
html[data-theme="dark"] .winter-forum .forum-post {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(190, 190, 190, 0.2) !important;
}

html[data-theme="dark"] .winter-forum .forum-channel h5 a,
html[data-theme="dark"] .winter-forum .forum-topic h5 a,
html[data-theme="dark"] .winter-forum .forum-post .author,
html[data-theme="dark"] .winter-forum .root-channel th {
    color: #ffffff;
}

html[data-theme="dark"] .winter-forum .forum-channel td p,
html[data-theme="dark"] .winter-forum .forum-post .content {
    color: #e6e6e6;
}

html[data-theme="dark"] .winter-forum .form-control {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}



/* ============================================================
   Post navigation (previous / next — BlogMate PRO style)
   ============================================================ */

.post-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin: 25px 0 0;
}

.post-nav .nav-previous,
.post-nav .nav-next {
    flex: 1 1 0;
    min-width: 260px;
}

.post-nav .nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 16px;
}

.post-nav .nav-previous a,
.post-nav .nav-next a {
    display: block;
    text-decoration: none;
}

.post-nav .nav-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.post-nav .nav-content img {
    flex: 0 0 75px;
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 3px;
}

.post-nav .nav-content span {
    font-size: 17px;
    font-weight: 500;
    color: var(--bloglo-heading);
    line-height: 1.45;
    transition: color 0.25s ease;
}

.post-nav a:hover .nav-content span {
    color: var(--bloglo-primary);
}

.post-nav .nav-next {
    text-align: right;
}

.post-nav .nav-next .nav-content {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

html[data-theme="dark"] .post-nav .nav-title,
html[data-theme="dark"] .post-nav .nav-content span {
    color: #ffffff;
}



/* ============================================================
   Comments toggle (BlogMate PRO style)
   ============================================================ */

#bloglo-comments-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 7px;
    background: var(--bloglo-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    border: none;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
    transition: var(--bloglo-transition-primary);
    margin-top: 25px;
    text-decoration: none;
    cursor: pointer;
}

#bloglo-comments-toggle:hover {
    color: #fff;
    background: #ff4c60;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_09);
}

#bloglo-comments-toggle i {
    font-size: 16px;
}

.comments-area {
    margin-top: 25px;
}


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

.posts .pagination {
    justify-content: center;
    margin: 8px 0 0;
    gap: 4px;
}

.posts .pagination .page-link {
    border: 1px solid rgba(39, 39, 39, 0.15);
    border-radius: 100px;
    min-width: 42px;
    text-align: center;
    color: #44464b;
    background: #fff;
    font-weight: 500;
    padding: 5px 12px;
    transition: var(--bloglo-transition-primary);
}

.posts .pagination .page-link:hover {
    color: #fff;
    background-color: var(--bloglo-primary);
    border-color: var(--bloglo-primary);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

.posts .pagination .active .page-link {
    color: #fff;
    background-color: var(--bloglo-primary);
    border-color: var(--bloglo-primary);
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

/* ============================================================
   Single post view
   ============================================================ */

.post-view .post-item {
    margin-bottom: 30px;
}

.post-view .post-category { margin-bottom: 12px; }

.post-view .post-item__header {
    margin-bottom: 10px;
}

.post-view .post-item__header h1 {
    font-size: 40px;
    line-height: 1.25;
    max-width: 900px;
    margin-bottom: 8px;
}

.post-view .entry-meta { margin-top: 0; }

.post-view .post-item__image {
    margin: 20px 0 30px;
}

.post-view .post-item__image img {
    border-radius: 3px;
}

.post-item-blocks__text {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 14px;
}

.post-item-blocks__text p:last-child { margin-bottom: 0; }
.post-item-blocks__text img { border-radius: 3px; }

.post-item-blocks__image { margin: 16px 0; }
.post-item-blocks__image img { border-radius: 3px; }

.post-item-blocks__code pre {
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    overflow-x: auto;
}

/* Tags */

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 0 20px;
}

.post-tag-item {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    border: 1px solid rgba(39, 39, 39, 0.15);
    background: #fff;
    color: #44464b;
    font-size: 13px;
    font-weight: 500;
    transition: var(--bloglo-transition-primary);
}

.post-tag-item:hover {
    color: #fff;
    background-color: var(--bloglo-primary);
    border-color: var(--bloglo-primary);
}

/* Category / tag view heading */

.tag-view__name {
    font-size: 32px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bloglo-card-border);
}

/* ============================================================
   Comments
   ============================================================ */

.comments {
    background: #fff;
    border: 1px solid var(--bloglo-card-border);
    border-radius: 15px;
    padding: 20px 24px;
    margin-top: 20px;
}

.comments .comment-form textarea,
.comments .comment-form input {
    border: 1px solid rgba(190, 190, 190, 0.4);
    border-radius: 6px;
    padding: 6px 9px;
}

.comments .comment-form button {
    border-radius: 7px;
    background-color: var(--bloglo-primary);
    border-color: var(--bloglo-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

.comments .comment-form button:hover {
    background-color: #ff4c60;
    border-color: #ff4c60;
    transform: translateY(-2px);
}

/* ============================================================
   Footer (cream bg, peach top border)
   ============================================================ */

.site-footer {
    background-color: var(--bloglo-cream);
    border-top: 1px solid var(--bloglo-peach);
    margin-top: 20px;
}

.site-footer .bloglo-container {
    padding: 30px 50px 20px;
}

.site-footer__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.site-footer__col {
    flex: 1 1 0;
    min-width: 220px;
}

.site-footer .widget-title {
    color: #131315;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.site-footer__brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--bloglo-heading);
    margin-bottom: 6px;
}

.site-footer__desc {
    color: var(--bloglo-muted);
    font-size: 14px;
}

.site-footer .categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer .category-item {
    color: #44464b;
    font-size: 14px;
}

.site-footer .category-item:hover { color: var(--bloglo-primary); padding-left: 5px; }

.site-footer .bloglo-recent-post__title { font-size: 13px; }

#bloglo-copyright {
    background-color: var(--bloglo-cream);
    border-top: 1px solid var(--bloglo-peach);
}

#bloglo-copyright .bloglo-container {
    padding: 16px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer__copy {
    color: #333;
    font-size: 13px;
}

.site-footer__copy a { color: var(--bloglo-primary); }

/* ============================================================
   404 / error
   ============================================================ */

.error-page {
    text-align: center;
    padding: 50px 10px;
}

.error-page h1 {
    font-size: 50px;
    color: var(--bloglo-primary);
}

/* ============================================================
   Mobile
   ============================================================ */

@media (max-width: 991.98px) {
    .bloglo-container { padding: 0 20px; }

    .bloglo-logo a { white-space: normal; }

    .content-area {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .bloglo-sidebar-container {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    #bloglo-header-inner .bloglo-container,
    .bloglo-header-container {
        flex-direction: column;
        min-height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
        gap: 8px;
    }

    .bloglo-logo { margin-right: 0; }

    .bloglo-nav .categories { justify-content: center; }

    .bloglo-blog-entry-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .post-thumb.entry-media {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .entry-title { font-size: 20px; }

    .post-view .post-item__header h1 { font-size: 26px; }

    .site-main { padding: 20px 0 40px; }

    .post-item--full { margin-bottom: 36px; }

}

/* ============================================================
   Ticker + Featured posts (BlogMate PRO)
   ============================================================ */

#ticker .ticker-slider-items {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 1.8rem 0;
    background: #fff;
    border: 1px solid rgba(190, 190, 190, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.ticker-slider-items .ticker-title {
    position: relative;
    flex: 0 0 auto;
    min-height: 5.5rem;
    font-size: 1.6rem;
    line-height: 3.5rem;
    font-weight: 600;
    padding: 1rem 1.6rem;
    margin-right: 0;
    text-align: center;
    background-color: var(--bloglo-primary, #FC6668);
    color: #fff;
}

.ticker-slider-items .ticker-title span.icon {
    margin-right: 0.4rem;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: relative;
    line-height: 3rem;
    background-color: #fff;
    color: var(--bloglo-primary, #FC6668);
}

.ticker-slider-items .ticker-slider-box {
    overflow: hidden;
    flex: 1 1 85%;
    background-color: rgba(252, 102, 104, 0.09);
    padding: 5px 0;
    height: 5.5rem;
}

.ticker-slider-wrap {
    display: flex;
    align-items: center;
    width: max-content;
    animation: bm-ticker-scroll 45s linear infinite;
}

.ticker-slider-wrap:hover {
    animation-play-state: paused;
}

@keyframes bm-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-slide-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 2.6rem;
    flex: 0 0 auto;
}

.ticker-slider-backgrounds img {
    width: 4.6rem;
    height: 4.6rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.ticker-slide-item .slide-inner {
    display: flex;
    flex-direction: column;
}

.ticker-slide-item .slide-inner h6 {
    font-size: 1.6rem;
    margin: 0.2rem 0;
    line-height: 1.3;
}

.ticker-slide-item .slide-inner h6 a {
    color: var(--bloglo-heading, #333);
}

.ticker-slide-item .slide-inner .entry-meta {
    font-size: 1.2rem;
    color: #8a8a8c;
    margin-top: 0;
}

/* Featured posts */

#featured_links {
    margin: 1rem 0 2.5rem;
}

.bloglo-featured-items .widget-title {
    margin-bottom: 2.5rem;
}

.bloglo-featured-items .bloglo-flex-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.bloglo-post-item.style-1.center {
    text-align: center;
}

.bloglo-post-thumb .inner {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 500 / 366;
}

.bloglo-post-thumb .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bloglo-post-item.style-1:hover .inner img {
    transform: scale(1.05);
}

.bloglo-post-content h3 {
    margin: 1.2rem 0 0.8rem;
}

.bloglo-post-content h3 a {
    color: var(--bloglo-heading, #333);
    font-size: 2rem;
    line-height: 1.2;
}

.bloglo-post-content h3 a:hover {
    color: var(--bloglo-primary, #FC6668);
}

.bloglo-btn.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--bloglo-primary, #FC6668);
    border: 1px solid rgba(39, 39, 39, 0.75);
    padding: 8px 24px;
    border-radius: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.bloglo-btn.btn-white:hover {
    background: var(--bloglo-primary, #FC6668);
    color: #fff;
}

@media (max-width: 991px) {
    .bloglo-featured-items .bloglo-flex-row {
        grid-template-columns: 1fr;
    }
    .ticker-slider-items .ticker-title span.icon {
        display: none;
    }
}

/* ============================================================
   Breaking news ticker (BlogMate PRO style)
   ============================================================ */

#ticker {
    background: #fff;
    border-bottom: 1px solid rgba(190, 190, 190, 0.2);
}

.ticker-slider-items {
    display: flex;
    align-items: center;
    min-height: 52px;
}

.ticker-title {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bloglo-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 0.8rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: 24px;
}

.ticker-slider-box {
    flex: 1 1 auto;
    overflow: hidden;
    min-width: 0;
}

.ticker-slider-wrap {
    overflow: hidden;
}

.ticker-slider-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: ticker-marquee 40s linear infinite;
    width: max-content;
}

.ticker-slider-wrap:hover .ticker-slider-track {
    animation-play-state: paused;
}

.ticker-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bloglo-heading);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.ticker-slide-link i {
    font-size: 6px;
    color: var(--bloglo-primary);
}

.ticker-slide-link:hover {
    color: var(--bloglo-primary);
}

@keyframes ticker-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   Hero slider (1 post at a time — BlogMate PRO style)
   ============================================================ */

.hero-block {
    background: #fff;
    border-bottom: 1px solid rgba(190, 190, 190, 0.2);
    padding: 30px 0;
}

.hero-slider {
    position: relative;
}

.hero-slider__viewport {
    overflow: hidden;
}

.hero-slider__track {
    display: flex;
}

.hero-slide {
    flex: 0 0 100%;
    display: none;
    align-items: center;
    gap: 40px;
}

.hero-slide.is-active {
    display: flex;
}

.hero-slide__media {
    flex: 0 0 50%;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 1.6rem 3.8rem -1.2rem rgba(0, 0, 0, 0.5);
}

.hero-slide__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 700;
    object-fit: cover;
    border-radius: 10px;
}

.hero-slide__content {
    flex: 1 1 0;
    min-width: 0;
}

.hero-slide__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin: 10px 0 14px;
}

.hero-slide__title a {
    color: var(--bloglo-heading);
}

.hero-slide__title a:hover {
    color: var(--bloglo-primary);
}

.hero-slide__excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 12px 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(39, 39, 39, 0.15);
    color: #44464b;
    font-size: 15px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: var(--bloglo-transition-primary);
}

.hero-slider__arrow:hover {
    background: var(--bloglo-primary);
    border-color: var(--bloglo-primary);
    color: #fff;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
}

.hero-slider__arrow--prev { left: 14px; }
.hero-slider__arrow--next { right: 14px; }

.hero-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(39, 39, 39, 0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider__dot.is-active {
    background: var(--bloglo-primary);
    transform: scale(1.2);
}

/* Dark mode: ticker + hero */

html[data-theme="dark"] #ticker,
html[data-theme="dark"] .hero-block {
    background-color: #333333;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .ticker-slide-link,
html[data-theme="dark"] .hero-slide__title a {
    color: #ffffff;
}

html[data-theme="dark"] .hero-slide__excerpt {
    color: #e6e6e6;
}

html[data-theme="dark"] .hero-slider__arrow {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

html[data-theme="dark"] .hero-slider__dot {
    background: #555555;
}

html[data-theme="dark"] .hero-slider__dot.is-active {
    background: var(--bloglo-primary);
}

/* Responsive */

@media (max-width: 991.98px) {
    .pyml-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        flex-direction: column;
        gap: 18px;
    }

    .hero-slide__media {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-slide__title {
        font-size: 24px;
    }

    .ticker-title {
        display: none;
    }

    .pyml-grid {
        grid-template-columns: 1fr;
    }
}


/* Ticker compact overrides (after v24 recovered styles) */

.ticker-slider-items {
    min-height: 52px;
    padding: 0;
}

.ticker-slider-box {
    padding: 0;
    height: auto;
    min-height: 52px;
    display: flex;
    align-items: center;
}

.ticker-slider-wrap {
    padding: 0;
}

#ticker {
    padding: 0;
}

/* Ticker: defeat v24 tall styles */

#ticker .ticker-slider-items {
    margin: 0;
    min-height: 52px;
}

#ticker .ticker-slider-items .ticker-title {
    min-height: 52px;
    height: 52px;
    font-size: 14px;
    line-height: 1;
    padding: 8px 18px;
    margin-right: 24px;
    border-radius: 0.8rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

#ticker .ticker-slider-items .ticker-title span.icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #fff;
    line-height: 1;
    margin-right: 8px;
}

#ticker .ticker-slider-items .ticker-slider-box {
    height: 52px;
    min-height: 52px;
    background: transparent;
    padding: 0;
}

#ticker .ticker-slider-items .ticker-slider-wrap {
    width: max-content;
}

/* ============================================================
   Ticker — exact BlogMate PRO look (thumb + title + meta slides)
   ============================================================ */

#ticker {
    margin-top: 20px;
    background: #fff;
    border-bottom: none;
}

#ticker .ticker-slider-items {
    margin: 18px 0;
    min-height: 55px;
}

#ticker .ticker-slider-items .ticker-title {
    min-height: 55px;
    height: 55px;
    font-size: 16px;
    line-height: 1;
    padding: 10px 16px;
    margin-right: 24px;
    border-radius: 8px 0 0 8px;
}

#ticker .ticker-slider-items .ticker-title span.icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #fff;
    line-height: 1;
    margin-right: 8px;
}

#ticker .ticker-slider-items .ticker-slider-box {
    height: auto;
    min-height: 55px;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
}

#ticker .ticker-slider-wrap {
    width: max-content;
}

.ticker-slider-track {
    display: flex;
    align-items: center;
    animation: ticker-marquee 45s linear infinite;
    width: max-content;
}

.ticker-slide-item {
    display: flex;
    align-items: center;
    margin-right: 26px;
    flex: 0 0 auto;
}

.ticker-slider-backgrounds {
    margin-right: 12px;
    flex: 0 0 auto;
}

.ticker-slider-backgrounds a {
    display: block;
}

.ticker-slider-backgrounds img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.ticker-slide-item .slide-inner {
    display: flex;
    flex-direction: column;
}

.ticker-slide-item .slide-inner h6 {
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
}

.ticker-slide-item .slide-inner h6 a {
    color: var(--bloglo-heading);
    font-weight: 600;
}

.ticker-slide-item .slide-inner h6 a:hover {
    color: var(--bloglo-primary);
}

.ticker-slide-item .slide-inner .entry-meta {
    font-size: 12px;
    color: #8a8a8c;
    margin-top: 2px;
}

.ticker-slide-item .slide-inner .entry-meta .entry-meta-elements {
    display: flex;
    gap: 12px;
}

html[data-theme="dark"] #ticker {
    background-color: #333333;
}

html[data-theme="dark"] .ticker-slide-item .slide-inner h6 a {
    color: #ffffff;
}

/* Dark mode: match PRO demo exactly (transparent pyml + ticker surfaces) */

html[data-theme="dark"] .pyml-slider-items {
    background-color: transparent;
}

html[data-theme="dark"] .pyml-slider-items .widget-title {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 39, 39, 0.75);
}

html[data-theme="dark"] #ticker {
    background-color: transparent;
}

html[data-theme="dark"] .hero-slider__dot {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   Category post counts (BlogMate PRO: "Name (N)")
   ============================================================ */

.category-count {
    font-size: 12px;
    color: var(--bloglo-muted);
    margin-left: auto;
    padding-left: 8px;
}

.bloglo-sidebar-container .category-item .category-count {
    background: rgba(252, 102, 104, 0.12);
    color: var(--bloglo-primary);
    border-radius: 100px;
    padding: 1px 9px;
    font-weight: 600;
}

.site-footer .category-item .category-count {
    margin-left: 8px;
    padding-left: 0;
    color: var(--bloglo-muted);
    font-weight: 600;
}

.site-footer__col {
    padding: 0 10px;
}

.site-footer .categories {
    padding-left: 6px;
}

html[data-theme="dark"] .bloglo-sidebar-container .category-item .category-count {
    background: rgba(252, 102, 104, 0.25);
    color: #ffffff;
}

/* ============================================================
   Nav: Privacy Policy link (right side)
   ============================================================ */

.bloglo-nav-container {
    position: relative;
}

.nav-privacy {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    color: var(--bloglo-heading);
    text-decoration: none;
    transition: var(--bloglo-transition-primary);
}

.nav-privacy:hover {
    color: var(--bloglo-primary);
}

.nav-privacy--active {
    color: var(--bloglo-primary);
}

html[data-theme="dark"] .nav-privacy {
    color: #ffffff;
}

html[data-theme="dark"] .nav-privacy:hover,
html[data-theme="dark"] .nav-privacy--active {
    color: var(--bloglo-primary);
}

@media (max-width: 767.98px) {
    .nav-privacy {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        padding: 4px 14px;
    }
}

/* ============================================================
   Sidebar search widget (BlogMate PRO style)
   ============================================================ */

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.sidebar-search__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid rgba(190, 190, 190, 0.5);
    border-radius: 100px;
    padding: 9px 16px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--bloglo-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sidebar-search__input:focus {
    outline: none;
    border-color: var(--bloglo-primary);
    box-shadow: 0 0 0 3px var(--bloglo-primary_15);
}

.sidebar-search__input::placeholder {
    color: var(--bloglo-muted);
}

.sidebar-search__btn {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--bloglo-primary);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px 0 var(--bloglo-primary_27);
    transition: var(--bloglo-transition-primary);
}

.sidebar-search__btn:hover {
    background: #ff4c60;
    transform: translateY(-2px);
}

html[data-theme="dark"] .sidebar-search__input {
    background: #444444;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ============================================================
   Static pages (Winter.Pages — e.g. Privacy Policy)
   ============================================================ */

.site-content--static {
    background: #fff;
    border: 1px solid var(--bloglo-card-border);
    border-radius: 15px;
    padding: 30px 36px;
    box-shadow: var(--bloglo-shadow);
    margin-bottom: 24px;
}

.site-content--static h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.site-content--static h2 {
    font-size: 20px;
    margin: 22px 0 10px;
}

.site-content--static p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

html[data-theme="dark"] .site-content--static {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 190, 190, 0.2);
}

html[data-theme="dark"] .site-content--static p {
    color: #e6e6e6;
}

/* ============================================================
   Darkmode toggle — exact BlogMate PRO (crescent moon / sun)
   ============================================================ */

.bloglo-header-widgets .bloglo-darkmode .bloglo-darkmode-toogle {
    --size: 1.8rem;
    appearance: none;
    outline: none;
    cursor: pointer;
    width: var(--size);
    height: var(--size);
    box-shadow: inset calc(var(--size) * 0.33) calc(var(--size) * -0.25) 0;
    border-radius: 100rem;
    color: #44464b;
    border: none;
    margin: 0 0 1px;
    min-width: unset;
    opacity: 1;
    vertical-align: middle;
    transition: all 500ms;
    background: transparent;
}

.bloglo-header-widgets .bloglo-darkmode .bloglo-darkmode-toogle::before {
    content: none;
}

.bloglo-header-widgets .bloglo-darkmode input:hover + .bloglo-darkmode-toogle {
    color: var(--bloglo-primary);
}

html[data-theme="dark"] .bloglo-header-widgets .bloglo-darkmode .bloglo-darkmode-toogle {
    --size: 1.375em;
    --ray-size: calc(var(--size) * -0.4);
    --offset-orthogonal: calc(var(--size) * 0.65);
    --offset-diagonal: calc(var(--size) * 0.45);
    transform: scale(0.75);
    color: var(--bloglo-primary);
    box-shadow: inset 0 0 0 var(--size), calc(var(--offset-orthogonal) * -1) 0 0 var(--ray-size), var(--offset-orthogonal) 0 0 var(--ray-size), 0 calc(var(--offset-orthogonal) * -1) 0 var(--ray-size), 0 var(--offset-orthogonal) 0 var(--ray-size), calc(var(--offset-diagonal) * -1) calc(var(--offset-diagonal) * -1) 0 var(--ray-size), var(--offset-diagonal) var(--offset-diagonal) 0 var(--ray-size), calc(var(--offset-diagonal) * -1) var(--offset-diagonal) 0 var(--ray-size), var(--offset-diagonal) calc(var(--offset-diagonal) * -1) 0 var(--ray-size);
}

/* ============================================================
   Header & nav polish (less plain — soft depth)
   ============================================================ */

.site-header {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.bloglo-nav-container {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    z-index: 9;
}

.bloglo-nav-container .bloglo-container {
    min-height: 56px;
}

.bloglo-nav .category-item,
.bloglo-nav .categories .category-item {
    border-radius: 7px;
}

html[data-theme="dark"] .site-header {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .bloglo-nav-container {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Fine-tune toggle size to match demo (18px light crescent) */

.bloglo-header-widgets .bloglo-darkmode {
    width: 20px;
    height: 20px;
}

.bloglo-header-widgets .bloglo-darkmode .bloglo-darkmode-toogle {
    --size: 18px;
}

/* Fix: ticker strip white bg in dark mode (v24 CSS leak) */

html[data-theme="dark"] #ticker .ticker-slider-items {
    background-color: transparent !important;
}

/* ============================================================
   Scroll to top button (BlogMate PRO style)
   ============================================================ */

#bloglo-scroll-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 997;
    width: 40px;
    height: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 30px, 0);
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    text-decoration: none;
}

#bloglo-scroll-top.bloglo-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

#bloglo-scroll-top:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 10rem;
    background-color: var(--bloglo-primary);
    border: 0.1rem solid rgba(190, 190, 190, 0.3);
    transition: var(--bloglo-transition-primary);
}

#bloglo-scroll-top .bloglo-icon {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

#bloglo-scroll-top .bloglo-icon.top-icon {
    position: absolute;
    transform: translate(0, 30px);
    opacity: 0;
}

#bloglo-scroll-top:hover:before {
    background-color: var(--bloglo-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    transform: scale(1.2);
}

#bloglo-scroll-top:hover .bloglo-icon {
    color: var(--bloglo-primary);
    transform: translate(0, -26px);
    opacity: 0;
}

#bloglo-scroll-top:hover .bloglo-icon.top-icon {
    transform: translate(0, 0);
    opacity: 1;
    color: var(--bloglo-primary);
}

/* ============================================================
   Header logo image (left of the blog title)
   ============================================================ */

.bloglo-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-right: 32px;
    min-width: 0;
}

.bloglo-logo__link {
    display: inline-block;
    line-height: 1.2;
    flex: 0 0 auto;
}

.bloglo-logo__img {
    flex: 0 0 auto;
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.bloglo-logo__name {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bloglo-heading);
    white-space: nowrap;
}

.bloglo-logo__name:hover {
    color: var(--bloglo-primary);
}

.bloglo-logo__tagline {
    font-size: 14px;
    color: var(--bloglo-muted);
    line-height: 1.4;
    white-space: nowrap;
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 1px solid rgba(190, 190, 190, 0.4);
    padding-left: 16px;
}

@media (max-width: 991.98px) {
    .bloglo-logo {
        margin-right: 0;
        justify-content: center;
    }

    .bloglo-logo__name,
    .bloglo-logo__tagline {
        white-space: normal;
        max-width: none;
    }

    .bloglo-logo__tagline {
        border-left: none;
        padding-left: 0;
    }
}

/* ============================================================
   About widget — contact list (BlogMate demo style)
   ============================================================ */

.widget-about__text {
    margin: 0 0 16px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.widget-about__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.widget-about__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.widget-about__item > i {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bloglo-primary);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px 0 var(--bloglo-primary_27);
}

.widget-about__item-body {
    min-width: 0;
}

.widget-about__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bloglo-muted);
    margin-bottom: 2px;
}

.widget-about__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--bloglo-heading);
    word-break: break-all;
}

.widget-about__value:hover {
    color: var(--bloglo-primary);
}

.widget-about__socials {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.widget-about__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    transition: var(--bloglo-transition-primary);
}

.widget-about__socials a:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.widget-about__socials a.social-facebook { background: #1877f2; }
.widget-about__socials a.social-twitter  { background: #14171a; }
.widget-about__socials a.social-instagram{ background: #e4405f; }
.widget-about__socials a.social-telegram { background: #2aabee; }
.widget-about__socials a.social-youtube  { background: #ff0000; }
.widget-about__socials a.social-github   { background: #24292e; }

html[data-theme="dark"] .widget-about__text {
    color: #e6e6e6;
}

html[data-theme="dark"] .widget-about__value {
    color: #ffffff;
}
