/* Custom CSS */

/* Example: Override main section background color. */
/* body .jupiterx-main {
    background-color: gray;
} */

.attached-documents-label {
    color: var(--e-global-color-760366a);
    font-family: "Quicksand", Sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 900;
    border-bottom: solid 1px var(--e-global-color-760366a);
    padding: 8px 0;
    margin-bottom: 10px;
    display: block;
}

.attached-documents-list {
    padding: 0;
    margin: 0;
}

.attached-documents-item {
    list-style-type: none;
    padding: 12px;
    border-bottom: 1px solid #BDD9E3;
}

.attached-documents-item-title {
    font-family: "Quicksand", Sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    color: #3C71C8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attached-documents-item-title::before {
    content: '';
    background-image: url('../img/document_add.svg');
    background-repeat: no-repeat;
    background-position: 0 0;
    min-width: 36px;
    height: 36px;
}

/* YARPP list */
.yarpp-related-list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}
.yarpp-related-item {
    list-style-type: none;
    flex-grow: 0;
    flex-basis: 33.33%;
}
.yarpp-related-thumbnail img {
    width: 100%;
    height: auto;
}
.yarpp-related-thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    /* filter: drop-shadow(0px 5px 5px #00000055); */
    margin-bottom: 8px;
}
.yarpp-related .yarpp-related-thumbnail {
    box-shadow: 0px 4px 10px 0px rgba(33, 58, 67, 0.40);
}
.yarpp-related-link {
    display: block;
    font-family: "Oswald", Sans-serif; 
    font-size: 17px;
    line-height: 24px;
    color: var(--e-global-color-866aacc);
}

a.yarpp-related-link:hover {
    color: var(--e-global-color-866aacc);
}
.yarpp-related .yarpp-related-link {
    font-weight: 400;
}

.yarpp-related-title {
    color: var(--e-global-color-760366a);
    font-family: "Quicksand", Sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 16px 0;
    display: block;
}

.yarpp-related-container {
    padding: 0 12px 24px;
    border-radius: 4px;
    background: var(--Gradient, linear-gradient(147deg, #BFEB13 -3.94%, rgba(191, 235, 19, 0.00) 95.14%));
}

.yarpp-related.yarpp-related-shortcode {
    margin: 0;
}


@media (max-width: 767px) {
.yarpp-related-list {
    flex-direction: column;
    gap: 0;
}
.yarpp-related-container {
    padding: 12px;
}
.yarpp-related-title {
    padding: 8px 0;
}
.yarpp-related-thumbnail {
    display: none;
}
.yarpp-related-item {
    padding: 12px 0;
    border-top: 1px solid #537B8A;
}
.yarpp-related-link {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 169.231% */
}
}