/* =========================================================
   CALLS FOR SUBMISSIONS - RESULT CARDS
   ========================================================= */


/* =========================================================
   INDIVIDUAL RESULT CARD
   ========================================================= */

.sr-list_wrap.new-results > .content-type-calls-for-submissions {
    position: relative;
    z-index: 1;

    background: #ffffff !important;
    border: 1px solid #e2e2e2 !important;

    box-shadow: 6px 4px 0 rgba(0, 0, 0, 0.14) !important;

    padding: 0;
    margin: 0;

    overflow: visible !important;

    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


/* Card hover */
.sr-list_wrap.new-results > .content-type-calls-for-submissions:hover {
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.16) !important;
    transform: translateY(-2px);
}


/* =========================================================
   MAIN CLICKABLE CARD
   ========================================================= */

.sr-list_wrap.new-results
> .content-type-calls-for-submissions
> .calls-grid__card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
    box-sizing: border-box;

    padding: 18px 16px 20px;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    color: #333333;
    text-decoration: none;
}


/* Prevent link itself creating another box/shadow */
.sr-list_wrap.new-results
> .content-type-calls-for-submissions
> .calls-grid__card:hover,
.sr-list_wrap.new-results
> .content-type-calls-for-submissions
> .calls-grid__card:focus,
.sr-list_wrap.new-results
> .content-type-calls-for-submissions
> .calls-grid__card:visited {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none;
    text-decoration: none;
}


/* =========================================================
   CARD META / TOP LINE
   ========================================================= */

.content-type-calls-for-submissions
.calls-grid__card > span:first-child {
    display: block;

    margin-bottom: 18px;

    color: #666666;

    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;

    text-transform: uppercase;
    letter-spacing: 0.01em;
}


/* =========================================================
   TITLE
   ========================================================= */

.content-type-calls-for-submissions .calls-grid__title {
    margin: 0 0 18px;

    color: #005564;

    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;

    text-transform: none;
}


/* Title hover */
.content-type-calls-for-submissions:hover .calls-grid__title {
    color: #005564;
    text-decoration: underline;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.content-type-calls-for-submissions .calls-grid__description {
    display: block;

    margin: 0 0 20px;

    color: #555555;

    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   JOURNAL
   ========================================================= */

.content-type-calls-for-submissions .calls-grid__journal {
    display: block;

    margin-top: 16px;
    margin-bottom: 18px;

    color: #397b86;

    font-size: 0.9rem;
    line-height: 1.45;
}


/* =========================================================
   GUEST EDITORS
   ========================================================= */

.content-type-calls-for-submissions .calls-grid__guest-editors {
    display: block;

    color: #555555;

    font-size: 0.9rem;
    line-height: 1.5;
}


/* =========================================================
   REMOVE UNWANTED LINK STYLING
   ========================================================= */

.content-type-calls-for-submissions .calls-grid__card,
.content-type-calls-for-submissions .calls-grid__card:visited,
.content-type-calls-for-submissions .calls-grid__card:focus {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   RESULTS GRID
   ========================================================= */

.sr-list_wrap.new-results {
    position: relative;
    row-gap: 2.5rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .sr-list_wrap.new-results {
        row-gap: 2rem;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .sr-list_wrap.new-results
    > .content-type-calls-for-submissions
    > .calls-grid__card {
        padding: 18px 16px 20px;
    }

    .sr-list_wrap.new-results {
        row-gap: 1.5rem;
    }

}