/* Obituary Listing Page - Dark Theme matching Obituary Submission Form */

.obituary-listing-container-dfe21070 {
    background-color: #121212;
    color: #e0e0e0;
    padding: 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

/* Grid Layout */
.obituary-grid-dfe21070 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card */
.obituary-card-dfe21070 {
    display: flex;
    flex-direction: row;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.obituary-card-dfe21070:hover {
    border-color: #bb86fc;
    box-shadow: 0 4px 20px rgba(187, 134, 252, 0.15);
    transform: translateY(-2px);
}

/* Card Image */
.obituary-card-image-dfe21070 {
    width: 180px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obituary-card-image-dfe21070 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.obituary-card-placeholder-dfe21070 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #555;
}

/* Card Info */
.obituary-card-info-dfe21070 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.obituary-card-name-dfe21070 {
    margin: 0 0 14px 0;
    font-size: 20px;
    font-weight: 600;
    color: #bb86fc;
    line-height: 1.3;
}

.obituary-card-detail-dfe21070 {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.detail-label-dfe21070 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9e9e9e;
    font-weight: 500;
    margin-bottom: 2px;
}

.detail-value-dfe21070 {
    font-size: 14px;
    color: #e0e0e0;
}

/* Pagination */
.obituary-pagination-dfe21070 {
    margin-top: 35px;
    text-align: center;
}

.obituary-pagination-dfe21070 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.obituary-pagination-dfe21070 ul li {
    display: inline-block;
}

.obituary-pagination-dfe21070 ul li a,
.obituary-pagination-dfe21070 ul li span {
    display: inline-block;
    padding: 10px 16px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.obituary-pagination-dfe21070 ul li a:hover {
    border-color: #bb86fc;
    background-color: #2a2a2a;
    color: #bb86fc;
}

.obituary-pagination-dfe21070 ul li span.current {
    background-color: #bb86fc;
    color: #121212;
    border-color: #bb86fc;
    font-weight: bold;
}

/* No Results */
.obituary-no-results-dfe21070 {
    text-align: center;
    padding: 60px 20px;
    color: #9e9e9e;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .obituary-grid-dfe21070 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .obituary-listing-container-dfe21070 {
        padding: 20px;
    }

    .obituary-card-dfe21070 {
        flex-direction: column;
    }

    .obituary-card-image-dfe21070 {
        width: 100%;
        min-height: 220px;
    }
}
