/* =====================================================
   VIKIRAN NEWSLETTER TEAM PAGE
====================================================== */


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

.newsletter-header {

    min-height: 75vh;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.9)
        ),
        url("newsletter_images/backgroun_news/newsletter_back.gif");

    background-size: cover;

    background-position: center;

}


.newsletter-header-text {

    margin-top: 100px;

    max-width: 800px;

}


.newsletter-header-text > p:first-child {

    font-size: 18px;

    letter-spacing: 2px;

    color: #ababab;

}


.newsletter-header-text h1 {

    font-size: 70px;

    line-height: 1.1;

    margin: 20px 0;

}


.newsletter-header-text h1 span {

    color: #ff004f;

}


.header-description {

    max-width: 600px;

    font-size: 20px;

    color: #999;

}


.header-description strong {

    color: #ddd;

}



/* =====================================================
   ABOUT THE TEAM
====================================================== */

.newsletter-about {

    padding: 100px 0;

}


.newsletter-about-content {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 80px;

    align-items: center;

}


.newsletter-about-content p {

    color: #ababab;

    margin-bottom: 20px;

    line-height: 1.8;

}


.newsletter-about-content strong {

    color: #ddd;

}


.newsletter-symbol {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    background: #ddd;

}


.newsletter-symbol img {

    width: 240px;

    height: 240px;

    object-fit: contain;

    display: block;

}



/* =====================================================
   TEAM MEMBERS
====================================================== */

.newsletter-team {

    padding: 100px 0;

    background: #111;

}


.newsletter-members {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 75px;

}


.newsletter-member-card {

    background: #181818;

    border: 1px solid #292929;

    transition: 0.3s;

}


.newsletter-member-card:hover {

    transform: translateY(-8px);

    border-color: #555;

}


.newsletter-member-image {

    width: 100%;

    height: 280px;

    overflow: hidden;

}


.newsletter-member-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.newsletter-member-info {

    padding: 20px;

}


.newsletter-member-info h2 {

    font-size: 20px;

    margin-bottom: 5px;

}


.newsletter-member-info p {

    color: #777;

}



/* =====================================================
   OUR CONTRIBUTION
====================================================== */

.newsletter-contribution {

    padding: 100px 0;

}


.contribution-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 50px;

}


.contribution-card {

    padding: 35px;

    border: 1px solid #292929;

    background: #0f0f0f;

    transition: 0.3s;

}


.contribution-card:hover {

    transform: translateY(-6px);

    border-color: #555;

}


.contribution-card i {

    font-size: 30px;

    color: #777;

    margin-bottom: 25px;

}


.contribution-card h2 {

    font-size: 22px;

    margin-bottom: 12px;

}


.contribution-card p {

    color: #777;

    line-height: 1.7;

}



/* =====================================================
   CONFLUENCE CHRONICLES
====================================================== */

.newsletter-confluence {

    padding: 100px 0;

    background: #111;

}


.confluence-content {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 70px;

    align-items: center;

}


.newsletter-label {

    font-size: 13px;

    letter-spacing: 2px;

    color: #888;

    margin-bottom: 15px;

}


.confluence-content h1 {

    font-size: 50px;

    line-height: 1.15;

    max-width: 650px;

    margin-bottom: 25px;

}


.confluence-content p {

    color: #888;

    max-width: 650px;

    line-height: 1.8;

    margin-bottom: 30px;

}


.confluence-icon {

    width: 220px;

    height: 220px;

    border: 1px solid #333;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 90px;

    color: #555;

    margin: auto;

}



/* =====================================================
   BACK BUTTON
====================================================== */

.newsletter-back {

    padding: 60px 0;

    text-align: center;

    background: #080808;

}



/* =====================================================
   RESPONSIVE
====================================================== */

@media only screen and (max-width: 900px) {

    .newsletter-header-text h1 {

        font-size: 55px;

    }


    .newsletter-about-content {

        grid-template-columns: 1fr;

    }


    .newsletter-members {

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

    }


    .contribution-grid {

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

    }


    .confluence-content {

        grid-template-columns: 1fr;

    }

}


@media only screen and (max-width: 600px) {

    .newsletter-header {

        min-height: 70vh;

    }


    .newsletter-header-text {

        margin-top: 60px;

    }


    .newsletter-header-text h1 {

        font-size: 45px;

    }


    .newsletter-header-text > p:first-child {

        font-size: 14px;

    }


    .header-description {

        font-size: 16px;

    }


    .newsletter-members {

        grid-template-columns: 1fr;

    }


    .contribution-grid {

        grid-template-columns: 1fr;

    }


    .confluence-content h1 {

        font-size: 38px;

    }


    .newsletter-symbol img {

        width: 90px;

        height: 90px;

        object-fit: contain;

    }

}