/*
Theme Name: Thế Giới Hoa Hồng Child
Description: Blog Magazine 4.0 - Thế Giới Hoa Hồng
Version: 4.0.0
*/

/* =========================================================
   TGH BLOG MAGAZINE 4.0
   ---------------------------------------------------------
   Brand
   Deep Forest Green : #19392a
   Green Dark        : #10271d
   Gold              : #b99a72
   Cream             : #f8f6f1
   Text              : #252525
   Muted             : #777777
   Border            : #e8e3db

   IMPORTANT
   - Chỉ tác động khu vực Blog
   - Không đụng Header / Footer
   - Không đụng WooCommerce
   - Namespace: .tghh-blog
   ========================================================= */


/* =========================================================
   01. ROOT / RESET
   ========================================================= */

.tghh-blog {
    --tghh-green: #19392a;
    --tghh-green-dark: #10271d;
    --tghh-green-soft: #eef3ef;

    --tghh-gold: #b99a72;

    --tghh-cream: #f8f6f1;
    --tghh-cream-dark: #eee9df;

    --tghh-text: #252525;
    --tghh-muted: #777;
    --tghh-light: #999;

    --tghh-border: #e8e3db;

    --tghh-white: #fff;

    --tghh-max-width: 1180px;

    color: var(--tghh-text);
    background: var(--tghh-white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.tghh-blog *,
.tghh-blog *::before,
.tghh-blog *::after {
    box-sizing: border-box;
}

.tghh-blog img {
    max-width: 100%;
}

.tghh-blog a {
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        opacity .2s ease;
}


/* =========================================================
   02. CONTAINER
   ========================================================= */

.tghh-blog-container {
    width: min(
        var(--tghh-max-width),
        calc(100% - 40px)
    );

    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */

.tghh-blog h1,
.tghh-blog h2,
.tghh-blog h3,
.tghh-blog h4 {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-weight: 600;
}

.tghh-blog p {
    margin-top: 0;
}


/* =========================================================
   04. HERO
   ========================================================= */

.tghh-blog-hero {
    position: relative;

    padding: 86px 0 82px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8f6f1 0%,
            #f4f1e9 52%,
            #ffffff 100%
        );
}

.tghh-blog-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -210px;
    top: -270px;

    border: 1px solid rgba(185,154,114,.18);

    border-radius: 50%;

    pointer-events: none;
}

.tghh-blog-hero::after {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    right: 40px;
    bottom: -220px;

    border: 1px solid rgba(25,57,42,.08);

    border-radius: 50%;

    pointer-events: none;
}

.tghh-blog-hero-inner {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.tghh-blog-eyebrow,
.tghh-blog-section-label {
    display: block;

    margin-bottom: 12px;

    color: var(--tghh-gold);

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

    line-height: 1.5;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.tghh-blog-title {
    margin: 0 0 20px;

    color: var(--tghh-green);

    font-size:
        clamp(
            44px,
            6vw,
            70px
        );

    line-height: .98;

    letter-spacing: -.025em;
}

.tghh-blog-intro {
    max-width: 720px;

    margin: 0;

    color: var(--tghh-muted);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   05. SECTION HEADING
   ========================================================= */

.tghh-blog-section-heading {
    margin-bottom: 28px;
}

.tghh-blog-section-heading h2 {
    margin: 0;

    color: var(--tghh-green);

    font-size:
        clamp(
            31px,
            4vw,
            43px
        );

    line-height: 1.1;

    letter-spacing: -.01em;
}


/* =========================================================
   06. CATEGORY TREE
   ========================================================= */

.tghh-blog-category-tree {
    padding: 58px 0 25px;
}

.tghh-blog-category-navigation {
    border-top: 1px solid var(--tghh-border);
    border-bottom: 1px solid var(--tghh-border);
}

.tghh-blog-category-list {
    display: grid;

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

    column-gap: 35px;
}

.tghh-blog-category-item {
    min-width: 0;

    border-bottom: 1px solid var(--tghh-border);
}

.tghh-blog-category-parent {
    display: flex;

    align-items: center;

    min-height: 64px;
}

.tghh-blog-category-parent-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    flex: 1;

    min-width: 0;

    gap: 12px;

    color: var(--tghh-green);

    text-decoration: none;
}

.tghh-blog-category-parent-link:hover {
    color: var(--tghh-gold);
}

.tghh-blog-category-parent-name {
    min-width: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.25;
}

.tghh-blog-category-count {
    flex: 0 0 auto;

    color: var(--tghh-light);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 400;
}

.tghh-blog-category-toggle {
    display: none;

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

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    margin-left: 8px;

    padding: 0;

    border: 0;

    color: var(--tghh-green);

    background: transparent;

    font-size: 21px;

    cursor: pointer;
}

.tghh-blog-category-children {
    display: flex;

    flex-wrap: wrap;

    gap: 6px 17px;

    padding: 0 0 17px;
}

.tghh-blog-category-child {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--tghh-muted);

    font-size: 12px;

    line-height: 1.6;

    text-decoration: none;
}

.tghh-blog-category-child::before {
    content: "—";

    color: var(--tghh-gold);
}

.tghh-blog-category-child:hover {
    color: var(--tghh-green);
}


/* =========================================================
   07. FEATURED
   ========================================================= */

.tghh-blog-featured {
    padding: 68px 0 82px;
}

.tghh-blog-featured-card {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(330px, .85fr);

    min-height: 470px;

    overflow: hidden;

    background: var(--tghh-cream);
}

.tghh-blog-featured-image {
    position: relative;

    display: block;

    min-height: 470px;

    overflow: hidden;

    background: var(--tghh-cream-dark);
}

.tghh-blog-featured-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.tghh-blog-featured-card:hover
.tghh-blog-featured-image img {
    transform: scale(1.035);
}

.tghh-blog-featured-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;
}

.tghh-blog-meta-category,
.tghh-blog-category {
    margin-bottom: 12px;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.tghh-blog-meta-category a,
.tghh-blog-category a {
    color: var(--tghh-gold);

    text-decoration: none;
}

.tghh-blog-meta-category a:hover,
.tghh-blog-category a:hover {
    color: var(--tghh-green);
}

.tghh-blog-featured-title {
    margin: 0 0 18px;

    font-size:
        clamp(
            34px,
            4vw,
            49px
        );

    line-height: 1.07;

    letter-spacing: -.015em;
}

.tghh-blog-featured-title a {
    color: var(--tghh-green);

    text-decoration: none;
}

.tghh-blog-featured-title a:hover {
    color: var(--tghh-gold);
}

.tghh-blog-excerpt {
    max-width: 620px;

    margin: 0 0 30px;

    color: var(--tghh-muted);

    font-size: 15px;

    line-height: 1.8;
}

.tghh-blog-featured-footer,
.tghh-blog-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: auto;
}

.tghh-blog-date {
    color: var(--tghh-light);

    font-size: 11px;
}

.tghh-blog-read-more,
.tghh-blog-card-link {
    color: var(--tghh-green);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.tghh-blog-read-more span,
.tghh-blog-card-link span {
    display: inline-block;

    margin-left: 4px;

    transition:
        transform .2s ease;
}

.tghh-blog-read-more:hover,
.tghh-blog-card-link:hover {
    color: var(--tghh-gold);
}

.tghh-blog-read-more:hover span,
.tghh-blog-card-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   08. NO IMAGE
   ========================================================= */

.tghh-blog-no-image {
    display: flex;

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

    width: 100%;
    height: 100%;

    min-height: 180px;

    color: var(--tghh-green);

    background:
        linear-gradient(
            135deg,
            var(--tghh-cream),
            var(--tghh-cream-dark)
        );

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 25px;

    text-align: center;
}


/* =========================================================
   09. TOPIC HIGHLIGHTS
   ========================================================= */

.tghh-blog-topics-highlight {
    padding: 0 0 80px;
}

.tghh-blog-topic-highlight-grid {
    display: grid;

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

    gap: 20px;
}

.tghh-blog-topic-highlight {
    display: flex;

    flex-direction: column;

    min-height: 220px;

    padding: 30px;

    border: 1px solid var(--tghh-border);

    background: var(--tghh-white);

    text-decoration: none;
}

.tghh-blog-topic-highlight:hover {
    border-color: rgba(185,154,114,.55);

    box-shadow:
        0 16px 35px
        rgba(16,39,29,.07);

    transform: translateY(-3px);
}

.tghh-blog-topic-highlight-title {
    margin-bottom: 12px;

    color: var(--tghh-green);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.15;
}

.tghh-blog-topic-highlight-text {
    color: var(--tghh-muted);

    font-size: 14px;

    line-height: 1.75;
}

.tghh-blog-topic-highlight-link {
    margin-top: auto;

    padding-top: 20px;

    color: var(--tghh-green);

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   10. SEASONAL 20/10
   ========================================================= */

.tghh-blog-seasonal {
    position: relative;

    margin-bottom: 82px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #19392a 0%,
            #244a39 52%,
            #19392a 100%
        );
}

.tghh-blog-seasonal::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    top: -245px;
    right: -145px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 50%;
}

.tghh-blog-seasonal::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: 80px;
    bottom: -180px;

    border: 1px solid rgba(185,154,114,.18);

    border-radius: 50%;
}

