.pg-grid-container-45668d32 {
    width: 100%;
}
.pg-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}
.pg-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.pg-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
}
.pg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pg-card:hover .pg-image-wrapper img {
    transform: scale(1.05);
}
.pg-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #101c4f;
    letter-spacing: 0.05em;
    z-index: 2;
}
.pg-circle-arrow {
    position: absolute;
    bottom: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #1e3381;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.pg-card:hover .pg-circle-arrow {
    bottom: 20px;
}
.pg-circle-arrow:hover {
    background: #0f1c50;
    transform: translateY(-2px);
}
.pg-circle-arrow svg {
    width: 18px;
    height: 18px;
}
.pg-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}
.pg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #7b7f95;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.pg-meta-item svg {
    color: #1e3381;
}
.pg-card-title {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0;
    color: #1a225c;
}
.pg-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pg-card-title a:hover {
    color: #1e3381;
}

/* Pagination */
.pg-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.pg-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid #e2e4ef;
    background: #f7f8fc;
    color: #2a346e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}
.pg-pagination .page-numbers.current {
    background: #0b1a4a;
    color: #fff;
    border-color: #0b1a4a;
}
.pg-pagination .page-numbers:hover:not(.current) {
    background: #e2e4ef;
    border-color: #c9ccd6;
}
