/* Menu/folder-page list. Mirrors the cart-item / my-orders card pattern —
   each item is its own card sitting on the page background, not nested inside
   the .main-content-container white card that arc.php uses. Layered on top of
   content.css for the page shell. */

.cat-page-title {
    margin: 12px 0 24px;
}

.content-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.content-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

@media (hover: hover) {
    .content-menu-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }
}

.content-menu-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f3f4f6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    display: block;
}

.content-menu-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.content-menu-item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #0B0427;
    text-align: right;
    margin: 0;
}

.content-menu-item-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #6B7280;
    text-align: right;
}

.content-menu-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #0B0427;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.content-menu-item:hover .content-menu-chevron {
    opacity: 0.8;
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .cat-page-title {
        margin: 4px 0 16px;
    }

    .content-menu-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .content-menu-image {
        width: 88px;
        height: 64px;
    }

    .content-menu-item-title {
        font-size: 16px;
    }

    .content-menu-item-description {
        font-size: 13px;
    }

    .content-menu-chevron {
        width: 16px;
        height: 16px;
    }
}
