/* Mobile Spacing Improvements - Less Cluttered */

/* Increase spacing between sections on mobile */
@media screen and (max-width: 767px) {

    /* More breathing room in containers */
    .padding-global {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    /* Increase spacing between case studies */
    .cases_inner,
    .cases_inner-2,
    .cases_inner-3 {
        padding: 2rem 1.25rem !important;
    }

    /* More space in hero blocks */
    .hero_block-tags {
        padding: 1.5rem 1rem !important;
        gap: 1rem !important;
    }

    /* Increase gap between tags */
    .tags-group,
    .tag-group {
        gap: 0.75rem !important;
        row-gap: 0.75rem !important;
    }

    /* More padding in individual tags */
    .tag {
        padding: 0.6rem 1rem !important;
    }

    .tag.is-small {
        padding: 0.5rem 0.85rem !important;
    }

    /* Increase spacing in case content */
    .cases_list {
        gap: 1.5rem !important;
    }

    .cases_item {
        margin-bottom: 1.5rem !important;
    }

    /* More space between text blocks */
    .text-size-large,
    .text-size-medium {
        margin-bottom: 1.25rem !important;
    }

    /* Increase padding in cards */
    .community_inner {
        padding: 2rem 1.5rem !important;
    }

    /* More breathing room in navigation */
    .navbar_component {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/* Extra spacing for very small screens */
@media screen and (max-width: 479px) {

    /* Even more breathing room */
    .padding-section-small {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .padding-section-medium {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Reduce density in hero blocks */
    .hero_block-inner {
        gap: 1.5rem !important;
    }

    /* More space between case study sections */
    .cases_inner-2-two-columns {
        gap: 3rem !important;
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Increase vertical rhythm */
    .spacer-small {
        height: 2rem !important;
    }

    .spacer-medium {
        height: 3rem !important;
    }

    .spacer-large {
        height: 4rem !important;
    }

    /* More space in footer */
    .footer_layout {
        gap: 2.5rem !important;
    }

    /* Reduce visual clutter in buttons */
    .button-group {
        gap: 1rem !important;
    }
}