.tghh-blog-seasonal-inner {
    position: relative;

    z-index: 2;

    padding: 60px;
}

.tghh-blog-seasonal-content {
    max-width: 740px;
}

.tghh-blog-seasonal .tghh-blog-section-label {
    color: var(--tghh-gold);
}

.tghh-blog-seasonal h2 {
    margin: 0 0 17px;

    color: var(--tghh-white);

    font-size:
        clamp(
            35px,
            4vw,
            50px
        );

    line-height: 1.08;
}

.tghh-blog-seasonal p {
    max-width: 700px;

    margin: 0 0 28px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.85;
}

.tghh-blog-seasonal-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 14px 23px;

    color: var(--tghh-green);

    background: var(--tghh-cream);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}

.tghh-blog-seasonal-button:hover {
    color: var(--tghh-white);

    background: var(--tghh-gold);
}


/* =========================================================
   11. LATEST POSTS
   ========================================================= */

.tghh-blog-latest {
    padding-bottom: 85px;
}

.tghh-blog-grid {
    display: grid;

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

    gap: 46px 24px;
}

.tghh-blog-card {
    min-width: 0;
}

.tghh-blog-card-image {
    position: relative;

    display: block;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: var(--tghh-cream-dark);
}

.tghh-blog-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.tghh-blog-card:hover
.tghh-blog-card-image img {
    transform: scale(1.035);
}

