/*
Theme Name: Sassy Manual
Theme URI: https://sassydigitizing.co
Author: Sassy Digitizing
Description: Minimal black-and-white technical-manual theme for a fast-loading embroidery & print learning resource.
Version: 1.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: sassy-manual
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
  --bg:#FFFFFF;
  --surface:#F3F3F1;
  --ink:#141414;
  --accent:#141414;
  --sp-sm:8px;
  --sp-md:16px;
  --sp-lg:32px;1
  --sp-xl:64px;
  --font-head: "Inter", ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --measure: 66ch;
  --content: 1040px;
}

*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--ink);text-decoration-thickness:1px;text-underline-offset:2px;}
a:hover{text-decoration:none;}
:where(h1,h2,h3,h4,h5,h6){font:inherit;margin:0;}
h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-0.01em;
}
:where(blockquote,figure,ul,ol,dl){margin:0;padding:0;}

.wrap{max-width:var(--content);margin:0 auto;padding:0 var(--sp-md);}
.label{
  font-family:var(--font-head);
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:12px;
}

.skip-link{position:absolute;left:-9999px;top:0;background:var(--ink);color:#fff;padding:10px 16px;z-index:100;}
.skip-link:focus{left:var(--sp-md);}

.site-header{border-bottom:1px solid var(--ink);}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--sp-md);
  padding-top:var(--sp-md);
  padding-bottom:var(--sp-md);
}
.site-title{font-family:var(--font-head);font-weight:700;font-size:18px;letter-spacing:-0.02em;}
.site-title a{text-decoration:none;}
.site-title .dot{color:var(--accent);}

.primary-nav ul{list-style:none;display:flex;gap:var(--sp-lg);margin:0;padding:0;}
.primary-nav a{
  font-family:var(--font-head);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  text-decoration:none;
  padding:4px 10px;
  border-bottom:1px solid transparent;
}
.primary-nav a:hover,
.primary-nav a.current{border-bottom-color:var(--ink);}

.nav-toggle{display:none;}
.nav-toggle-label{display:none;}

@media (max-width:760px){
  .nav-toggle-label{
    display:flex;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
    padding:6px;
  }
  .nav-toggle-label span{width:22px;height:2px;background:var(--ink);display:block;}
  .primary-nav{
    display:none;
    width:100%;
    order:3;
    border-top:1px solid var(--ink);
  }
  .primary-nav ul{flex-direction:column;gap:0;}
  .primary-nav a{display:block;padding:var(--sp-sm) 0;}
  .nav-toggle:checked ~ .primary-nav{display:block;}
  .site-header .wrap{flex-wrap:wrap;}
}

.btn{
  display:inline-block;
  font-family:var(--font-head);
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-size:13px;
  font-weight:700;
  background:var(--accent);
  color:#fff;
  border:1px solid var(--accent);
  padding:12px 20px;
  text-decoration:none;
}
.btn:hover{background:#fff;color:var(--ink);}
.btn-outline{background:transparent;color:var(--ink);}
.btn-outline:hover{background:var(--ink);color:#fff;}

.hero{border-bottom:1px solid var(--ink);}
.hero .wrap{padding-top:var(--sp-xl);padding-bottom:var(--sp-xl);max-width:820px;}
.hero .label{margin-bottom:var(--sp-sm);display:block;}
.hero h1{font-size:clamp(32px,5vw,52px);margin-bottom:var(--sp-md);}
.hero p{font-size:18px;max-width:60ch;margin-bottom:var(--sp-lg);color:#3a3a3a;}
.hero .actions{display:flex;gap:var(--sp-sm);flex-wrap:wrap;}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--ink);
  border-left:1px solid var(--ink);
}
.grid .cell{
  border-right:1px solid var(--ink);
  border-bottom:1px solid var(--ink);
  padding:var(--sp-lg);
}
@media (max-width:760px){.grid{grid-template-columns:1fr;}}

section.block{padding:var(--sp-xl) 0;}
section.block.bordered{border-bottom:1px solid var(--ink);}
section.block h2{font-size:26px;margin-bottom:var(--sp-md);}
.eyebrow{display:block;margin-bottom:var(--sp-sm);}
/* 
.post-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  border-top:1px solid var(--ink);
  border-left:1px solid var(--ink);
}
.post-card{
  border-right:1px solid var(--ink);
  border-bottom:1px solid var(--ink);
  padding:var(--sp-lg);
  display:flex;
  flex-direction:column;
  gap:var(--sp-sm);
}
.post-card .cat-tag{
  align-self:flex-start;
  border:1px solid var(--ink);
  padding:2px 8px;
  font-family:var(--font-head);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  text-decoration:none;
  color:var(--ink);
}
.post-card h3{font-size:19px;margin:0;}
.post-card h3 a{text-decoration:none;}
.post-card .excerpt{color:#3a3a3a;font-size:15px;margin:0;}
.post-card .meta{font-family:var(--font-head);font-size:12px;color:#666;margin-top:auto;} */
/* @media (max-width:760px){.post-list{grid-template-columns:1fr;}} */

.list-full .post-list{grid-template-columns:1fr;}
.list-full .post-card{flex-direction:row;gap:var(--sp-lg);align-items:baseline;flex-wrap:wrap;}
.list-full .post-card h3{flex:1 1 320px;}

