.cr-33724385-container {
    width: 100%;
    box-sizing: border-box;
}

.cr-33724385-header {
    margin-bottom: 40px;
    max-width: 800px;
}

.cr-33724385-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #D1A235;
    margin-bottom: 8px;
}

.cr-33724385-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    color: #222222;
    margin: 0 0 16px 0;
}

.cr-33724385-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* 5 Column Grid */
.cr-33724385-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.cr-33724385-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    background: transparent;
    transition: transform 0.3s ease;
    border: none !important;
    box-shadow: none !important;
}

.cr-33724385-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Default square 1:1 */
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-33724385-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Clean micro interaction - slight zoom on hover */
.cr-33724385-item:hover .cr-33724385-img-container img {
    transform: scale(1.04);
}

/* Category Title - regular weight, matches enkay style */
.cr-33724385-item-title {
    margin: 12px 0 0 0;
    font-size: 16px;
    font-weight: 400; /* STRICT weight - non-bold */
    line-height: 1.4;
    color: #333333;
    transition: color 0.3s ease;
}

.cr-33724385-item:hover .cr-33724385-item-title {
    color: #D1A235;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .cr-33724385-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cr-33724385-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cr-33724385-grid {
        grid-template-columns: 1fr;
    }
}