.tghh-blog-card-content {
    padding-top: 18px;
}

.tghh-blog-card-title {
    margin: 0 0 10px;

    font-size: 28px;

    line-height: 1.13;

    letter-spacing: -.01em;
}

.tghh-blog-card-title a {
    color: var(--tghh-green);

    text-decoration: none;
}

.tghh-blog-card-title a:hover {
    color: var(--tghh-gold);
}

.tghh-blog-card-excerpt {
    display: -webkit-box;

    margin: 0 0 18px;

    overflow: hidden;

    color: var(--tghh-muted);

    font-size: 14px;

    line-height: 1.72;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;
}


/* =========================================================
   12. PAGINATION
   ========================================================= */

.tghh-blog-pagination {
    padding-top: 55px;

    text-align: center;
}

.tghh-blog-pagination ul {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.tghh-blog-pagination li {
    margin: 0;

    padding: 0;
}

.tghh-blog-pagination a,
.tghh-blog-pagination span {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 38px;
    min-height: 38px;

    padding: 5px 11px;

    border: 1px solid var(--tghh-border);

    color: var(--tghh-green);

    background: var(--tghh-white);

    font-size: 11px;

    text-decoration: none;
}

.tghh-blog-pagination a:hover {
    border-color: var(--tghh-green);

    color: var(--tghh-white);

    background: var(--tghh-green);
}

.tghh-blog-pagination .current {
    border-color: var(--tghh-green);

    color: var(--tghh-white);

    background: var(--tghh-green);
}


/* =========================================================
   13. STRATEGIC TOPICS
   ========================================================= */

.tghh-blog-topics {
    padding-bottom: 90px;
}

.tghh-blog-topic-grid {
    display: grid;

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

    gap: 12px;
}

.tghh-blog-topic {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    min-height: 72px;

    padding: 17px 20px;

    border: 1px solid var(--tghh-border);

    color: var(--tghh-text);

    background: var(--tghh-white);

    text-decoration: none;
}

.tghh-blog-topic:hover {
    border-color: var(--tghh-green);

    background: var(--tghh-green-soft);

    transform: translateY(-2px);
}

.tghh-blog-topic-name {
    color: var(--tghh-green);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 600;
}

.tghh-blog-topic-count {
    margin-left: auto;

    color: var(--tghh-light);

    font-size: 10px;

    white-space: nowrap;
}

.tghh-blog-topic-arrow {
    color: var(--tghh-gold);

    font-size: 15px;
}


/* =========================================================
   14. EMPTY
   ========================================================= */

.tghh-blog-empty {
    padding: 70px 30px;

    text-align: center;

    background: var(--tghh-cream);
}

.tghh-blog-empty h2 {
    margin: 0 0 10px;

    color: var(--tghh-green);

    font-size: 33px;
}

.tghh-blog-empty p {
    margin: 0;

    color: var(--tghh-muted);
}


/* =========================================================
   15. CATEGORY ARCHIVE
   ========================================================= */

.tghh-blog-category-hero {
    padding: 35px 0 70px;

    background:
        linear-gradient(
            135deg,
            var(--tghh-cream) 0%,
            #f4f1e9 55%,
            var(--tghh-white) 100%
        );
}

.tghh-blog-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 42px;

    color: var(--tghh-light);

    font-size: 10px;
}

