* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gs-page {
    min-height: 100vh;
    background: #fff;
    color: #222;
    font-family: Arial, sans-serif;
    padding: 40px 20px 80px;
}

.gs-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */

.gs-header {
    margin-bottom: 22px;
}

.gs-header h1 {
    font-size: 22px;
    font-weight: 400;
    color: #222;
    margin-bottom: 6px;
}

.gs-header p {
    font-size: 13px;
    color: #545454;
}

/* Result count */

.gs-count {
    font-size: 12px;
    color: #545454;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ebebeb;
}

/* List */

.gs-list {
    display: flex;
    flex-direction: column;
}

.gs-result {
    padding: 14px 0;
    border-bottom: 1px solid #ebebeb;
}

.gs-result:last-child {
    border-bottom: none;
}

/* Title - Scholar blue link */

.gs-title {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2px;
}

.gs-title a {
    color: #1a0dab;
    text-decoration: none;
}

.gs-title a:hover {
    text-decoration: underline;
}

.gs-title a:visited {
    color: #609;
}

/* Byline - Scholar green */

.gs-byline {
    font-size: 13px;
    color: #006621;
    margin-bottom: 4px;
}

.gs-byline em {
    font-style: normal;
}

/* Chicago citation line */

.gs-citation {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 10px;
    padding-left: 0;
    text-indent: 0;
}

.gs-citation em {
    font-style: italic;
}

/* Action links */

.gs-links {
    font-size: 13px;
}

.gs-links a {
    color: #1a0dab;
    text-decoration: none;
}

.gs-links a:hover {
    text-decoration: underline;
}

.gs-sep {
    color: #ccc;
    margin: 0 6px;
}

/* Pagination */

.gs-pagination {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    font-size: 13px;
}

.gs-pagination a {
    color: #1a0dab;
    text-decoration: none;
}

.gs-pagination a:hover {
    text-decoration: underline;
}

.gs-page-current {
    font-weight: bold;
    color: #222;
}

/* Empty state */

.gs-empty {
    padding: 60px 20px;
    text-align: center;
    border: 1px solid #ebebeb;
}

.gs-empty h2 {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    margin-bottom: 6px;
}

.gs-empty p {
    font-size: 13px;
    color: #545454;
}

/* Mobile */

@media (max-width: 600px) {
    .gs-page {
        padding: 28px 15px 60px;
    }

    .gs-title {
        font-size: 16px;
    }

   
}