/* ==========================================================
   AARAI PUBLICATIONS
   HOME PAGE
   ========================================================== */


/* ==========================================================
   PAGE WRAPPER
   ========================================================== */

.home .site-main {
    padding-top: 0;
}

.home .entry-content {
    margin-top: 0;
}


/* ==========================================================
   MAIN CONTENT WIDTH
   ========================================================== */

.home .entry-content {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ==========================================================
   INTRODUCTION / HERO
   ========================================================== */

.home .entry-content > p:first-of-type {
    margin: 0 -20px 55px;
    padding: 75px 30px 70px;
    background: #172b4d;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}


/* ==========================================================
   AARAI PUBLICATIONS TITLE
   ========================================================== */

.home .entry-content > h1:first-child,
.home .entry-content > h2:first-child {
    margin-top: 0;
    color: #172b4d;
}


/* ==========================================================
   ABOUT / INTRODUCTION HEADING
   ========================================================== */

.home .entry-content h2 {
    color: #172b4d;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}


/* ==========================================================
   GENERAL HOME PAGE TEXT
   ========================================================== */

.home .entry-content p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================================
   LATEST PUBLICATIONS HEADING
   ========================================================== */

.home .entry-content h2 {
    margin-top: 55px;
    margin-bottom: 15px;
}


/* ==========================================================
   PUBLICATION LIST
   ========================================================== */

/*
 * GeneratePress normally renders the latest publications
 * as regular article entries. These styles give them
 * a publication-card appearance.
 */

.home .entry-content article {
    position: relative;
    margin: 0 0 24px;
    padding: 27px 30px;
    border: 1px solid #e5e9ed;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(23, 43, 77, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.home .entry-content article:hover {
    border-color: #d5dde5;
    box-shadow: 0 8px 24px rgba(23, 43, 77, 0.09);
    transform: translateY(-2px);
}


/* ==========================================================
   PUBLICATION TYPE
   ========================================================== */

.home .entry-content article .entry-meta {
    margin-bottom: 10px;
    color: #1f6f8b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* ==========================================================
   PUBLICATION TITLE
   ========================================================== */

.home .entry-content article .entry-title {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.4;
}

.home .entry-content article .entry-title a {
    color: #172b4d;
    text-decoration: none;
}

.home .entry-content article .entry-title a:hover {
    color: #1f6f8b;
}


/* ==========================================================
   PUBLICATION DATE
   ========================================================== */

.home .entry-content article .entry-date {
    color: #7b8794;
    font-size: 13px;
}


/* ==========================================================
   PUBLICATION EXCERPT
   ========================================================== */

.home .entry-content article .entry-summary,
.home .entry-content article .entry-content {
    margin-top: 12px;
}

.home .entry-content article .entry-summary p,
.home .entry-content article .entry-content p {
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================================
   READ / VIEW LINK
   ========================================================== */

.home .entry-content article a.read-more,
.home .entry-content article .read-more,
.home .entry-content article .entry-summary a {
    color: #1f6f8b;
    font-weight: 700;
    text-decoration: none;
}

.home .entry-content article a.read-more:hover,
.home .entry-content article .read-more:hover,
.home .entry-content article .entry-summary a:hover {
    color: #15566d;
    text-decoration: underline;
}


/* ==========================================================
   GENERAL LINKS
   ========================================================== */

.home .entry-content a {
    color: #1f6f8b;
}

.home .entry-content a:hover {
    color: #15566d;
}


/* ==========================================================
   REMOVE EXCESSIVE WORDPRESS SPACING
   ========================================================== */

.home .entry-content > *:first-child {
    margin-top: 0;
}

.home .entry-content > *:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.home .site-footer {
    margin-top: 50px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 768px) {

    .home .entry-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home .entry-content > p:first-of-type {
        margin-left: -16px;
        margin-right: -16px;
        padding: 55px 22px;
        font-size: 16px;
    }

    .home .entry-content h2 {
        font-size: 26px;
    }

    .home .entry-content article {
        padding: 23px 21px;
    }

    .home .entry-content article .entry-title {
        font-size: 21px;
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .home .entry-content {
        padding-left: 13px;
        padding-right: 13px;
    }

    .home .entry-content > p:first-of-type {
        margin-left: -13px;
        margin-right: -13px;
        padding: 45px 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .home .entry-content h2 {
        font-size: 23px;
    }

    .home .entry-content article {
        padding: 20px 17px;
        margin-bottom: 18px;
    }

    .home .entry-content article .entry-title {
        font-size: 19px;
    }

    .home .entry-content article .entry-summary p,
    .home .entry-content article .entry-content p {
        font-size: 14px;
    }
}