.headlines-plus-related-articles.view-grid .headlines-plus-inner-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.headlines-plus-related-articles.view-list .headlines-plus-inner-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
.headlines-plus-related-articles.view-list .headlines-plus-article {
    display: flex;
    gap: 15px;
    align-items: center;
}
.headlines-plus-related-articles.view-list .headlines-plus-article:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.headlines-plus-related-articles.view-list .headlines-plus-article .image-article-wrapper {
    width: 140px;
}
.headlines-plus-related-articles.view-list h4 {
    margin-top: 0;
}
.headlines-plus-inner-wrapper h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    margin-top: 10px;
}
.headlines-plus-inner-wrapper .image-article-wrapper {
    aspect-ratio: 4/3;
}
.headlines-plus-inner-wrapper .image-article-wrapper img {
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
}
p.site-name {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0 !important;
}
.headlines-plus-related-articles .widget-title {
    display: flex;
    width: 100%;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
}

.headlines-plus-related-articles .widget-title h3 {
    margin-bottom: 0 !important;
}

.headlines-plus-related-articles .widget-title img.hp-logo {
    margin-bottom: 5px;
}

.headlines-plus-related-articles .hp-logo {
    max-height: 20px;
    width: auto;
    margin-bottom: 10px;
}
.headlines-plus-article .article-info h4 a {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
}

.headlines-plus-article .article-info h4 {
    margin: 5px 0 !important;
}

.headlines-plus-related-articles.view-list .article-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
}

.hp-contact-button {
    margin: initial;
    cursor: pointer;
    border: none;
    background: transparent;
}
/* HEADLINE PLUS MODAL */
#contact-headlines-plus {
    position: fixed;
    z-index: 10010;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: -1;
    transition: all .4s ease-in-out;
}

/* Modal content styles */
#contact-headlines-plus .modal-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 50px 20px 20px 20px;
    width: 90%;
    max-width: 1024px;
    box-sizing: border-box;
    position: relative;
}

/* Close button styles */
#contact-headlines-plus .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

#contact-headlines-plus .hp-contact-form fieldset.form-columns-2,
#contact-headlines-plus .hp-contact-form fieldset.form-columns-1 {
    max-width: initial;
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 15px;
}
#contact-headlines-plus .hp-contact-form fieldset > .hs-form-field {
    width: 100%;
    float: initial;
}
#contact-headlines-plus .hp-contact-form fieldset .input .hs-input:not(input[type='checkbox']) {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #333;
}
#contact-headlines-plus .hp-contact-form .hs-richtext {
    font-size: 13px;
}
#contact-headlines-plus .hp-contact-form .legal-consent-container {
    margin-top: 15px;
}
#contact-headlines-plus .hp-contact-form ul.inputs-list {
    padding-left: 0;
    list-style: none;
}
#contact-headlines-plus .hp-contact-form .hs-form-booleancheckbox-display {
    display: flex;
    align-items: flex-start;
}
#contact-headlines-plus .hp-contact-form .actions .hs-button {
    color: #fff;
    background: rgb(110, 241, 149);
    background: linear-gradient(120deg, rgba(110, 241, 149, 1) 48%, rgba(0, 227, 253, 1) 100%);
    width: 100%;
    color: #fff;
    height: 40px;
}
#contact-headlines-plus .hp-contact-form .hs-form-required {
    color: #cf2e2e;
}

@media (max-width: 768px) {
    #contact-headlines-plus .hp-contact-form .hs-form-booleancheckbox-display .hs-input {
        margin-top: 6px;
    }
    #contact-headlines-plus .hbspt-form {
        max-height: 500px;
        overflow: auto;
    }
}
@media (min-width: 768px) {
    .headlines-plus-related-articles.view-grid .headlines-plus-inner-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .headlines-plus-related-articles .headlines-plus-article .image-article-wrapper {
        overflow: hidden;
    }
    .headlines-plus-related-articles .headlines-plus-article .image-article-wrapper img {
        transition: all 300ms ease-out;
    }
    .headlines-plus-related-articles .headlines-plus-article .image-article-wrapper:hover img {
        transform: scale(1.1);
        transition: all 300ms ease-in;
    }
    #contact-headlines-plus .hp-contact-form .hs-form-booleancheckbox-display {
        display: flex;
        align-items: center;
    }
    #contact-headlines-plus .hp-contact-form fieldset.form-columns-2,
    #contact-headlines-plus .hp-contact-form fieldset.form-columns-1 {
        max-width: initial;
        display: flex;
        gap: 10px;
        flex-direction: row;
    }
    #contact-headlines-plus .hp-contact-form fieldset > .hs-form-field {
        width: 50%;
    }
}