.tghh-blog-breadcrumb a {
    color: var(--tghh-muted);

    text-decoration: none;
}

.tghh-blog-breadcrumb a:hover {
    color: var(--tghh-green);
}

.tghh-blog-breadcrumb span:last-child {
    color: var(--tghh-green);

    font-weight: 700;
}

.tghh-blog-category-hero-content {
    max-width: 850px;
}

.tghh-blog-category-description {
    max-width: 760px;

    color: var(--tghh-muted);

    font-size: 15px;

    line-height: 1.85;
}

.tghh-blog-category-description p {
    margin: 0 0 12px;
}

.tghh-blog-category-posts {
    padding: 75px 0 25px;
}

.tghh-blog-related-categories {
    padding: 45px 0 90px;

    border-top: 1px solid var(--tghh-border);
}


/* =========================================================
   16. SINGLE POST
   ========================================================= */

.tghh-blog-single-hero {
    padding: 35px 0 60px;

    background:
        linear-gradient(
            135deg,
            var(--tghh-cream) 0%,
            #f4f1e9 55%,
            var(--tghh-white) 100%
        );
}

.tghh-blog-single-header {
    max-width: 920px;
}

.tghh-blog-single-title {
    margin: 0 0 20px;

    color: var(--tghh-green);

    font-size:
        clamp(
            43px,
            6vw,
            68px
        );

    line-height: 1.02;

    letter-spacing: -.025em;
}

.tghh-blog-single-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    color: var(--tghh-light);

    font-size: 11px;
}

.tghh-blog-single-featured {
    margin: 0;

    padding: 55px 0 70px;
}

.tghh-blog-single-featured img {
    display: block;

    width: 100%;
    max-height: 700px;

    object-fit: cover;
}


/* =========================================================
   17. SINGLE ARTICLE LAYOUT
   ========================================================= */

.tghh-blog-single-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        280px;

    gap: 70px;

    align-items: start;
}

