.pdf-list {
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px 38px;
    border-radius: 22px;

    background: rgba(13, 70, 120, 0.25); /* фирменный синий с прозрачностью */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

/* список */
.pdf-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pdf-item:last-child {
    border-bottom: none;
}

/* имя файла */
.pdf-name {
    flex: 1;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* кнопки */
.pdf-view,
.pdf-download {
    padding: 8px 16px;
    background: #C45A1A; /* рыже‑медный */
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: .25s;
    font-size: 15px;
    font-weight: 600;
}

.pdf-view:hover,
.pdf-download:hover {
    background: #0d4678; /* глубокий синий */
    color: #fff;
    transform: translateY(-2px);
}
/* ====== Сетка превью ====== */
.agat-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

/* ====== Карточка ====== */
.agat-cert-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    border: 1px solid var(--agat-border);
    border-radius: var(--agat-radius-sm);
    padding: 16px;
    box-shadow: 0 8px 22px rgba(13,70,120,0.16);
    text-align: center;
}

/* JPG превью */
.agat-cert-card img {
    width: 100%;
    border-radius: var(--agat-radius-sm);
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

/* Название файла */
.agat-cert-name {
    font-size: 1.1rem;
    color: var(--agat-text-muted);
    margin-bottom: 12px;
}

/* Кнопки */
.agat-cert-btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--agat-accent-secondary);
    color: #fff;
    border-radius: var(--agat-radius-sm);
    text-decoration: none;
    font-size: 0.95rem;
    transition: .25s;
}

.agat-cert-btn:hover {
    background: var(--agat-accent-primary);
    transform: translateY(-2px);
}

/* PDF иконка */
.agat-pdf-icon {
    width: 100%;
    height: 180px;
    background: rgba(13,70,120,0.12);
    border-radius: var(--agat-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--agat-accent-primary);
    margin-bottom: 12px;
}
