.study-search-panel {
    margin: 18px 0;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.search-bar input {
    width: min(680px, 100%);
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #d0dce5;
    box-shadow: 0 8px 18px rgba(16, 30, 44, 0.06);
}

#searchResults {
    text-align: center;
    margin-bottom: 0;
    font-weight: 700;
    color: #1a3a52;
    font-size: 14px;
}

.studies-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
}

.study {
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    box-shadow: 0 10px 20px rgba(16, 30, 44, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #dbe5ed;
    border-top: 4px solid #1a3a52;
}

.study:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(16, 30, 44, 0.1);
    border-top-color: #d4af37;
}

.study h3 {
    margin-bottom: 10px;
    color: #13283a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
}

.study p {
    color: #5c6c78;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 700px) {
    .studies-list {
        grid-template-columns: 1fr;
    }
}