.cat-intro{border-bottom:1px solid var(--ink);}
.cat-intro .wrap{padding:var(--sp-xl) 0 var(--sp-lg);}
.cat-intro .label{margin-bottom:var(--sp-sm);}
.cat-intro h1{font-size:clamp(28px,4vw,42px);margin-bottom:var(--sp-md);}
.cat-intro .desc{max-width:var(--measure);color:#3a3a3a;font-size:17px;}

.single-wrap{max-width:760px;margin:0 auto;padding:var(--sp-xl) var(--sp-md);}
.single-wrap .label{margin-bottom:var(--sp-sm);}
.single-wrap h1{font-size:clamp(28px,4vw,40px);margin-bottom:var(--sp-md);}
.single-wrap .post-meta{font-family:var(--font-head);font-size:12px;color:#666;margin-bottom:var(--sp-lg);border-bottom:1px solid var(--ink);padding-bottom:var(--sp-lg);}

.entry-content{font-size:17px;max-width:var(--measure);}
.entry-content > *{margin-bottom:var(--sp-md);}
.entry-content h2{font-size:24px;margin-top:var(--sp-lg);}
.entry-content h3{font-size:20px;margin-top:var(--sp-md);}
.entry-content ul,.entry-content ol{padding-left:1.2em;}
.entry-content blockquote{border-left:2px solid var(--ink);padding-left:var(--sp-md);color:#3a3a3a;font-style:italic;}
.entry-content img{border:1px solid var(--ink);margin:var(--sp-md) 0;}
.entry-content pre,.entry-content code{font-family:var(--font-head);background:var(--surface);}
.entry-content pre{padding:var(--sp-md);overflow-x:auto;border:1px solid var(--ink);}
.entry-content code{padding:1px 5px;}

.related-links{border-top:1px solid var(--ink);margin-top:var(--sp-xl);padding-top:var(--sp-lg);max-width:var(--measure);}
.related-links .label{margin-bottom:var(--sp-sm);}
.related-links ul{list-style:none;}
.related-links li{margin-bottom:6px;}

.form-field{margin-bottom:var(--sp-md);max-width:520px;}
.form-field label{display:block;font-family:var(--font-head);font-size:12px;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:6px;}
.form-field input,.form-field textarea{
  width:100%;
  border:1px solid var(--ink);
  padding:10px 12px;
  font-family:var(--font-body);
  font-size:15px;
  background:#fff;
  color:var(--ink);
}
.form-field textarea{min-height:160px;resize:vertical;}
.form-notice{border:1px solid var(--ink);padding:var(--sp-md);margin-bottom:var(--sp-lg);max-width:520px;}

.site-footer{border-top:1px solid var(--ink);}
.site-footer .wrap{padding:var(--sp-xl) var(--sp-md) var(--sp-lg);}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:var(--sp-lg);
  margin-bottom:var(--sp-lg);
}
.footer-grid .label{margin-bottom:var(--sp-sm);}
.footer-grid ul{list-style:none;}
.footer-grid li{margin-bottom:6px;font-size:14px;}
.footer-grid a{text-decoration:none;}
.footer-grid a:hover{text-decoration:underline;}
.footer-bottom{
  border-top:1px solid var(--ink);
  padding-top:var(--sp-md);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:var(--sp-sm);
  font-family:var(--font-head);
  font-size:12px;
  color:#555;
}
.footer-bottom a{color:#555;}
@media (max-width:760px){.footer-grid{grid-template-columns:1fr 1fr;}}

.pagination{display:flex;gap:var(--sp-sm);padding:var(--sp-lg) 0;font-family:var(--font-head);font-size:13px;list-style:none;}
.pagination a,.pagination span{border:1px solid var(--ink);padding:8px 12px;text-decoration:none;color:var(--ink);}
.pagination .current{background:var(--ink);color:#fff;}

@media (prefers-reduced-motion: reduce){*{transition:none!important;animation:none!important;}}


/* =========================================================
   BLOG PAGE — BLACK & WHITE
========================================================= */

.blog-hero {
    padding: 90px 20px;
    text-align: center;
    background: #f5f5f5;
}

.blog-hero .wrap {
    max-width: 900px;
    margin: 0 auto;
}

.blog-label,
.section-label,
.section-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111;
}

.blog-hero h1 {
    margin: 12px 0 15px;
    font-size: 48px;
    line-height: 1.15;
    color: #000;
}

.blog-hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}


/* =========================================================
   SEARCH
========================================================= */

.blog-search {
    display: flex;
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-search input[type="search"] {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 14px 16px;
    font-size: 15px;
    background: transparent;
    color: #111;
}

.blog-search input[type="search"]::placeholder {
    color: #888;
}

.blog-search button {
    border: 0;
    border-radius: 0px;
    padding: 0 24px;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.blog-search button:hover {
    background: #333;
}


/* =========================================================
   COMMON WRAP
========================================================= */

.blog-hero .wrap,
.featured-section .wrap,
.categories-section .wrap,
.latest-section .wrap {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   FEATURED
========================================================= */

.featured-section {
    padding: 75px 0 40px;
    background: #fff;
}

.section-heading {
    margin-bottom: 25px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 0px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.featured-image {
    min-height: 420px;
    background: #eee;
}

.featured-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 420px;
    color: #888;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.featured-badge {
    display: inline-block;
    width: fit-content;
    margin-bottom: 15px;
    padding: 6px 12px;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-category {
    display: inline-block;
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.featured-category:hover {
    color: #000;
    text-decoration: underline;
}

.featured-content h2 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.2;
}

.featured-content h2 a {
    color: #000;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #444;
}

.featured-excerpt {
    margin-bottom: 18px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.featured-meta {
    margin-bottom: 25px;
    color: #888;
    font-size: 13px;
}

.read-article {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.read-article:hover {
    color: #555;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    padding: 40px 0 70px;
    background: #f5f5f5;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-button:hover,
.category-button.active {
    border-color: #000;
    background: #000;
    color: #fff;
}


/* =========================================================
   LATEST ARTICLES
========================================================= */

.latest-section {
    padding: 0 0 90px;
    background: #fff;
}

.latest-header {
    margin-bottom: 30px;
}

.latest-header h2 {
    margin: 8px 0 0;
    font-size: 32px;
    line-height: 1.2;
    color: #000;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================================
   POST CARD
========================================================= */

.post-card {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.post-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #eee;
}

.post-image img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.04);
}

.post-card-content {
    padding: 22px;
}

.cat-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.cat-tag:hover {
    color: #000;
    text-decoration: underline;
}

.post-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.35;
}

.post-card h3 a {
    color: #000;
    text-decoration: none;
}

.post-card h3 a:hover {
    color: #444;
}

.post-excerpt {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.post-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.meta {
    color: #888;
    font-size: 12px;
}

.read-more {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.read-more:hover {
    color: #555;
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.pagination a:hover,
.pagination span.current {
    border-color: #000;
    background: #000;
    color: #fff;
}


/* =========================================================
   NO POSTS
========================================================= */

.no-posts {
    padding: 60px 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0px;
    background: #f5f5f5;
}

.no-posts h3 {
    margin: 0 0 8px;
    color: #000;
}

.no-posts p {
    margin: 0;
    color: #666;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .blog-hero h1 {
        font-size: 40px;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image,
    .featured-image img {
        min-height: 320px;
        height: 320px;
    }

    .featured-content {
        padding: 35px;
    }

    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .blog-hero {
        padding: 60px 0;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .blog-search {
        display: flex;
    }

    .blog-search input[type="search"] {
        padding: 12px;
    }

    .blog-search button {
        padding: 0 16px;
    }

    .featured-section {
        padding-top: 50px;
    }

    .featured-content {
        padding: 28px;
    }

    .featured-content h2 {
        font-size: 27px;
    }

    .featured-image,
    .featured-image img {
        min-height: 250px;
        height: 250px;
    }

    .post-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .post-image,
    .post-image img {
        height: 220px;
    }

    .latest-header h2 {
        font-size: 27px;
    }

    .category-list {
        gap: 8px;
    }

    .category-button {
        padding: 9px 14px;
        font-size: 13px;
    }

    .blog-hero .wrap,
    .featured-section .wrap,
    .categories-section .wrap,
    .latest-section .wrap {
        width: min(100% - 30px, 1180px);
    }

}

/* =========================================================
   BLOG SEARCH INFO
========================================================= */

.blog-search-info {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

.blog-search-info strong {
    color: #000;
}

.blog-search-info a {
    display: inline-block;
    margin-left: 10px;
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.blog-search-info a:hover {
    text-decoration: none;
}


/* =========================================================
   NO SEARCH RESULTS
========================================================= */

.no-posts {
    padding: 60px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
}

.no-posts h3 {
    margin: 0 0 10px;
    color: #000;
    font-size: 28px;
}

.no-posts p {
    margin: 0 auto 20px;
    max-width: 600px;
    color: #555;
    line-height: 1.7;
}

.no-posts .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
}





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

.site-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: auto;
    height: 45px;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-logo img {
        height: 38px;
        max-width: 170px;
    }
}


/* =========================================
   PREMIUM BLOG FOOTER
========================================= */

.site-footer {
    background: #000;
    color: #fff;
    margin-top: 0;
}

.footer-main {
    padding: 75px 20px 30px;
}

.footer-main .wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   FOOTER TOP
========================================= */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
	
}

.footer-logo img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 240px;
    object-fit: contain;
	filter: invert(1)
}

.footer-description {
    max-width: 350px;
    margin: 22px 0 24px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.footer-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: gap .2s ease;
}

.footer-read-more span {
    font-size: 18px;
}

.footer-read-more:hover {
    gap: 14px;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin: 0 0 12px;
    padding: 0;
}

.footer-column a {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: #fff;
}


/* =========================================
   CATEGORY MENU
========================================= */

.footer-column .category-menu,
.footer-column > ul {
    margin: 0;
    padding: 0;
}

.footer-column .category-menu li {
    margin-bottom: 12px;
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 60px 0 25px;
    background: #222;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #777;
    font-size: 13px;
    text-decoration: none;
}

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

.footer-bottom-links span {
    color: #444;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 20px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        height: 45px;
        max-width: 210px;
    }

    .footer-description {
        margin-top: 18px;
        font-size: 14px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-divider {
        margin: 45px 0 22px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

}


@media (max-width: 420px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

}





/* =========================================================
   BLOG HOMEPAGE
========================================================= */

.blog-home {
    background: #fff;
    color: #111;
}

.blog-home-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.blog-home-hero {
    padding: 105px 20px 100px;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.blog-home-hero .blog-home-container {
    max-width: 900px;
}

.blog-home-eyebrow,
.blog-home-section-label {
    display: block;
    margin-bottom: 14px;
    color: #666;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-home-hero h1 {
    max-width: 900px;
    margin: 0 auto;
    color: #000;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
}

.blog-home-hero-text {
    max-width: 750px;
    margin: 28px auto 0;
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

.blog-home-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.blog-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.blog-home-btn-primary {
    background: #000;
    color: #fff;
}

.blog-home-btn-primary:hover {
    background: #222;
    color: #fff;
}

.blog-home-btn-secondary {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
}

.blog-home-btn-secondary:hover {
    background: #eee;
    color: #000;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.blog-home-section {
    padding: 90px 20px;
}

.blog-home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-home-section-heading h2 {
    margin: 0;
    color: #000;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.blog-home-centered-heading {
    display: block;
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.blog-home-centered-heading .blog-home-section-label {
    margin-bottom: 10px;
}

.blog-home-centered-heading p {
    max-width: 650px;
    margin: 17px auto 0;
    color: #666;
    font-size: 16px;
    line-height: 1.75;
}

.blog-home-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.blog-home-view-all:hover {
    text-decoration: underline;
}


/* =========================================================
   LATEST POSTS
========================================================= */

.blog-home-latest {
    background: #fff;
}

.blog-home-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.blog-home-post-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-home-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}

.blog-home-post-image {
    display: block;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #eee;
}

.blog-home-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-home-post-card:hover .blog-home-post-image img {
    transform: scale(1.04);
}

.blog-home-post-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-home-post-content {
    padding: 24px;
}

.blog-home-post-category {
    display: inline-block;
    margin-bottom: 11px;
    color: #666;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-home-post-category:hover {
    color: #000;
}

.blog-home-post-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -.3px;
}

.blog-home-post-content h3 a {
    color: #000;
    text-decoration: none;
}

.blog-home-post-content h3 a:hover {
    text-decoration: underline;
}

.blog-home-post-excerpt {
    min-height: 48px;
    margin: 0 0 22px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.blog-home-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 17px;
    border-top: 1px solid #eee;
}

.blog-home-post-footer time {
    color: #888;
    font-size: 12px;
}

.blog-home-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.blog-home-read-more:hover {
    text-decoration: underline;
}


/* =========================================================
   CATEGORIES
========================================================= */

.blog-home-categories {
    background: #f5f5f5;
}

.blog-home-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.blog-home-category-card {
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;
    gap: 20px;
    min-height: 125px;
    padding: 25px;
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    text-decoration: none;
    transition: all .2s ease;
}

.blog-home-category-card:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.blog-home-category-number {
    color: #999;
    font-size: 12px;
    font-weight: 800;
}

.blog-home-category-card h3 {
    margin: 0 0 7px;
    font-size: 20px;
    line-height: 1.25;
}

.blog-home-category-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.blog-home-category-card:hover p {
    color: #bbb;
}

.blog-home-category-arrow {
    font-size: 20px;
    text-align: right;
}


/* =========================================================
   VALUE / WHY BLOG
========================================================= */

.blog-home-value {
    background: #fff;
}

.blog-home-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.blog-home-value-intro h2 {
    max-width: 520px;
    margin: 0;
    color: #000;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.blog-home-value-intro > p {
    max-width: 540px;
    margin: 22px 0 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.blog-home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.blog-home-text-link:hover {
    text-decoration: underline;
}

.blog-home-value-list {
    border-top: 1px solid #ddd;
}

.blog-home-value-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

.blog-home-value-icon {
    color: #888;
    font-size: 12px;
    font-weight: 800;
}

.blog-home-value-item h3 {
    margin: 0 0 7px;
    color: #000;
    font-size: 19px;
}

.blog-home-value-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   AUTHORS
========================================================= */

.blog-home-authors {
    background: #f5f5f5;
}

.blog-home-author-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.blog-home-author-card {
    display: flex;
    gap: 22px;
    padding: 28px;
    background: #fff;
    border: 1px solid #ddd;
}

.blog-home-author-avatar {
    display: block;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
}

.blog-home-author-avatar-image,
.blog-home-author-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-home-author-info h3 {
    margin: 0 0 7px;
    color: #000;
    font-size: 19px;
}

.blog-home-author-info p {
    margin: 0 0 13px;
    color: #666;
    font-size: 13px;
    line-height: 1.65;
}

.blog-home-author-info > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.blog-home-author-info > a:hover {
    text-decoration: underline;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.blog-home-newsletter {
    padding: 80px 20px;
    background: #000;
}

.blog-home-newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px;
    background: #111;
    border: 1px solid #292929;
}

.blog-home-newsletter-content .blog-home-section-label {
    color: #999;
}

.blog-home-newsletter-content h2 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.blog-home-newsletter-content p {
    max-width: 520px;
    margin: 18px 0 0;
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

.blog-home-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.blog-home-newsletter-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    color: #000;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.blog-home-newsletter-form input:focus {
    border-color: #aaa;
}

.blog-home-newsletter-form button {
    min-height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.blog-home-newsletter-form button:hover {
    background: #ddd;
}

.blog-home-newsletter-form button span {
    margin-left: 7px;
}

.blog-home-newsletter-form small {
    grid-column: 1 / -1;
    color: #777;
    font-size: 11px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.blog-home-empty {
    padding: 50px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    text-align: center;
}

.blog-home-empty h3 {
    margin: 0 0 10px;
    color: #000;
}

.blog-home-empty p {
    margin: 0;
    color: #666;
}


/* =========================================================
   SCREEN READER
========================================================= */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .blog-home-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-home-value-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-home-newsletter-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .blog-home-hero {
        padding: 70px 20px;
    }

    .blog-home-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .blog-home-hero-text {
        font-size: 16px;
    }

    .blog-home-section {
        padding: 65px 20px;
    }

    .blog-home-section-heading {
        display: block;
    }

    .blog-home-section-heading h2 {
        font-size: 31px;
    }

    .blog-home-view-all {
        margin-top: 17px;
    }

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

    .blog-home-category-grid {
        grid-template-columns: 1fr;
    }

    .blog-home-author-grid {
        grid-template-columns: 1fr;
    }

    .blog-home-value-intro h2 {
        font-size: 34px;
    }

    .blog-home-newsletter {
        padding: 50px 20px;
    }

    .blog-home-newsletter-box {
        padding: 35px 25px;
    }

    .blog-home-newsletter-content h2 {
        font-size: 32px;
    }

    .blog-home-newsletter-form {
        grid-template-columns: 1fr;
    }

    .blog-home-newsletter-form small {
        grid-column: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .blog-home-hero h1 {
        font-size: 34px;
    }

    .blog-home-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-home-btn {
        width: 100%;
    }

    .blog-home-category-card {
        grid-template-columns: 40px 1fr 20px;
        gap: 12px;
        padding: 20px;
    }

    .blog-home-post-image {
        height: 210px;
    }

    .blog-home-author-card {
        flex-direction: column;
    }

    .blog-home-author-avatar {
        width: 70px;
        height: 70px;
    }

}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(255, 255, 255, .96);

    border-bottom: 1px solid #e5e5e5;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    width: 100%;
    max-width: 1200px;

    min-height: 78px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo a {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.site-logo img {
    display: block;

    width: auto;
    height: 46px;

    max-width: 210px;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.primary-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.primary-nav ul {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-nav li {
    margin: 0;
    padding: 0;
}

.primary-nav li a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 8px 0;

    color: #444;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color .2s ease;
}


/* Hover underline */

.primary-nav li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 1px;

    background: #000;

    transition:
        width .2s ease;
}

.primary-nav li a:hover {
    color: #000;
}

.primary-nav li a:hover::after {
    width: 100%;
}


/* =========================================================
   ACTIVE MENU
========================================================= */

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a {
    color: #000;
    font-weight: 700;
}

.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after,
.primary-nav .current-menu-ancestor > a::after {
    width: 100%;
}


/* =========================================================
   EXPLORE BLOG BUTTON
========================================================= */

.header-blog-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding: 0 17px;

    background: #000;
    color: #fff !important;

    border: 1px solid #000;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.header-blog-button:hover {
    background: #fff;
    color: #000 !important;
}

.header-blog-button span {
    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.nav-toggle {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.nav-toggle-label {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    border: 1px solid #ddd;
    background: #fff;
}

.nav-toggle-label span {
    display: block;

    width: 19px;
    height: 2px;

    background: #000;

    transition:
        transform .2s ease,
        opacity .2s ease;
}


/* =========================================================
   MOBILE MENU OPEN STATE
========================================================= */

.nav-toggle:checked
~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked
~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked
~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   SKIP LINK
========================================================= */

.skip-link {
    position: absolute;

    left: 15px;
    top: -100px;

    z-index: 10000;

    padding: 10px 15px;

    background: #000;
    color: #fff;

    font-size: 14px;
    text-decoration: none;
}

.skip-link:focus {
    top: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .header-container {
        min-height: 70px;

        gap: 20px;
    }

    .site-logo img {
        height: 42px;
        max-width: 190px;
    }

    .primary-nav {
        gap: 18px;
    }

    .primary-nav ul {
        gap: 18px;
    }

    .primary-nav li a {
        font-size: 13px;
    }

    .header-blog-button {
        padding: 0 14px;
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-container {
        position: relative;

        min-height: 68px;

        padding: 0 18px;
    }

    .site-logo img {
        height: 40px;
        max-width: 175px;
    }


    /* Show hamburger */

    .nav-toggle-label {
        display: flex;

        flex-shrink: 0;
    }


    /* Mobile navigation */

    .primary-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;

        align-items: stretch;
        flex-direction: column;

        gap: 0;

        padding: 18px;

        background: #fff;

        border-bottom: 1px solid #ddd;

        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
    }


    /* Open */

    .nav-toggle:checked
    ~ .primary-nav {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* Mobile menu list */

    .primary-nav ul {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;
    }

    .primary-nav li {
        border-bottom: 1px solid #eee;
    }

    .primary-nav li:last-child {
        border-bottom: 0;
    }

    .primary-nav li a {
        display: flex;

        width: 100%;

        min-height: 48px;

        align-items: center;

        padding: 12px 2px;

        font-size: 15px;
    }

    .primary-nav li a::after {
        display: none;
    }


    /* Mobile CTA */

    .header-blog-button {
        width: 100%;

        min-height: 48px;

        margin-top: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .header-container {
        padding: 0 15px;
    }

    .site-logo img {
        height: 36px;
        max-width: 155px;
    }

    .nav-toggle-label {
        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   AUTHOR PAGE
========================================================= */

.author-page {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.author-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   AUTHOR PROFILE
========================================================= */

.author-page .author-container {
    padding-top: 90px;
    padding-bottom: 85px;
}

.author-page .section-label,
.author-posts .section-label {
    display: block;
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #666;
}


.author-profile {
    display: flex;
    align-items: center;
    gap: 45px;
    max-width: 900px;
}


.author-avatar {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
}


.author-avatar img {
    display: block;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    border: 1px solid #ddd;
}


.author-info {
    max-width: 700px;
}


.author-info h1 {
    margin: 0 0 18px;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;

    color: #111;
}


.author-info p {
    max-width: 680px;

    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #555;
}


/* =========================================================
   AUTHOR POSTS
========================================================= */

.author-posts {
    background: #fff;
}


.author-posts .author-container {
    padding-top: 85px;
    padding-bottom: 100px;
}


.author-posts > .author-container > .section-label {
    margin-bottom: 35px;

    color: #111;
}


/* =========================================================
   POST GRID
========================================================= */

.author-post-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================================
   POST CARD
========================================================= */

.author-post-grid .post-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e3e3e3;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.author-post-grid .post-card:hover {
    transform: translateY(-5px);

    border-color: #111;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   POST IMAGE
========================================================= */

.author-post-grid .post-image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #eee;
}


.author-post-grid .post-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.author-post-grid .post-card:hover .post-image img {
    transform: scale(1.04);
}


/* =========================================================
   POST CONTENT
========================================================= */

.author-post-grid .post-card-content {
    padding: 28px 28px 30px;
}


.author-post-grid .meta {
    display: block;

    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #777;
}


.author-post-grid h2 {
    margin: 0 0 15px;

    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}


.author-post-grid h2 a {
    color: #111;
    text-decoration: none;

    transition: color 0.2s ease;
}


.author-post-grid h2 a:hover {
    color: #555;
}


.author-post-grid .post-card-content p {
    margin: 0 0 22px;

    font-size: 15px;
    line-height: 1.75;

    color: #666;
}


/* =========================================================
   READ ARTICLE
========================================================= */

.author-post-grid .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #111;

    text-decoration: none;

    transition: gap 0.2s ease;
}


.author-post-grid .read-more:hover {
    gap: 13px;
}


.author-post-grid .read-more::after {
    content: "";
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .author-page .author-container {
        padding-top: 70px;
        padding-bottom: 65px;
    }

    .author-posts .author-container {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .author-profile {
        gap: 30px;
    }

    .author-avatar {
        flex-basis: 120px;
        width: 120px;
        height: 120px;
    }

    .author-avatar img {
        width: 120px;
        height: 120px;
    }

    .author-info h1 {
        font-size: 46px;
    }

    .author-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .author-container {
        width: min(100% - 30px, 1200px);
    }

    .author-page .author-container {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .author-profile {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .author-avatar {
        width: 100px;
        height: 100px;
    }

    .author-avatar img {
        width: 100px;
        height: 100px;
    }

    .author-info h1 {
        margin-bottom: 14px;

        font-size: 38px;
        letter-spacing: -1px;
    }

    .author-info p {
        font-size: 16px;
        line-height: 1.7;
    }

    .author-posts .author-container {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .author-post-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .author-post-grid .post-card-content {
        padding: 23px;
    }

    .author-post-grid h2 {
        font-size: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .author-info h1 {
        font-size: 34px;
    }

    .author-page .section-label,
    .author-posts .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

}



/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    background: #fff;
    padding: 90px 0 110px;
}

.contact-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   CONTACT HEADER
========================================================= */

.contact-header {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.contact-label,
.contact-info-label {
    display: block;
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #666;
}

.contact-header h1 {
    margin: 0 0 20px;

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;

    color: #111;
}

.contact-header p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #666;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;
    align-items: start;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    margin: 0 0 20px;

    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -1px;

    color: #111;
}

.contact-info > p {
    max-width: 450px;

    margin: 0 0 35px;

    font-size: 16px;
    line-height: 1.8;

    color: #666;
}

.contact-info-item {
    padding-top: 25px;

    border-top: 1px solid #ddd;
}

.contact-info-item strong {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #111;
}

.contact-info-item a {
    color: #333;

    text-decoration: none;

    font-size: 16px;
}

.contact-info-item a:hover {
    color: #000;
    text-decoration: underline;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 40px;

    background: #f7f7f7;

    border: 1px solid #e3e3e3;
}

.contact-form {
    width: 100%;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;

    color: #222;
}

.form-field input,
.form-field textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 15px 16px;

    border: 1px solid #d5d5d5;

    border-radius: 0;

    background: #fff;

    color: #111;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input {
    height: 52px;
}

.form-field textarea {
    min-height: 170px;

    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #111;

    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border: 0;

    background: #111;
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        gap 0.2s ease;
}

.contact-submit:hover {
    background: #333;
    gap: 15px;
}


/* =========================================================
   FORM NOTICE
========================================================= */

.form-notice {
    max-width: 700px;

    margin: 0 auto 40px;

    padding: 16px 20px;

    border: 1px solid #ddd;

    font-size: 14px;
    line-height: 1.6;
}

.form-success {
    background: #f5f5f5;
    color: #222;
}

.form-error {
    background: #fafafa;
    color: #555;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .contact-page {
        padding: 70px 0 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-info {
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-container {
        width: calc(100% - 30px);
    }

    .contact-page {
        padding: 55px 0 65px;
    }

    .contact-header {
        margin-bottom: 45px;
    }

    .contact-header h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-submit {
        width: 100%;
    }

}


/* =========================================================
   SINGLE BLOG PAGE
========================================================= */

.single-blog-hero {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 70px 20px 65px;
    text-align: center;
}

.single-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.single-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    margin-bottom: 30px;

    color: #777;
    font-size: 13px;
}

.single-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.single-breadcrumb a:hover {
    color: #000;
    text-decoration: underline;
}


/* =========================================================
   CATEGORY
========================================================= */

.single-category {
    display: inline-block;

    margin-bottom: 20px;
    padding: 7px 13px;

    background: #000;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;
}

.single-category:hover {
    background: #222;
    color: #fff;
}


/* =========================================================
   TITLE
========================================================= */

.single-title {
    max-width: 900px;

    margin: 0 auto;

    color: #000;

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;

    letter-spacing: -1.5px;

    font-weight: 800;
}


/* =========================================================
   EXCERPT
========================================================= */

.single-excerpt {
    max-width: 760px;

    margin: 25px auto 0;

    color: #555;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   AUTHOR
========================================================= */

.single-author-row {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 32px auto 0;
}

.single-author-avatar {
    display: block;

    width: 56px;
    height: 56px;

    flex: 0 0 56px;
}

.single-author-avatar-image {
    display: block;

    width: 56px !important;
    height: 56px !important;

    border-radius: 50%;

    object-fit: cover;

    border: 1px solid #ddd;
}

.single-author-details {
    text-align: left;
}

.single-author-name {
    display: inline-block;

    margin-bottom: 5px;

    color: #111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.single-author-name:hover {
    text-decoration: underline;
}

.single-author-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    color: #777;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */
.single-featured-section {
/*     padding: 45px 20px 0; */
    background: #fff;
}

.single-featured-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.single-featured-image {
    width: 100%;
    overflow: hidden;
    background: #eee;
}

.single-featured-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}
/* =========================================================
   ARTICLE CONTENT
========================================================= */

.single-content-section {
    padding: 55px 20px 80px;

    background: #fff;
}

.single-content-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   BACK TO BLOG
========================================================= */

.back-to-blog {
    display: inline-flex;

    margin-bottom: 35px;

    color: #000;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.back-to-blog:hover {
    text-decoration: underline;
}


/* =========================================================
   ARTICLE
========================================================= */

.single-article {
    width: 100%;
}

.entry-content {
    color: #292929;

    font-size: 18px;
    line-height: 1.85;

    text-align: left;
}


/* Paragraph */

.entry-content p {
    margin: 0 0 25px;
}


/* Headings */

.entry-content h2 {
    margin: 55px 0 20px;

    color: #000;

    font-size: 32px;
    line-height: 1.25;

    font-weight: 800;
}

.entry-content h3 {
    margin: 42px 0 16px;

    color: #000;

    font-size: 25px;
    line-height: 1.3;

    font-weight: 750;
}

.entry-content h4 {
    margin: 35px 0 14px;

    color: #000;

    font-size: 21px;
    line-height: 1.4;
}


/* Links */

.entry-content a {
    color: #000;

    font-weight: 600;

    text-decoration: underline;
}

.entry-content a:hover {
    text-decoration: none;
}


/* Lists */

.entry-content ul,
.entry-content ol {
    margin: 0 0 28px;
    padding-left: 28px;
}

.entry-content li {
    margin-bottom: 10px;
}


/* Blockquote */

.entry-content blockquote {
    margin: 35px 0;

    padding: 25px 30px;

    border-left: 4px solid #000;

    background: #f5f5f5;

    color: #333;

    font-size: 20px;

    font-style: italic;
}


/* Images */

.entry-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 35px auto;
}


/* Figure */

.entry-content figure {
    margin: 35px 0;
}

.entry-content figcaption {
    margin-top: 10px;

    color: #777;

    font-size: 13px;

    text-align: center;
}


/* Tables */

.entry-content table {
    width: 100%;

    margin: 35px 0;

    border-collapse: collapse;

    font-size: 15px;
}

.entry-content th,
.entry-content td {
    padding: 13px 15px;

    border: 1px solid #ddd;

    text-align: left;
}

.entry-content th {
    background: #f5f5f5;

    color: #000;

    font-weight: 700;
}


/* Code */

.entry-content pre {
    overflow-x: auto;

    margin: 30px 0;
    padding: 22px;

    background: #111;
    color: #fff;

    font-size: 14px;
    line-height: 1.6;
}

.entry-content code {
    padding: 2px 5px;

    background: #f1f1f1;
    color: #111;

    font-size: .9em;
}


/* =========================================================
   ARTICLE SHARE / ACTIONS
========================================================= */

.article-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 50px;
    padding: 22px 0;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.article-share {
    display: flex;
    align-items: center;

    gap: 10px;
}

.article-share-label {
    margin-right: 6px;

    color: #777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   SHARE CIRCLE
========================================================= */

.article-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    padding: 0;

    box-sizing: border-box;

    border: 1px solid #d8d8d8;
    border-radius: 50%;

    background: #fff;
    color: #222;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


/* Share Icons */

.article-share-button svg {
    display: block;

    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none;
}


/* Facebook */

.article-share-button[aria-label="Share on Facebook"] svg {
    fill: currentColor;
    stroke: none;
}


/* Hover */

.article-share-button:hover {
    background: #000;
    border-color: #000;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
}


/* Copied */

.copy-link-button.copied {
    background: #000;

    border-color: #000;

    color: #fff;

    transform: scale(1.05);
}


/* Focus */

.article-share-button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}


/* =========================================================
   ARTICLE FOOTER
========================================================= */

.article-footer {
    margin-top: 55px;

    padding-top: 30px;

    border-top: 1px solid #ddd;
}

.article-tags-label {
    display: block;

    margin-bottom: 12px;

    color: #777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.article-category-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.article-category-list a {
    padding: 8px 12px;

    border: 1px solid #ccc;

    color: #333;

    font-size: 13px;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.article-category-list a:hover {
    background: #000;

    border-color: #000;

    color: #fff;
}

.article-back {
    margin-top: 30px;
}

.article-back a {
    color: #000;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.article-back a:hover {
    text-decoration: underline;
}


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

.comments-section {
    width: 100%;

    padding: 70px 20px 80px;

    background: #f7f7f7;

    border-top: 1px solid #e5e5e5;
}

.comments-container {
    width: 100%;
    max-width: 600px;

    margin: 0 auto;
}


/* =========================================================
   COMMENTS HEADER
========================================================= */

.comments-title {
    margin: 0 0 35px;

    color: #111;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.5px;
}


/* =========================================================
   COMMENT LIST
========================================================= */

.comment-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.comment-list .comment {
    margin: 0 0 28px;
    padding: 0;
}

.comment-list > .comment {
    padding-bottom: 28px;

    border-bottom: 1px solid #dedede;
}


/* =========================================================
   COMMENT BODY
========================================================= */

.comment-body {
    position: relative;
}


/* =========================================================
   COMMENT AUTHOR
========================================================= */

.comment-author {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 7px;
}

.comment-author img {
    display: block;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    object-fit: cover;

    border: 1px solid #ddd;
}

.comment-author .fn {
    display: block;

    color: #111;

    font-size: 14px;

    font-weight: 700;

    font-style: normal;
}

.comment-author .says {
    display: none;
}


/* =========================================================
   COMMENT META
========================================================= */

.comment-metadata {
    margin: 0 0 15px 56px;

    font-size: 12px;
}

.comment-metadata a {
    color: #888;

    text-decoration: none;
}

.comment-metadata a:hover {
    color: #111;
}


/* =========================================================
   COMMENT CONTENT
========================================================= */

.comment-content {
    margin-left: 56px;

    color: #333;

    font-size: 15px;

    line-height: 1.75;
}

.comment-content p {
    margin: 0 0 10px;
}

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


/* =========================================================
   REPLY BUTTON
========================================================= */

.reply {
    margin-left: 56px;

    margin-top: 10px;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;

    color: #555;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

    text-decoration: none;

    text-transform: uppercase;
}

.comment-reply-link:hover {
    color: #000;

    text-decoration: underline;
}


/* =========================================================
   NESTED REPLIES
========================================================= */

.comment-list .children {
    margin: 25px 0 0 56px;

    padding: 0 0 0 25px;

    border-left: 2px solid #e2e2e2;

    list-style: none;
}

.comment-list .children .comment {
    margin-bottom: 25px;
}

.comment-list .children .comment:last-child {
    margin-bottom: 0;
}


/* =========================================================
   COMMENT FORM
========================================================= */

.comment-respond {
    margin-top: 60px;

    padding-top: 45px;

    border-top: 1px solid #ddd;
}

.comment-reply-title {
    margin: 0 0 25px;

    color: #111;

    font-size: 26px;

    line-height: 1.25;

    font-weight: 800;
}

.comment-reply-title small {
    margin-left: 8px;

    font-size: 12px;

    font-weight: 500;
}

.comment-reply-title small a {
    color: #777;

    text-decoration: none;
}


/* =========================================================
   COMMENT FORM FIELDS
========================================================= */

.comment-form {
    margin: 0;
}

.comment-form p {
    margin: 0 0 18px;
}

.comment-form label {
    display: block;

    margin-bottom: 7px;

    color: #222;

    font-size: 13px;

    font-weight: 700;
}

.comment-form input,
.comment-form textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d5d5d5;

    border-radius: 4px;

    background: #fff;

    color: #111;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.comment-form input {
    height: 50px;

    padding: 0 14px;
}

.comment-form textarea {
    min-height: 150px;

    padding: 14px;

    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #111;

    box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: #999;
}


/* =========================================================
   COMMENT SUBMIT
========================================================= */

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border: 0;
    border-radius: 4px;

    background: #111;

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.comment-form .submit:hover {
    background: #333;

    transform: translateY(-1px);
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-section {
    padding: 75px 20px;

    background: #f5f5f5;
}

.related-container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}

.related-heading {
    margin-bottom: 35px;

    text-align: center;
}

.related-heading .section-label {
    display: block;

    margin-bottom: 8px;
}

.related-heading h2 {
    margin: 0;

    color: #000;

    font-size: 36px;

    line-height: 1.2;
}


/* =========================================================
   RELATED GRID
========================================================= */

.related-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   RELATED CARD
========================================================= */

.related-grid .post-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #ddd;
}

.related-grid .post-image {
    display: block;

    width: 100%;

    overflow: hidden;
}

.related-grid .post-image img {
    display: block;

    width: 100%;
    height: 220px;

    object-fit: cover;

    transition: transform .3s ease;
}

.related-grid .post-card:hover .post-image img {
    transform: scale(1.03);
}

.related-grid .post-card-content {
    padding: 22px;
}

.related-grid .cat-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: #555;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

    text-decoration: none;
}

.related-grid .post-card h3 {
    margin: 0 0 12px;

    font-size: 21px;

    line-height: 1.35;
}

.related-grid .post-card h3 a {
    color: #000;

    text-decoration: none;
}

.related-grid .post-card h3 a:hover {
    text-decoration: underline;
}

.related-grid .post-excerpt {
    margin: 0 0 20px;

    color: #666;

    font-size: 14px;
}
/* =========================================================
   CTA
========================================================= */

.article-cta {
    padding: 75px 20px;

    background: #000;

    text-align: center;
}

.article-cta-container {
    max-width: 1200px;

    margin: 0 auto;
}

.article-cta-label {
    display: block;

    margin-bottom: 12px;

    color: #aaa;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.article-cta h2 {
    margin: 0 0 15px;

    color: #fff;

    font-size: 40px;

    line-height: 1.2;
}

.article-cta p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: #ccc;

    font-size: 16px;

    line-height: 1.7;
}

.article-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 24px;

    background: #fff;

    color: #000;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        transform .2s ease;
}

.article-cta-button:hover {
    background: #ddd;

    color: #000;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .single-blog-hero {
        padding: 50px 20px;
    }

    .single-title {
        font-size: 40px;
    }

    .single-excerpt {
        font-size: 17px;
    }

    .single-featured-section {
        padding-top: 25px;
    }

    .single-content-section {
        padding: 40px 20px 55px;
    }

    .entry-content {
        font-size: 17px;

        line-height: 1.8;
    }

    .entry-content h2 {
        font-size: 28px;
    }

    .entry-content h3 {
        font-size: 23px;
    }

    .related-section {
        padding: 55px 20px;
    }

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

    .article-cta {
        padding: 55px 20px;
    }

    .article-cta h2 {
        font-size: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .single-author-row {
        justify-content: flex-start;

        margin-top: 28px;
    }

    .single-author-avatar {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .single-author-avatar-image {
        width: 48px !important;
        height: 48px !important;
    }


    /* Share */

    .article-actions {
        justify-content: flex-start;

        margin-top: 35px;

        padding: 18px 0;
    }

    .article-share {
        gap: 8px;
    }

    .article-share-label {
        margin-right: 4px;

        font-size: 10px;
    }

    .article-share-button {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

    .article-share-button svg {
        width: 16px;
        height: 16px;
    }


    /* Comments */

    .comments-section {
        padding: 50px 20px 60px;
    }

    .comments-title {
        font-size: 26px;
    }

    .comment-content,
    .reply {
        margin-left: 0;
    }

    .comment-metadata {
        margin-left: 56px;
    }

    .comment-list .children {
        margin-left: 20px;

        padding-left: 15px;
    }

    .comment-respond {
        margin-top: 45px;

        padding-top: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .single-title {
        font-size: 32px;

        letter-spacing: -1px;
    }

    .single-meta {
        font-size: 13px;
    }

    .single-breadcrumb {
        font-size: 12px;
    }

    .entry-content {
        font-size: 16px;
    }

    .entry-content h2 {
        font-size: 26px;
    }

    .entry-content h3 {
        font-size: 22px;
    }

    .article-share-label {
        display: none;
    }

    .article-share-button {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

}

/* =========================================================
   SINGLE POST LAYOUT (sidebar inside article)
========================================================= */

.single-article-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}

.single-sidebar {
    position: sticky;
    top: 28px;
    align-self: start;
}

@media (max-width: 900px) {
    .single-article-grid {
        display: flex;
        flex-direction: column;
    }
    .single-article-grid .entry-content {
        order: 1;
    }
    .single-sidebar {
        order: 2;
        position: static;
        margin-top: 40px;
    }
}

.sidebar-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .035);
}

.sidebar-accordion summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #111;
}

.sidebar-accordion summary::-webkit-details-marker {
    display: none;
}

.sidebar-accordion summary::after {
    content: '\2212';
    font-size: 15px;
    font-weight: 400;
    color: #aaa;
}

.sidebar-accordion:not([open]) summary::after {
    content: '+';
}

.sidebar-box .toc-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.toc-list li {
    margin-bottom: 11px;
    font-size: 13.5px;
    line-height: 1.45;
}

.toc-list li.toc-level-3 {
    padding-left: 16px;
    font-size: 12.5px;
}

.toc-list a {
    color: #444;
    text-decoration: none;
    transition: color .15s ease;
}

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

.year-archive {
    margin-top: 16px;
}

.year-group {
    border-top: 1px solid #f0f0f0;
}

.year-group summary {
    padding: 11px 0;
    font-weight: 700;
    font-size: 13.5px;
    color: #111;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.year-group summary::-webkit-details-marker {
    display: none;
}

.year-count {
    font-weight: 400;
    font-size: 11.5px;
    color: #999;
}

.year-post-list {
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
}

.year-post-list li {
    margin-bottom: 8px;
    font-size: 12.5px;
    line-height: 1.4;
}

.year-post-list a {
    color: #666;
    text-decoration: none;
    transition: color .15s ease;
}

.year-post-list a:hover {
    color: #000;
}