/* Title */
.wriwoods-archive-title-container {
    width: 100%;
}
/* Archive Items Container */
.wriwoods-archive-container {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: left;
}

.wriwoods-archive-title-container h1 {
    margin: 25px auto;
    text-align: center;
}

/* Single Archive Container */
.wriwoods-archive-post {
    position: relative; /* Add this */
    margin: 10px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    border: var(--wriwoods-default-border);
    align-items: center;
    text-align: center;
    flex-grow: 1; /* Allow items to grow equally */
    flex-basis: 300px; /* initial width */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}
.wriwoods-archive-post:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Link */
.wriwoods-archive-post a {
    padding: 0;
    margin: 0;
    color: inherit;
    text-decoration: none;
}
.wriwoods-archive-post a:hover {
    color: inherit;
    text-decoration: none;
}

/* Mobile */
@media only screen and (min-width: 767px) {
    .wriwoods-archive-post {
        /* Set width to keep single items from extending */
        max-width: calc(25% - 20px);
    }
    .wriwoods-archive-post-content {
        flex-grow: 1; /* Allow content to grow and take available space */
    }
}

/* Hide entry content for single archive with wp default theme */
.post-type-archive-wriwoods_testimonial .wp-block-query-title,
.post-type-archive-wriwoods_service .wp-block-query-title,
.post-type-archive-wriwoods_brief .wp-block-query-title {
    display: none;
}

/* Image */
.wriwoods-archive-container.stage img {
    width: 50%;
}
.wriwoods-archive-container img {
    margin-bottom: 15px;
}

/* Softer show/hide */
.wriwoods-archive-post {
    transition: opacity 0.3s ease;
}
.wriwoods-archive-post.fading {
    opacity: 0;
}

/* Treasure archive */
.wriwoods-archive-post.owned {
    border-color: #2ecc71;
    background-color: #e8f8f1; /* light green background */
}

.wriwoods-archive-post.owned::before {
    content: "✔";
    color: #2ecc71;
    font-size: 26px;
    font-weight: bold;
    position: absolute;
    top: 16px;
    left: 16px;    
}

/* Stage archive */
.wriwoods-archive-post.user-stage {
    border-color: #2ecc71;
    background-color: #e8f8f1; /* light green background */
}