/* ======================= COLORS ======================= */

:root {
    --burgundy: #4A0C2C;
    --cream: #F4DDBA;
    --gold: #D47A41;
    --dark-text: #6A2B1A;
    --body-text: #533A2A;
}

/* ======================= GLOBAL ======================= */

body {
    margin: 0;
    font-family: 'sans-serif';
    background: var(--cream);
    color: var(--body-text);
    line-height: 1.6;
}

h1, h3 {
    font-family: 'sans-serif';
    color: var(--dark-text);
}

h2{
    color:#2e0117;
    font-family: sans-serif;
}

strong {
    color: var(--dark-text);
}

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

.press-header {
    background: var(--burgundy);
    color: white;
    padding: 60px 80px;
}

.press-meta h3 {
    color: #c64e94;
    text-align: left;
    margin-top: 30px;
    padding-top: 20px;
    /* padding: 20px; */
    font-size: 24px;
    font-family: sans-serif;
}

.press-meta p {
    color: var(--cream);
    font-size: 18px;
    font-family: sans-serif;
    text-align: left;
  
}



.press-logo-block {
    text-align: center;
    margin-top: 60px;
}

.main-logo {
    font-size: 70px;
    color: var(--cream);
    margin: 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.main-logo .of {
    font-family: 'Allura', cursive;
    color: var(--gold);
    font-size: 85px;
}

.mission {
    font-size: 22px;
    margin-top: 10px;
    color: var(--cream);
}

/* ======================= CONTENT SECTIONS ======================= */

.cream-section {
    background: var(--cream);
    padding: 60px 80px;
   
}

.content-wide {
    max-width: 100%;
    margin: auto;
    text-align: justify;
   
}

.title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color:var(--dark-text);
   
}

/* ======================= TWO COLUMN ======================= */

.two-column {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.two-column .col {
    width: 50%;
}

blockquote {
    font-style: italic;
    font-family: sans-serif;
    /* background: #F8EAD6; */
    /* border-left: 4px solid var(--gold); */
    padding: 20px;
    margin-left: -20px;
    /* margin-bottom: 30px; */
    color: var(--dark-text);
}

ul {
    padding-left: 20px;
}

.contact {
    font-weight: 600;
}
/* 
.contact-lines .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
} */

.contact-line{
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 18px;
    color:var(--gold);
    font-weight:bold
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(214, 37, 202);
    color:black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 18px;
}


/* 
.contact-item .icon {
    width: 40px;
    height: 40px;
    background: rgb(214, 37, 202);
    border-radius: 50%;
    color:black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
} */




.mission-logo {
    width: 80%;
    height: auto;         /* keeps aspect ratio */
    display: block;
    margin: 0 auto;       /* keeps it centered */
}


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



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

@media (max-width: 900px) {

    .two-column {
        flex-direction: column;
    }

    .two-column .col {
        width: 100%;
    }

    .press-header {
        padding: 40px 30px;
    }

    .cream-section {
        padding: 40px 30px;
       
    }

    .main-logo {
        font-size: 48px;
    }
   
}

@media (max-width: 900px) {
    .content-wide,
    .press-meta p {
        text-align: left;
        word-spacing: normal;
        hyphens: auto;
    }
}

