@charset "UTF-8";

.pp-brand-section-page .brand-signature__slogan {
    font-family: "HondaGlobalFontEN-Regular", sans-serif;
    font-size: 15px;
}

.pp-section-intro {
    align-items: center;
    background: #f3f3f1;
    border-bottom: 1px solid #d8d8d6;
    border-top: 1px solid #e0e0de;
    display: flex;
    min-height: 150px;
}

.pp-section-intro__inner {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: var(--pp-max);
    width: calc(100% - 40px);
}

.pp-section-intro__marker {
    align-self: stretch;
    background: var(--pp-red);
    flex: 0 0 3px;
    margin-right: 24px;
    min-height: 44px;
}

.pp-section-intro__content {
    flex: 1 1 auto;
    text-align: center;
}

.pp-section-intro h1 {
    color: #171717;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

.pp-section-intro p {
    color: #242424;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
    margin: 0;
}

.pp-brand-section-page .pp-section-card-nav {
    margin: 42px auto 66px;
    max-width: var(--pp-max);
    padding: 0;
    width: calc(100% - 40px);
}

.pp-brand-section-page .pp-section-card-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1025px) {
    .pp-brand-section-page[data-pp-index="comics"] .pp-section-card-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.pp-brand-section-page .pp-section-card-grid > li {
    background: #e8e8e6;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: box-shadow .2s ease;
}

.pp-brand-section-page .pp-section-card-grid > li:hover,
.pp-brand-section-page .pp-section-card-grid > li.active:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
}

.pp-brand-section-page .pp-section-card-grid > li::before {
    background: var(--pp-red);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .2s ease;
    width: 0;
    z-index: 2;
}

.pp-brand-section-page .pp-section-card-grid > li:hover::before,
.pp-brand-section-page .pp-section-card-grid > li.active::before {
    width: 100%;
}

.pp-brand-section-page .pp-section-card-grid > li > a,
.pp-brand-section-page .pp-section-card-grid > li.active > a {
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 276px;
    overflow: hidden;
    padding: 0;
    text-decoration: none;
    transition: none;
}

.pp-brand-section-page .pp-section-card-grid > li > a:hover,
.pp-brand-section-page .pp-section-card-grid > li.active > a:hover {
    color: #fff;
    cursor: pointer;
}

/* Comics thumbnails are supplied in a square format. */
.pp-brand-section-page[data-pp-index="comics"] .pp-section-card-grid > li > a,
.pp-brand-section-page[data-pp-index="comics"] .pp-section-card-grid > li.active > a {
    height: auto;
}

.pp-brand-section-page[data-pp-index="comics"] .pp-section-card__image {
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
}

.pp-section-card__image {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.pp-section-card__image img {
    filter: saturate(.76) contrast(1.05);
    height: 100%;
    object-fit: cover;
    transition: filter .25s ease, transform .4s ease;
    width: 100%;
}

.pp-brand-section-page[data-pp-index="history"] .pp-section-card-grid > li:first-child .pp-section-card__image img,
.pp-brand-section-page[data-pp-index="history"] .pp-section-card-grid > li:nth-child(3) .pp-section-card__image img {
    filter: grayscale(1) contrast(1.05);
}

.pp-section-card-grid > li > a:hover .pp-section-card__image img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.035);
}

.pp-section-card__title {
    align-items: center;
    background: rgba(15, 15, 15, .96);
    display: flex;
    flex: 0 0 68px;
    font-size: 16px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: .01em;
    line-height: 1.45;
    padding: 14px 48px 14px 18px;
    position: relative;
}

.pp-section-card__title::after {
    color: #8f8f8f;
    content: "→";
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.pp-section-card-grid > li.is-external .pp-section-card__title::after {
    content: "↗";
}

.pp-section-card__title > span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pp-section-card__title b {
    font-size: inherit;
    font-weight: 700;
}

.pp-section-card__title small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
}

.pp-brand-section-page .Page_Body_History {
    margin-top: 0;
}

@media screen and (max-width: 1024px) {
    .pp-brand-section-page .brand-signature__slogan {
        font-size: 12px;
    }

    .pp-section-intro {
        min-height: 146px;
        padding: 18px 0 19px;
    }

    .pp-section-intro__inner {
        align-items: stretch;
        width: calc(100% - 32px);
    }

    .pp-section-intro__marker {
        margin-right: 15px;
        min-height: 0;
    }

    .pp-section-intro p {
        font-size: 15px;
        line-height: 1.6;
    }

    .pp-section-intro__content {
        text-align: left;
    }

    .pp-section-intro h1 {
        font-size: 18px;
        margin-bottom: 8px;
        text-align: center;
    }

    .pp-brand-section-page .pp-section-card-nav {
        margin: 24px auto 38px;
        width: calc(100% - 24px);
    }

    .pp-brand-section-page .pp-section-card-grid {
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .pp-brand-section-page .pp-section-card-grid > li > a,
    .pp-brand-section-page .pp-section-card-grid > li.active > a {
        height: 240px;
    }

    .pp-section-card__title {
        flex-basis: 62px;
        font-size: 14px;
        padding: 12px 44px 12px 13px;
    }

    .pp-section-card__title::after {
        font-size: 18px;
        right: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pp-brand-section-page .pp-section-card-grid > li,
    .pp-brand-section-page .pp-section-card-grid > li::before,
    .pp-brand-section-page .pp-section-card-grid > li > a,
    .pp-section-card__image img {
        transition: none;
    }
}
