.pandiyaas-cat-section {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 0;
    font-family: inherit;
}

.pandiyaas-cat-heading {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 900px;
    padding: 0 16px;
}

.pandiyaas-cat-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #646875;
    margin-bottom: 8px;
}

.pandiyaas-cat-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    color: #151a2e;
}

.pandiyaas-cat-heading p {
    margin: 12px 0 0;
    color: #555b6e;
    font-size: clamp(14px, 1.8vw, 20px);
}

.pandiyaas-cat-divider {
    display: block;
    width: 62px;
    height: 2px;
    margin: 18px auto 0;
    background: #d9281c;
    border-radius: 99px;
}

.pandiyaas-cat-grid {
    display: grid;
    grid-template-columns: repeat(var(--pcg-columns), minmax(0, 1fr));
    gap: 22px;
}

.pandiyaas-cat-card {
    display: block;
    overflow: hidden;
    text-decoration: none !important;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 7px 25px rgba(17, 24, 39, 0.09);
    color: #151a2e;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pandiyaas-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.14);
}

.pandiyaas-cat-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #f4f4f5;
}

.pandiyaas-cat-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.pandiyaas-cat-card:hover .pandiyaas-cat-image-wrap img {
    transform: scale(1.045);
}

.pandiyaas-cat-info {
    min-height: 82px;
    padding: 14px 16px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
}

.pandiyaas-cat-info h3 {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 750;
    color: #171b2d;
}

.pandiyaas-cat-count {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #646a7b;
}

.pandiyaas-cat-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff0ef;
    color: #d9281c;
    font-size: 24px;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
}

.pandiyaas-cat-card:hover .pandiyaas-cat-arrow {
    transform: translateX(3px);
    background: #ffe4e1;
}

@media (max-width: 1024px) {
    .pandiyaas-cat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .pandiyaas-cat-section {
        padding: 20px 0;
    }

    .pandiyaas-cat-heading {
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .pandiyaas-cat-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .pandiyaas-cat-heading h2 {
        font-size: 30px;
    }

    .pandiyaas-cat-heading p {
        font-size: 14px;
    }

    .pandiyaas-cat-grid {
        grid-template-columns: repeat(var(--pcg-mobile-columns), minmax(0, 1fr));
        gap: 12px;
    }

    .pandiyaas-cat-card {
        border-radius: 13px;
    }

    .pandiyaas-cat-image-wrap {
        aspect-ratio: 1.18 / 1;
    }

    .pandiyaas-cat-info {
        min-height: 68px;
        padding: 10px 10px 11px;
        gap: 6px;
    }

    .pandiyaas-cat-info h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .pandiyaas-cat-count {
        font-size: 12px;
    }

    .pandiyaas-cat-arrow {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .pandiyaas-cat-grid {
        gap: 9px;
    }

    .pandiyaas-cat-info {
        padding-left: 8px;
        padding-right: 8px;
    }

    .pandiyaas-cat-info h3 {
        font-size: 14px;
    }

    .pandiyaas-cat-count {
        font-size: 11px;
    }

    .pandiyaas-cat-arrow {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}
