/* Peer Article Plugin Styles */
body.page-id-560 .bannerheadingh1 h1.elementor-heading-title {
    color: white !important;
    text-shadow: unset;
    font-weight: 500 !important;
}

.pap-search-container {
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 40px;
    width: 542px;
    height: 64px;
    border-radius: 5px;
    background: white;
    padding: 5px;
}
#pap-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 0px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
}
#pap-search-btn {
    padding: 12px 32px;
    background: #16c13b;
    color: #fff;
    border: none;
    border-radius: 7px;
    height: 53px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
#pap-search-btn:hover {
    background: #0e8c28;
}
.pap-article-list {
    margin-top: 10px;
}
.pap-article-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.27);
    padding: 30px 0;
}
.pap-article-item:last-child {
    border-bottom: none;
}

.pap-article-title {
    margin-bottom: 6px;
    color: #2F2F2F;
    font-family: 'Inter';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
}
.pap-article-excerpt {
    flex: 1;
    margin-right: 20px;
    color: #444;
}
.pap-view-article-btn {
    background: #03C528;
    color: #fff;
    padding: 10px 28px;
    border: none;
    border-radius: 7px;
    text-align: center;
    text-decoration: none !important;
    font-size: 20px;
    transition: background 0.2s;
    display: inline-block;
    min-width: 200px;
    height: 66px;
    font-weight: 500 !important;
    line-height: 48px;
}

.pap-view-article-btn:hover {
    background: #0e8c28;
}

@media screen and (max-width: 768px) {
    .pap-article-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pap-view-article-btn {
        width: 100%;
        height: auto;
        padding: 12px 0;
    }
    
}