/* Alrozana Photo Album - Frontend Styles */

.arz-pa-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.arz-pa-item {
    display: block;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.arz-pa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.arz-pa-thumb-wrap {
    margin-bottom: 10px;
}

.arz-pa-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.arz-pa-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
}

.arz-pa-date {
    font-size: 0.85rem;
    color: #666;
}

/* Pagination */
.arz-pa-pagination {
    margin: 30px 0;
    text-align: center;
}
.arz-pa-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 4px;
}
.arz-pa-pagination li a,
.arz-pa-pagination li span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    background: #eee;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}
.arz-pa-pagination li span.current {
    background: #111827;
    color: #fff;
}

/* Single page */
.arz-pa-single-wrap {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
}
.arz-pa-single-title {
    text-align: center;
    margin-bottom: 20px;
}
.arz-pa-single-content {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .arz-pa-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .arz-pa-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .arz-pa-thumb {
        aspect-ratio: 16 / 10;
    }
}