.tghh-blog-entry-content {
    max-width: 780px;

    color: var(--tghh-text);

    font-size: 16px;

    line-height: 1.9;
}

.tghh-blog-entry-content > * {
    margin-top: 0;

    margin-bottom: 1.25em;
}

.tghh-blog-entry-content h2,
.tghh-blog-entry-content h3,
.tghh-blog-entry-content h4 {
    color: var(--tghh-green);

    line-height: 1.2;
}

.tghh-blog-entry-content h2 {
    margin-top: 1.8em;

    font-size: 36px;
}

.tghh-blog-entry-content h3 {
    margin-top: 1.6em;

    font-size: 29px;
}

.tghh-blog-entry-content h4 {
    margin-top: 1.5em;

    font-size: 24px;
}

.tghh-blog-entry-content a {
    color: var(--tghh-green);

    text-decoration:
        underline;

    text-decoration-color:
        rgba(185,154,114,.65);

    text-underline-offset: 3px;
}

.tghh-blog-entry-content a:hover {
    color: var(--tghh-gold);
}

.tghh-blog-entry-content img {
    display: block;

    max-width: 100%;

    height: auto;

    margin-right: auto;
    margin-left: auto;
}

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

    padding: 25px 30px;

    border-left:
        3px solid
        var(--tghh-gold);

    background:
        var(--tghh-cream);

    color: var(--tghh-green);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 23px;

    line-height: 1.5;
}

.tghh-blog-entry-content ul,
.tghh-blog-entry-content ol {
    margin-bottom: 1.5em;

    padding-left: 25px;
}

.tghh-blog-entry-content li {
    margin-bottom: 8px;
}

.tghh-blog-entry-content table {
    width: 100%;

    margin-bottom: 30px;

    border-collapse: collapse;
}

.tghh-blog-entry-content th,
.tghh-blog-entry-content td {
    padding: 11px 13px;

    border: 1px solid var(--tghh-border);

    text-align: left;
}


/* =========================================================
   18. SINGLE TAGS
   ========================================================= */

.tghh-blog-single-tags {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 45px;

    padding-top: 25px;

    border-top:
        1px solid
        var(--tghh-border);

    font-size: 12px;
}

.tghh-blog-single-tags > span {
    color: var(--tghh-green);

    font-weight: 700;
}

.tghh-blog-single-tags a {
    display: inline-flex;

    padding: 6px 10px;

    border: 1px solid var(--tghh-border);

    color: var(--tghh-muted);

    text-decoration: none;
}

.tghh-blog-single-tags a:hover {
    border-color: var(--tghh-green);

    color: var(--tghh-green);
}


/* =========================================================
   19. SIDEBAR
   ========================================================= */

.tghh-blog-single-sidebar {
    position: sticky;

    top: 30px;
}

.tghh-blog-sidebar-box {
    margin-bottom: 28px;

    padding-bottom: 25px;

    border-bottom:
        1px solid
        var(--tghh-border);
}

.tghh-blog-sidebar-label {
    display: block;

    margin-bottom: 10px;

    color: var(--tghh-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.tghh-blog-sidebar-category {
    color: var(--tghh-green);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 600;

    text-decoration: none;
}

.tghh-blog-sidebar-category:hover {
    color: var(--tghh-gold);
}

.tghh-blog-sidebar-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.tghh-blog-sidebar-list li {
    margin: 0;

    padding: 0;

    border-bottom:
        1px solid
        var(--tghh-border);
}

.tghh-blog-sidebar-list a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 10px 0;

    color: var(--tghh-text);

    font-size: 13px;

    text-decoration: none;
}

.tghh-blog-sidebar-list a:hover {
    color: var(--tghh-green);
}

.tghh-blog-sidebar-list span {
    color: var(--tghh-light);

    font-size: 10px;
}


/* =========================================================
   20. SIDEBAR CTA
   ========================================================= */

.tghh-blog-sidebar-cta {
    padding: 28px;

    background: var(--tghh-green);
}

.tghh-blog-sidebar-cta h3 {
    margin: 0 0 12px;

    color: var(--tghh-white);

    font-size: 29px;

    line-height: 1.1;
}

.tghh-blog-sidebar-cta p {
    margin: 0 0 20px;

    color: rgba(255,255,255,.75);

    font-size: 13px;

    line-height: 1.7;
}

.tghh-blog-sidebar-cta a {
    color: var(--tghh-white);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}

.tghh-blog-sidebar-cta a:hover {
    color: var(--tghh-gold);
}


/* =========================================================
   21. RELATED POSTS
   ========================================================= */

.tghh-blog-related-posts {
    padding: 90px 0 75px;

    border-top:
        1px solid
        var(--tghh-border);
}


/* =========================================================
   22. PRODUCT CTA
   ========================================================= */

.tghh-blog-product-cta {
    margin: 15px 0 70px;

    background: var(--tghh-cream);
}

.tghh-blog-product-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 45px 50px;
}

