/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* =========================================================
   BLOG ARCHIVE
   THE BECOMING COLLECTIVE INDIA
   ========================================================= */


/* =========================================================
   MAIN BLOG WRAPPER
   ========================================================= */

body.blog .site-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    background: #F5F1E8;
    color: #292A26;

    font-family: "Inter", Arial, sans-serif;

    overflow: hidden;
}

body.blog .site-main *,
body.blog .site-main *::before,
body.blog .site-main *::after {
    box-sizing: border-box;
}

body.blog .site-main img {
    display: block;
    max-width: 100%;
    height: auto;
}

body.blog .site-main a {
    color: inherit;
    text-decoration: none;
}


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

body.blog .site-main .page-header {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 150px 7vw 80px;

    border-bottom: 1px solid rgba(41, 42, 38, 0.12);
}

body.blog .site-main .page-header::before {
    content: "BLOGS";
    display: block;
    margin: 0 0 22px;
    color: #A96855;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

body.blog .site-main .page-header .entry-title {
    max-width: 900px;
    margin: 0;
    color: #263D34;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.92;
    font-size: 96px;
    font-weight: 500;
    letter-spacing: -1.92px;
}


/* =========================================================
   ARCHIVE CONTENT
   ========================================================= */

body.blog .site-main .page-content {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 70px 7vw 120px;

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

    gap: 75px 35px;

    counter-reset: archive-post;
}


/* =========================================================
   STANDARD POST
   ========================================================= */

body.blog .site-main .page-content .post {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   POST NUMBER
   ========================================================= */

body.blog .site-main .page-content .post::before {
    content: counter(archive-post, decimal-leading-zero);

    counter-increment: archive-post;

    order: 1;

    display: block;

    margin: 0 0 14px;

    color: #A96855;

    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.15em;
    line-height: 1;
}


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

body.blog .site-main .page-content .post > a {
    order: 2;

    display: block;

    width: 100%;

    margin: 0 0 22px;

    overflow: hidden;

    background: #EDE7DA;
}

body.blog .site-main .page-content .post > a img {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

body.blog .site-main .page-content .post > a:hover img {
    transform: scale(1.035);
}


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

body.blog .site-main .page-content .post .entry-title {
    order: 3;
    max-width: 560px;
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.08em;
    letter-spacing: -0.02em;
    color: #292A26;
}

body.blog .site-main .page-content .post .entry-title a {
    transition: color 0.3s ease;
}

body.blog .site-main .page-content .post .entry-title a:hover {
    color: #A96855;
}


/* =========================================================
   POST DESCRIPTION
   ========================================================= */

body.blog .site-main .page-content .post > p {
    order: 4;
    max-width: 540px;
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    color: #292A26AD;
}


/* =========================================================
   FEATURED ARTICLE
   50 / 50 EDITORIAL SPLIT
   ========================================================= */

body.blog .site-main .page-content .post:first-child {
    position: relative;

    display: block;

    grid-column: 1 / -1;

    width: 100%;

    min-height: 520px;

    margin: 0;

    padding: 26px 0 55px;

    border-bottom: 1px solid rgba(41, 42, 38, 0.12);
}


/* ---------------------------------------------------------
   FEATURED NUMBER
   --------------------------------------------------------- */

body.blog .site-main .page-content .post:first-child::before {
    content: "01";

    position: absolute;

    top: 0;
    left: 0;

    z-index: 2;

    margin: 0;

    color: #A96855;

    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.15em;
    line-height: 1;
}


/* ---------------------------------------------------------
   FEATURED IMAGE
   LEFT 50%
   --------------------------------------------------------- */

body.blog .site-main .page-content .post:first-child > a {
    position: absolute;

    top: 20px;
    left: 0;

    display: block;

    width: calc(50% - 25px);

    margin: 0;

    overflow: hidden;

    background: #EDE7DA;
}

body.blog .site-main .page-content .post:first-child > a img {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

body.blog .site-main .page-content .post:first-child > a:hover img {
    transform: scale(1.035);
}


/* ---------------------------------------------------------
   FEATURED TITLE
   RIGHT 50%
   --------------------------------------------------------- */

body.blog .site-main .page-content .post:first-child .entry-title {
    display: block;
    width: calc(50% - 25px);
    max-width: none;
    margin: 0 0 16px 0;
    margin-left: calc(50% + 25px);
    padding: 0;
    color: #292A26;
    font-family: "Cormorant Garamond", serif;
    font-size: 68px;
    font-weight: 500 !important;
    line-height: 1em;
    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   FEATURED DESCRIPTION
   RIGHT 50%
   --------------------------------------------------------- */

body.blog .site-main .page-content .post:first-child > p {
    width: calc(50% - 25px);
    max-width: none;
    margin: 0 0 0 0;
    margin-left: calc(50% + 25px);
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #292A26BA;
}


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

@media (max-width: 1024px) {

    body.blog .site-main .page-header {
        padding: 125px 6vw 70px;
    }

    body.blog .site-main .page-content {
        padding: 65px 6vw 100px;

        gap: 60px 28px;
    }


    /* Featured */

    body.blog .site-main .page-content .post:first-child {
        min-height: 440px;

        padding-bottom: 50px;
    }

    body.blog .site-main .page-content .post:first-child > a {
        top: 20px;

        width: calc(50% - 18px);
    }

    body.blog .site-main .page-content .post:first-child .entry-title {
        width: calc(50% - 18px);

        margin-left: calc(50% + 18px);

        font-size: clamp(38px, 4.8vw, 58px);
    }

    body.blog .site-main .page-content .post:first-child > p {
        width: calc(50% - 18px);

        margin-left: calc(50% + 18px);

        font-size: 14px;
    }


    /* Standard */

    body.blog .site-main .page-content .post .entry-title {
        font-size: 32px;
    }

    body.blog .site-main .page-content .post > p {
        font-size: 14px;
    }
}


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

@media (max-width: 767px) {

    body.blog .site-main {
        overflow: visible;
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    body.blog .site-main .page-header {
        padding: 105px 24px 55px;
    }

    body.blog .site-main .page-header::before {
        margin-bottom: 18px;

        font-size: 10px;
    }

    body.blog .site-main .page-header .entry-title {
		line-height: 0.9;
		font-size: 51px;
	}


    /* -----------------------------------------------------
       CONTENT
       ----------------------------------------------------- */

    body.blog .site-main .page-content {
        display: block;

        padding: 50px 24px 75px;
    }


    /* -----------------------------------------------------
       STANDARD POSTS
       ----------------------------------------------------- */

    body.blog .site-main .page-content .post {
        margin-bottom: 60px;
    }

    body.blog .site-main .page-content .post::before {
        margin-bottom: 12px;

        font-size: 9px;
    }

    body.blog .site-main .page-content .post > a {
        margin-bottom: 20px;
    }

    body.blog .site-main .page-content .post > a img {
        aspect-ratio: 4 / 3;
    }

    body.blog .site-main .page-content .post .entry-title {
		max-width: 100%;
		margin-bottom: 11px;
		line-height: 0.96;
		font-size: 25px;
	}

    body.blog .site-main .page-content .post > p {
        max-width: 100%;

        font-size: 15px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       FEATURED POST
       ----------------------------------------------------- */

    body.blog .site-main .page-content .post:first-child {
        display: flex;
        flex-direction: column;

        min-height: 0;

        padding: 0 0 55px;

        margin-bottom: 60px;
    }


    /* Number */

    body.blog .site-main .page-content .post:first-child::before {
        position: static;

        order: 1;

        margin: 0 0 13px;
    }


    /* Image */

    body.blog .site-main .page-content .post:first-child > a {
        position: static;

        order: 2;

        width: 100%;

        margin: 0 0 24px;
    }

    body.blog .site-main .page-content .post:first-child > a img {
        aspect-ratio: 4 / 3;
    }


    /* Title */

    body.blog .site-main .page-content .post:first-child .entry-title {
		order: 3;
		width: 100%;
		max-width: 100%;
		margin: 0 0 14px;
		padding: 0;
		line-height: 0.92;
		font-size: 44px;
	}


    /* Description */

    body.blog .site-main .page-content .post:first-child > p {
        order: 4;

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;

        font-size: 15px;

        line-height: 1.75;

        -webkit-line-clamp: 5;
    }
}


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

@media (max-width: 480px) {

    body.blog .site-main .page-header {
        padding: 95px 20px 48px;
    }

    body.blog .site-main .page-content {
        padding: 45px 20px 65px;
    }

    body.blog .site-main .page-header .entry-title {
		font-size: 51px;
		padding: 0;
	}

    body.blog .site-main .page-content .post:first-child .entry-title {
		font-size: 44px;
	}

    body.blog .site-main .page-content .post .entry-title {
		font-size: 25px;
	}

    body.blog .site-main .page-content .post {
        margin-bottom: 50px;
    }

    body.blog .site-main .page-content .post:first-child {
        margin-bottom: 50px;

        padding-bottom: 45px;
    }
}


/* =========================================================
   FOCUS
   ========================================================= */

body.blog .site-main a:focus-visible {
    outline: 2px solid #A96855;
    outline-offset: 5px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    body.blog .site-main *,
    body.blog .site-main *::before,
    body.blog .site-main *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   SINGLE BLOG POST
   THE BECOMING COLLECTIVE INDIA
   ========================================================= */


/* =========================================================
   MAIN ARTICLE WRAPPER
   ========================================================= */

body.single-post .site-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    background: #F5F1E8;
    color: #292A26;

    font-family: "Inter", Arial, sans-serif;

    overflow: hidden;
}

body.single-post .site-main *,
body.single-post .site-main *::before,
body.single-post .site-main *::after {
    box-sizing: border-box;
}


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

body.single-post .site-main .page-header {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 150px 7vw 85px;

    border-bottom: 1px solid rgba(41, 42, 38, 0.12);
}

body.single-post .site-main .page-header::before {
    content: "ARTICLE";

    display: block;

    margin: 0 0 24px;

    color: #A96855;

    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.18em;
    line-height: 1;

    text-transform: uppercase;
}

body.single-post .site-main .page-header .entry-title {
    max-width: 1080px;
    margin: 0;
   	color: #292A26;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.92;
    font-size: 96px;
    font-weight: 500;
    letter-spacing: -1.92px;
}


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

body.single-post .site-main .page-content {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    padding: 85px 30px 110px;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

body.single-post .site-main .page-content > p, 
body.single-post .site-main .page-content .wp-block-paragraph {
    max-width: 720px;
    color: #292A26BA;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}


/* =========================================================
   LEAD / OPENING QUOTE
   ========================================================= */

body.single-post .site-main .page-content > .wp-block-quote {
    position: relative;

    margin: 0 0 52px;
    padding: 0 0 0 34px;

    border: 0;
}

body.single-post .site-main .page-content > .wp-block-quote::before {
    content: "";

    position: absolute;

    top: 4px;
    left: 0;

    width: 2px;
    height: calc(100% - 8px);

    background: #A96855;
}

body.single-post .site-main .page-content > .wp-block-quote p {
    max-width: 720px;

    margin: 0;

    color: #292A26;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;

    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* =========================================================
   CONTENT RHYTHM
   ========================================================= */

body.single-post .site-main .page-content > p + p {
    margin-top: 0;
}

body.single-post .site-main .page-content > p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   LINKEDIN / CTA
   ========================================================= */

body.single-post .site-main .page-content .wp-block-buttons {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 55px 0 0;
    padding-top: 32px;
    border-top: 1px solid rgba(41, 42, 38, 0.12);
}

body.single-post .site-main .page-content .wp-block-button {
    margin: 0;
}

body.single-post .site-main .page-content .wp-block-button__link,
body.single-post .site-main .page-content .wp-element-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    margin: 0;
    padding: 0 22px;

    border: 1px solid #263D34;
    border-radius: 0;

    background: #263D34;
    color: #F5F1E8;

    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.08em;
    line-height: 1.2;

    text-transform: uppercase;

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

body.single-post .site-main .page-content .wp-block-button__link:hover,
body.single-post .site-main .page-content .wp-element-button:hover {
    background: transparent;
    color: #263D34;
    border-color: #263D34;

    transform: translateY(-1px);
}


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

body.single-post .site-main .comments-area {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    padding: 0 30px 110px;
}


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

body.single-post .site-main .comment-reply-title {
    margin: 0 0 35px;

    color: #263D34;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;

    line-height: 0.95;
    letter-spacing: -0.025em;
}

body.single-post .site-main .comment-reply-title small {
    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
}


/* =========================================================
   LOGGED-IN MESSAGE
   ========================================================= */

body.single-post .site-main .logged-in-as {
    margin: 0 0 25px;

    color: #8A867D;

    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.6;
}

body.single-post .site-main .logged-in-as a {
    color: #263D34;
    text-decoration: underline;
    text-decoration-color: rgba(38, 61, 52, 0.3);
    text-underline-offset: 3px;
}


/* =========================================================
   COMMENT LABEL
   ========================================================= */

body.single-post .site-main .comment-form-comment label {
    display: block;

    margin: 0 0 9px;

    color: #292A26;

    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;

    line-height: 1.35;
}


/* =========================================================
   COMMENT TEXTAREA
   ========================================================= */

body.single-post .site-main #comment {
    display: block;

    width: 100%;
    max-width: 100%;

    min-height: 170px;

    margin: 0;

    padding: 14px;

    border: 1px solid rgba(41, 42, 38, 0.26);
    border-radius: 0;

    background: rgba(255, 255, 255, 0.82);
    color: #292A26;

    box-shadow: none;
    outline: none;

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;

    resize: vertical;

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

body.single-post .site-main #comment:focus {
    border-color: #263D34;

    background: #FFFFFF;

    box-shadow: 0 0 0 3px rgba(38, 61, 52, 0.04);

    outline: none;
}


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

body.single-post .site-main #submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    margin: 16px 0 0;
    padding: 0 22px;

    border: 1px solid #263D34;
    border-radius: 0;

    background: #263D34;
    color: #F5F1E8;

    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.08em;
    line-height: 1;

    text-transform: uppercase;

    cursor: pointer;

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

body.single-post .site-main #submit:hover {
    background: transparent;
    color: #263D34;
    border-color: #263D34;

    transform: translateY(-1px);
}


/* =========================================================
   REQUIRED FIELD
   ========================================================= */

body.single-post .site-main .required {
    color: #A96855;
}


/* =========================================================
   LINKS
   ========================================================= */

body.single-post .site-main a:focus-visible {
    outline: 2px solid #A96855;
    outline-offset: 5px;
}


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

@media (max-width: 1024px) {

    body.single-post .site-main .page-header {
        padding: 125px 6vw 70px;
    }

    body.single-post .site-main .page-content {
        max-width: 760px;

        padding: 70px 28px 90px;
    }

    body.single-post .site-main .page-content > p,
    body.single-post .site-main .page-content .wp-block-paragraph {
        font-size: 16px;
        line-height: 1.85;
    }

    body.single-post .site-main .page-content > .wp-block-quote {
        padding-left: 28px;
    }

    body.single-post .site-main .page-content > .wp-block-quote p {
        font-size: 34px;
    }

    body.single-post .site-main .comments-area {
        max-width: 760px;
        padding: 0 28px 90px;
    }
}


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

@media (max-width: 767px) {

    body.single-post .site-main {
        overflow: visible;
    }


    /* Header */

    body.single-post .site-main .page-header {
        padding: 105px 24px 55px;
    }

    body.single-post .site-main .page-header::before {
        margin-bottom: 18px;

        font-size: 10px;
    }

    body.single-post .site-main .page-header .entry-title {
		max-width: 100%;
		font-size: 51px;
		line-height: 0.9;
	}


    /* Content */

    body.single-post .site-main .page-content {
        max-width: none;

        padding: 52px 24px 75px;
    }

    body.single-post .site-main .page-content > p,
    body.single-post .site-main .page-content .wp-block-paragraph {
        max-width: none;
        font-size: 16px;
        line-height: 1.8;
    }


    /* Quote */

    body.single-post .site-main .page-content > .wp-block-quote {
        margin-bottom: 42px;

        padding-left: 22px;
    }

    body.single-post .site-main .page-content > .wp-block-quote p {
        font-size: clamp(27px, 7.5vw, 38px);

        line-height: 1.05;
    }


    /* CTA */

    body.single-post .site-main .page-content .wp-block-buttons {
        margin-top: 45px;
        padding-top: 25px;
    }

    body.single-post .site-main .page-content .wp-block-button {
        width: 100%;
    }

    body.single-post .site-main .page-content .wp-block-button__link,
    body.single-post .site-main .page-content .wp-element-button {
        width: auto;
        min-height: 52px;
        text-align: center;
    }


    /* Comments */

    body.single-post .site-main .comments-area {
        max-width: none;

        padding: 0 24px 75px;
    }

    body.single-post .site-main .comment-reply-title {
        margin-bottom: 28px;

        font-size: 42px;
    }

    body.single-post .site-main #comment {
        min-height: 145px;
        font-size: 14px;
    }

    body.single-post .site-main #submit {
        width: 100%;
        min-height: 52px;
    }
}


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

@media (max-width: 480px) {

    body.single-post .site-main .page-header {
        padding: 95px 20px 48px;
    }

    body.single-post .site-main .page-content {
        padding: 45px 20px 65px;
    }

    body.single-post .site-main .page-header .entry-title {
        font-size: 51px;
    }

    body.single-post .site-main .page-content > .wp-block-quote {
        padding-left: 18px;
    }

    body.single-post .site-main .page-content > .wp-block-quote p {
        font-size: 28px;
    }

    body.single-post .site-main .comments-area {
        padding: 0 20px 65px;
    }

    body.single-post .site-main .comment-reply-title {
        font-size: 38px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    body.single-post .site-main *,
    body.single-post .site-main *::before,
    body.single-post .site-main *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}