.ppcg-grid {
    --ppcg-accent: #0764D7;
    --ppcg-text: #8d8d8d;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ppcg-grid *,
.ppcg-grid *::before,
.ppcg-grid *::after {
    box-sizing: border-box;
}

.ppcg-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 45, 61, 0.12);
}

.ppcg-card__image-wrap {
    cursor: default;
    display: block;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
}

.ppcg-card__image {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
}


.ppcg-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 30px 28px;
}

.ppcg-card__title {
    margin: 0 0 22px;
    padding: 0;
    color: var(--ppcg-accent);
    font-family: inherit;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
}

.ppcg-card__text {
    margin: 0;
    color: var(--ppcg-text);
    font-family: inherit;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 400;
}

.ppcg-card__text p {
    margin: 0;
}

.ppcg-card__text p + p {
    margin-top: .85em;
}
.ppcg-card__button:hover,
.ppcg-card__button:focus-visible {
    background: #fff;
    color: var(--ppcg-accent) !important;
    transform: translateY(-1px);
}

.ppcg-card__button:focus-visible,
.ppcg-card__image-wrap:focus-visible {
    outline: 3px solid rgba(7, 100, 215, .25);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .ppcg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .ppcg-card__image {
        height: 240px;
    }
}

@media (max-width: 700px) {
    .ppcg-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ppcg-card {
        border-radius: 16px;
    }

    .ppcg-card__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .ppcg-card__body {
        padding: 20px 18px 22px;
    }

    .ppcg-card__title {
        margin-bottom: 16px;
        font-size: 20px;
    }

    .ppcg-card__text {
        font-size: 16px;
    }
}

/* PROPANELS detail page v1.0.2 */
.ppcg-detail {
    margin-top: 10rem !important;
    width: 100%;
    margin: 0;
    padding: 0 0 80px;
    background: #fff;

}

.ppcg-detail *,
.ppcg-detail *::before,
.ppcg-detail *::after {
    box-sizing: border-box;
}

.ppcg-detail__wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.ppcg-detail__article {
    margin: 0;
}

.ppcg-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 64px;
    align-items: center;
}

.ppcg-detail__info {
    min-width: 0;
}

.ppcg-detail__title {
    margin: 0 0 28px;
    padding: 0;
    color: #0764D7;
    font-family: inherit;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
}

.ppcg-detail__text {
    color: #666;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.ppcg-detail__text > :first-child {
    margin-top: 0;
}

.ppcg-detail__text > :last-child {
    margin-bottom: 0;
}

.ppcg-detail__text p {
    margin: 0 0 16px;
}

.ppcg-detail__text ul,
.ppcg-detail__text ol {
    margin: 18px 0;
    padding-left: 1.25em;
}

.ppcg-detail__actions {
    margin-top: 34px;
}

.ppcg-detail__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 48px;
    padding: 13px 30px;
    border: 2px solid #0764D7;
    border-radius: 999px;
    background: #0764D7;
    color: #fff !important;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.ppcg-detail__button:hover,
.ppcg-detail__button:focus-visible {
    background: #fff;
    color: #0764D7 !important;
    transform: translateY(-1px);
}

.ppcg-detail__button:focus-visible {
    outline: 3px solid rgba(7, 100, 215, .25);
    outline-offset: 3px;
}

.ppcg-detail__media {
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
}

.ppcg-detail__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 980px) {
    .ppcg-detail {
        padding: 0 0 64px;
    }

    .ppcg-detail__wrap {
        width: min(100% - 36px, 760px);
    }

    .ppcg-detail__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ppcg-detail__info {
        order: 1;
    }

    .ppcg-detail__media {
        order: 2;
    }
}

@media (max-width: 600px) {
    .ppcg-detail {
        padding: 0 0 48px;
    }

    .ppcg-detail__wrap {
        width: calc(100% - 28px);
    }

    .ppcg-detail__title {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 1.08;
    }

    .ppcg-detail__text {
        font-size: 18px;
    }

    .ppcg-detail__actions {
        margin-top: 26px;
    }

    .ppcg-detail__button {
        width: 100%;
    }

    .ppcg-detail__media {
        border-radius: 14px;
    }
}

@media (max-width: 400px) {
    .ppcg-detail__title {
        font-size: 22px;
        line-height: 1.12;
    }
}
