/* =========================================================
   YXE WEB STUDIOS
   PRINT DESIGN / COLLATERAL
   ========================================================= */

.print-page {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   PRINT INTRO
   ========================================================= */

.print-intro {
    position: relative;
    padding: 105px 0 65px;
}

.print-intro::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -280px;
    top: -300px;

    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.14),
            transparent 68%
        );

    pointer-events: none;
}


.print-intro-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}


.print-intro-count {
    font-size: 11px;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}


.print-intro-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(260px, .6fr);

    gap: 70px;

    align-items: end;

    padding-top: 48px;
}


.print-intro-row h1 {
    margin: 0;

    font-size: clamp(56px, 6.5vw, 100px);

    line-height: .92;

    letter-spacing: -.055em;

    font-weight: 700;
}


.print-intro-row h1 span {
    color: #4f8cff;
}


.print-intro-row p {
    max-width: 350px;

    margin: 0 0 6px;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255,255,255,.58);
}



/* =========================================================
   PRINT WORK
   ========================================================= */

.print-work {
    padding: 20px 0 80px;
}


.print-accordion {
    border-top: 1px solid rgba(255,255,255,.10);
}



/* =========================================================
   PRINT CARD
   ========================================================= */

.print-card {
    position: relative;

    border-bottom: 1px solid rgba(255,255,255,.10);
}


.print-card-toggle {
    width: 100%;

    min-height: 82px;

    border: 0;

    background: transparent;

    color: white;

    display: grid;

    grid-template-columns:
        65px
        1fr
        48px;

    align-items: center;

    text-align: left;

    padding: 18px 10px;

    cursor: pointer;

    transition:
        background .25s ease,
        padding .3s ease;
}


.print-card-toggle:hover {
    background: rgba(255,255,255,.025);
}


.print-card-number {
    font-size: 11px;

    letter-spacing: .12em;

    color: rgba(255,255,255,.35);
}


.print-card-label {
    font-size: clamp(21px, 2vw, 31px);

    font-weight: 600;

    letter-spacing: -.025em;
}


.print-card-arrow {
    width: 36px;
    height: 36px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    color: rgba(255,255,255,.55);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.print-card.is-active .print-card-arrow {
    transform: rotate(90deg);

    background: rgba(59,130,246,.12);

    border-color: rgba(79,140,255,.35);

    color: white;
}



/* =========================================================
   EXPANDED PROJECT
   ========================================================= */

.print-card-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(280px, .75fr);

    gap: 48px;

    align-items: center;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transform: translateY(-10px);

    padding: 0 10px;

    transition:
        max-height .55s cubic-bezier(.22,1,.36,1),
        opacity .35s ease,
        transform .55s cubic-bezier(.22,1,.36,1);
}


.print-card.is-active .print-card-content {
    max-height: 570px;

    opacity: 1;

    transform: translateY(0);

    padding-top: 16px;

    padding-bottom: 38px;
}



/* =========================================================
   PROJECT IMAGE
   ========================================================= */

.print-card-image {
    width: 100%;

    height: 350px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(59,130,246,.10),
            transparent 62%
        ),
        rgba(4,9,18,.78);

    box-shadow:
        inset 0 0 40px rgba(0,0,0,.20);
}


.print-card-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.035),
            transparent 35%,
            rgba(59,130,246,.035)
        );
}


.print-card-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    position: relative;

    z-index: 1;

    transition:
        transform .5s ease;
}


.print-card:hover .print-card-image img {
    transform: scale(1.025);
}



/* =========================================================
   LIGHT PRINT ARTWORK
   ========================================================= */

.print-card-image-light {
    background: #f4f4f4;
}


.print-card-image-light img {
    padding: 28px;
}



/* =========================================================
   PROJECT INFORMATION
   ========================================================= */

.print-card-info {
    align-self: center;

    padding: 5px 0;
}


.print-card-info > span {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;

    line-height: 1.5;

    letter-spacing: .18em;

    color: rgba(255,255,255,.42);
}


.print-card-info h2 {
    margin: 0 0 25px;

    font-size: clamp(38px, 3.8vw, 60px);

    line-height: .95;

    letter-spacing: -.045em;

    font-weight: 700;
}


.print-card-info a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 7px;

    border-bottom: 1px solid rgba(255,255,255,.30);

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        gap .25s ease,
        border-color .25s ease;
}


.print-card-info a strong {
    font-size: 17px;

    font-weight: 400;
}


.print-card-info a:hover {
    gap: 18px;

    border-color: #4f8cff;
}



/* =========================================================
   PRINT BOTTOM CTA
   ========================================================= */

.print-bottom {
    padding: 25px 0 105px;
}


.print-bottom-inner {
    border-top: 1px solid rgba(255,255,255,.10);

    padding-top: 48px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 45px;
}


.print-bottom-inner h2 {
    margin: 16px 0 0;

    max-width: 650px;

    font-size: clamp(40px, 4.5vw, 68px);

    line-height: .95;

    letter-spacing: -.045em;
}


.print-bottom-inner h2 span {
    color: #4f8cff;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .print-intro {
        padding: 85px 0 50px;
    }


    .print-intro-row {
        grid-template-columns: 1fr;

        gap: 25px;

        padding-top: 38px;
    }


    .print-intro-row p {
        max-width: 500px;
    }


    .print-card-content {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .print-card.is-active .print-card-content {
        max-height: 850px;
    }


    .print-card-image {
        height: 320px;
    }


    .print-card-info {
        padding: 0 4px;
    }


    .print-card-info h2 {
        margin-bottom: 22px;
    }


    .print-bottom-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .print-intro {
        padding: 65px 0 40px;
    }


    .print-intro-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .print-intro-count {
        display: none;
    }


    .print-intro-row {
        gap: 22px;
    }


    .print-intro-row h1 {
        font-size: clamp(46px, 13vw, 68px);
    }


    .print-intro-row p {
        font-size: 14px;

        line-height: 1.65;
    }


    .print-work {
        padding-bottom: 55px;
    }


    .print-card-toggle {
        min-height: 72px;

        grid-template-columns:
            40px
            1fr
            38px;

        padding: 17px 5px;
    }


    .print-card-number {
        font-size: 10px;
    }


    .print-card-label {
        font-size: 21px;
    }


    .print-card-arrow {
        width: 32px;
        height: 32px;

        font-size: 13px;
    }


    .print-card-content {
        padding-left: 5px;
        padding-right: 5px;
    }


    .print-card.is-active .print-card-content {
        max-height: 700px;

        padding-top: 10px;

        padding-bottom: 28px;
    }


    .print-card-image {
        height: 245px;

        border-radius: 10px;
    }


    .print-card-image-light img {
        padding: 18px;
    }


    .print-card-info > span {
        margin-bottom: 14px;

        font-size: 8px;

        letter-spacing: .16em;
    }


    .print-card-info h2 {
        font-size: 40px;

        margin-bottom: 20px;
    }


    .print-card-info a {
        font-size: 13px;
    }


    .print-bottom {
        padding-bottom: 75px;
    }


    .print-bottom-inner {
        padding-top: 38px;

        gap: 28px;
    }


    .print-bottom-inner h2 {
        font-size: 42px;
    }

}