.apps-main {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0 80px;
}

.apps-hero {
    max-width: 850px;
    margin: 0 auto 46px;
    text-align: center;
}

.apps-eyebrow {
    margin: 0 0 10px;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    opacity: .68;
}

.apps-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
}

.apps-intro {
    margin: 0 auto;
    max-width: 720px;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.7;
    opacity: .82;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.apps-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(127,127,127,.28);
    border-radius: 18px;
    background: var(--entry, #fff);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
    transition: transform .16s ease, box-shadow .16s ease;
}

.apps-card:hover,
.apps-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0,0,0,.16);
}

.apps-image-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: rgba(127,127,127,.12);
}

.apps-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.apps-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}

.apps-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.apps-card h2 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.apps-card p {
    flex: 1;
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.65;
    opacity: .82;
}

.apps-button {
    display: inline-flex;
    align-self: flex-start;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 17px;
    border-radius: 9px;
    background: #2368d8;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1050px) {
    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 850px;
        margin: 0 auto;
    }

    .apps-card {
        display: grid;
        grid-template-columns: minmax(320px, 44%) 1fr;
        min-height: 330px;
    }

    .apps-image-wrap {
        height: 100%;
        min-height: 330px;
    }
}

@media (max-width: 700px) {
    .apps-main {
        width: min(100% - 18px, 1400px);
        padding: 42px 0 56px;
    }

    .apps-card {
        display: flex;
        min-height: 0;
    }

    .apps-image-wrap {
        height: 230px;
        min-height: 0;
    }

    .apps-button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* STICKSPHOTO RESPONSIVE POLISH START */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.apps-main,
.apps-grid,
.apps-card {
    box-sizing: border-box;
}

.apps-card {
    min-width: 0;
}

@media (max-width: 900px) {
    .apps-main {
        width: min(100% - 24px, 1400px);
        padding-top: 48px;
    }

    .apps-grid {
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .apps-main {
        width: min(100% - 16px, 1400px);
        padding-top: 34px;
    }

    .apps-hero {
        margin-bottom: 30px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .apps-hero h1 {
        font-size: clamp(2.1rem, 11vw, 3.2rem);
    }

    .apps-intro {
        font-size: 1rem;
    }

    .apps-image-wrap {
        height: 220px;
    }

    .apps-card-body {
        padding: 20px;
    }

    .apps-button {
        min-height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .apps-image-wrap {
        height: 195px;
    }

    .apps-card-body {
        padding: 17px;
    }
}

/* STICKSPHOTO RESPONSIVE POLISH END */