.tghh-blog-product-cta h2 {
    margin: 0 0 10px;

    color: var(--tghh-green);

    font-size: 37px;

    line-height: 1.1;
}

.tghh-blog-product-cta p {
    max-width: 650px;

    margin: 0;

    color: var(--tghh-muted);

    font-size: 14px;

    line-height: 1.75;
}

.tghh-blog-product-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex: 0 0 auto;

    padding: 14px 23px;

    color: var(--tghh-white);

    background: var(--tghh-green);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}

.tghh-blog-product-cta-button:hover {
    color: var(--tghh-white);

    background: var(--tghh-green-dark);
}


/* =========================================================
   23. BACK CATEGORY
   ========================================================= */

.tghh-blog-back-category {
    padding-bottom: 90px;

    text-align: center;
}

.tghh-blog-back-category a {
    color: var(--tghh-green);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}

.tghh-blog-back-category a:hover {
    color: var(--tghh-gold);
}


/* =========================================================
   24. ACCESSIBILITY
   ========================================================= */

.tghh-blog a:focus-visible,
.tghh-blog button:focus-visible {
    outline:
        2px solid
        var(--tghh-gold);

    outline-offset: 3px;
}


/* =========================================================
   25. TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .tghh-blog-container {
        width:
            min(
                900px,
                calc(100% - 32px)
            );
    }

    .tghh-blog-hero {
        padding: 70px 0 65px;
    }

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

    .tghh-blog-featured-image {
        min-height: 430px;
    }

    .tghh-blog-featured-content {
        padding: 42px;
    }

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

        gap: 38px 20px;
    }

    .tghh-blog-topic-highlight-grid {
        grid-template-columns: 1fr;
    }

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

    .tghh-blog-single-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .tghh-blog-single-sidebar {
        position: static;

        display: grid;

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

        gap: 25px;
    }

    .tghh-blog-sidebar-cta {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   26. MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .tghh-blog-container {
        width:
            calc(100% - 28px);
    }

    .tghh-blog-hero {
        padding: 56px 0 50px;
    }

    .tghh-blog-title {
        font-size: 46px;
    }

    .tghh-blog-intro {
        font-size: 14px;

        line-height: 1.78;
    }

    /* Category */

    .tghh-blog-category-tree {
        padding: 45px 0 18px;
    }

    .tghh-blog-category-list {
        display: block;
    }

    .tghh-blog-category-item {
        position: relative;
    }

    .tghh-blog-category-parent {
        min-height: 58px;
    }

    .tghh-blog-category-parent-name {
        font-size: 22px;
    }

    .tghh-blog-category-toggle {
        display: inline-flex;
    }

    .tghh-blog-category-toggle span {
        display: block;

        transition:
            transform .2s ease;
    }

    .tghh-blog-category-item.is-open
    .tghh-blog-category-toggle span {
        transform: rotate(45deg);
    }

    .tghh-blog-category-children {
        display: none;

        padding:
            0
            35px
            18px
            0;
    }

    .tghh-blog-category-item.is-open
    .tghh-blog-category-children {
        display: flex;
    }

    /* Featured */

    .tghh-blog-featured {
        padding: 55px 0 60px;
    }

    .tghh-blog-featured-image {
        min-height: 280px;

        aspect-ratio: 4 / 3;
    }

    .tghh-blog-featured-content {
        padding: 30px 24px;
    }

    .tghh-blog-featured-title {
        font-size: 34px;
    }

    /* Topics */

    .tghh-blog-topic-highlight-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .tghh-blog-topic-highlight {
        min-height: 175px;

        padding: 25px;
    }

    /* Seasonal */

    .tghh-blog-seasonal {
        margin-bottom: 60px;
    }

    .tghh-blog-seasonal-inner {
        padding: 40px 25px;
    }

    .tghh-blog-seasonal h2 {
        font-size: 35px;
    }

    .tghh-blog-seasonal p {
        font-size: 14px;
    }

    /* Latest */

    .tghh-blog-latest {
        padding-bottom: 60px;
    }

    .tghh-blog-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .tghh-blog-card-title {
        font-size: 29px;
    }

    /* Strategic */

    .tghh-blog-topic-grid {
        grid-template-columns: 1fr;
    }

    .tghh-blog-topic {
        min-height: 65px;
    }

    .tghh-blog-topics {
        padding-bottom: 60px;
    }

    /* Category archive */

    .tghh-blog-category-hero {
        padding: 25px 0 50px;
    }

    .tghh-blog-breadcrumb {
        margin-bottom: 30px;

        font-size: 10px;
    }

    .tghh-blog-category-description {
        font-size: 14px;

        line-height: 1.75;
    }

    .tghh-blog-category-posts {
        padding: 55px 0 20px;
    }

    .tghh-blog-related-categories {
        padding: 35px 0 60px;
    }

    /* Single */

    .tghh-blog-single-hero {
        padding: 25px 0 45px;
    }

    .tghh-blog-single-title {
        font-size: 43px;
    }

    .tghh-blog-single-meta {
        font-size: 10px;
    }

    .tghh-blog-single-featured {
        padding: 35px 0 45px;
    }

    .tghh-blog-single-featured img {
        max-height: 450px;
    }

    .tghh-blog-entry-content {
        font-size: 15px;

        line-height: 1.8;
    }

    .tghh-blog-entry-content h2 {
        font-size: 32px;
    }

    .tghh-blog-entry-content h3 {
        font-size: 27px;
    }

    .tghh-blog-entry-content blockquote {
        padding: 20px;

        font-size: 20px;
    }

    .tghh-blog-single-sidebar {
        display: block;
    }

    .tghh-blog-sidebar-box {
        margin-bottom: 25px;
    }

    .tghh-blog-related-posts {
        padding: 60px 0 50px;
    }

    .tghh-blog-product-cta {
        margin-bottom: 50px;
    }

    .tghh-blog-product-cta-inner {
        display: block;

        padding: 35px 25px;
    }

    .tghh-blog-product-cta h2 {
        font-size: 32px;
    }

    .tghh-blog-product-cta-button {
        margin-top: 25px;
    }

    .tghh-blog-back-category {
        padding-bottom: 60px;
    }

}


/* =========================================================
   27. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .tghh-blog-title {
        font-size: 40px;
    }

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

    .tghh-blog-featured-content {
        padding: 27px 20px;
    }

    .tghh-blog-featured-title {
        font-size: 31px;
    }

    .tghh-blog-seasonal-inner {
        padding: 35px 20px;
    }

    .tghh-blog-seasonal h2 {
        font-size: 32px;
    }

    .tghh-blog-card-title {
        font-size: 27px;
    }

    .tghh-blog-entry-content h2 {
        font-size: 30px;
    }

    .tghh-blog-entry-content h3 {
        font-size: 25px;
    }

}


/* =========================================================
   28. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tghh-blog *,
    .tghh-blog *::before,
    .tghh-blog *::after {
        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;
    }

}