@charset "utf-8";
/* CSS Document */
/* Wrapper for the articles grid */
/* Wrapper for the articles grid */
.blockquote-grid .ccm-block-page-list-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 2rem; /* larger gap to prevent vertical overlap */
    margin: 2.5rem 0;
}

/* Individual article card */
.blockquote-grid .ccm-block-page-list-page-entry {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 1.75rem; /* slightly increased internal spacing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    display: flex;
    height: 100%;
    box-sizing: border-box;
}

/* Hover effect */
.blockquote-grid .ccm-block-page-list-page-entry:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

/* Text container */
.blockquote-grid .ccm-block-page-list-page-entry-text {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Title */
.blockquote-grid .ccm-block-page-list-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Title link */
.blockquote-grid .ccm-block-page-list-title a {
    text-decoration: none;
    color: #234563;
}

.blockquote-grid .ccm-block-page-list-title a:hover,
.blockquote-grid .ccm-block-page-list-title a:focus {
    text-decoration: underline;
}

/* Description */
.blockquote-grid .ccm-block-page-list-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
}

/* Optional description clamp */
.blockquote-grid .ccm-block-page-list-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .blockquote-grid .ccm-block-page-list-pages {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        grid-gap: 1.75rem; /* maintain spacing at tablet sizes */
    }

    .blockquote-grid .ccm-block-page-list-page-entry {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .blockquote-grid .ccm-block-page-list-pages {
        display: block;
    }

    .blockquote-grid .ccm-block-page-list-page-entry {
        margin-bottom: 1.75rem; /* ensure separation on mobile */
    }

    .blockquote-grid .ccm-block-page-list-title {
        font-size: 1.05rem;
    }

    .blockquote-grid .ccm-block-page-list-description {
        font-size: 0.9rem;
    }
}