/* Hero */
.pd2-hero {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: center;
}

.pd2-hero-breadcrumb ul {
    justify-content: flex-start;
}

.pd2-hero-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0 25px;
    line-height: 1.15;
}

.pd2-hero-copy>p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0 0 26px;
    max-width: 560px;
}


.pd2-hero-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(1, 36, 138, 0.08);
}

.pd2-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.pd2-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.detail-section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px;
    text-align: left;
}

.detail-section-note {
    font-size: 15px;
    color: #5c6b7a;
    margin: 0 0 24px;
    max-width: 820px;
    line-height: 1.65;
}


/* Family grid */
.pd2-family-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd2-family-section .detail-section-title {
    text-align: center;
}

.pd2-family-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0px;
}

.pd2-family-card {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #e7edf3;
    border-bottom: 1px solid #e7edf3;
    background: #fff;
    transition: box-shadow 0.25s ease;
}

@media (min-width: 767px) {

    /* 每列最右：滿列為第 4、8… 格；最後一排不足 4 格時為該排最後一個 */
    .pd2-family-card:nth-child(4n),
    .pd2-family-card:last-child {
        border-right: none;
    }

    /* 最後一排不要底線（僅一排時整排即為最後一排） */
    .pd2-family-card:nth-child(4n + 1):nth-last-child(-n + 4),
    .pd2-family-card:nth-child(4n + 1):nth-last-child(-n + 4)~.pd2-family-card {
        border-bottom: none;
    }
}

.pd2-family-card:hover {
    box-shadow: 0 8px 22px rgba(18, 51, 88, 0.1);
}

.pd2-family-img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f5f7fa;
}

.pd2-family-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd2-family-card span:last-child {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
}

/* Check list */
.pd2-advantages {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd2-advantages ul {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 880px;
}

.pd2-advantages ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.65;
    color: #334155;
}

.pd2-advantages ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.pd2-advantages ul li:last-child{
    margin-bottom: 0;
}

/* Selector section */
.pd2-selector-section {
    padding: 40px 0 40px;
    background: linear-gradient(180deg, #f8fafc 3%, #fff 100%);
}

.pd2-series-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.pd2-series-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    border-radius: 10px;
    border: 2px solid #e7edf3;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pd2-series-tab-thumb {
    width: 52px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.pd2-series-tab-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd2-series-tab.is-active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(1, 36, 138, 0.12);
    color: var(--primary-color);
}

.pd2-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px 20px;
    padding: 18px 20px;
    margin-bottom: 24px;
    border-radius: 10px;
    background: #eef3f9;
    border: 1px solid #dde6ef;
}

.pd2-filter-field span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

.pd2-select {
    min-width: 140px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1e293b;
}

.pd2-filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    user-select: none;
}

.pd2-filter-toggle .layui-form-checkbox {
    margin-top: 0;
}

.pd2-filter-bar .detail-btn {
    padding: 11px 30px;
    cursor: pointer;
}

/* Spotlight */
.pd2-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #e7edf3;
    background: #fff;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.06);
}

.pd2-spotlight-visual {
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 16 / 11;
}

.pd2-spotlight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd2-spot-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 6px;
}

.pd2-spot-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 15px;
}

.pd2-spot-summary {
    font-size: 16px;
    color: #475569;
    margin: 0 0 18px;
    line-height: 1.55;
    display: inline-block;
}

.pd2-spot-dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin: 0 0 40px;
}

.pd2-spot-dl>div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    font-size: 14px;
    align-items: baseline;
}

.pd2-spot-dl dt {
    margin: 0;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
}

.pd2-spot-dl dd {
    margin: 0;
    color: #0f172a;
    font-weight: 500;
    font-size: 15px;
}

.pd2-spot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Variant list */
.pd2-variant-toolbar {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
}

.pd2-variant-list-wrap {
    border: 1px solid #e7edf3;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.pd2-variant-head {
    display: grid;
    grid-template-columns: 72px 1.2fr 1.5fr 100px;
    gap: 12px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e7edf3;
}

.pd2-variant-list {
    max-height: 420px;
    overflow-y: auto;
}

.pd2-variant-row {
    display: grid;
    grid-template-columns: 72px 1.2fr 1.5fr 100px;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s ease;
}

.pd2-variant-row:last-child {
    border-bottom: none;
}

.pd2-variant-row:hover {
    background: #f8fafc;
}

.pd2-variant-row.is-active {
    background: #eef5ff;
    box-shadow: inset 3px 0 0 var(--primary-color);
}

.pd2-variant-row--hidden {
    display: none !important;
}

.pd2-v-thumb {
    width: 56px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    background: #e2e8f0;
}

.pd2-v-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd2-v-name {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.pd2-v-sum {
    font-size: 14px;
    color: #64748b;
    line-height: 1.45;
}

.pd2-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: #eef5ff;
    color: var(--primary-color);
}

.pd2-list-footnote {
    font-size: 14px;
    color: #64748b;
    margin-top: 14px;
}

.pd2-empty-msg {
    margin: 0;
    padding: 28px 20px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* Video */
.pd2-video-section {
    padding: 20px 0 36px;
}

.pd2-video-shell {
    margin-top: 8px;
}

.pd2-video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0e7ef 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd2-video-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(1, 36, 138, 0.35);
    transition: transform 0.2s ease;
}

.pd2-video-play:hover {
    transform: scale(1.06);
}

.pd2-video-note {
    margin-top: 12px;
    font-size: 14px;
    color: #64748b;
}

/* Zigzag */
.pd2-zigzag {
    padding: 40px 0 45px 0;
    background: #fff;
}

.pd2-zigzag-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.pd2-zigzag-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.pd2-zigzag-row.is-reverse .pd2-zigzag-img {
    order: 2;
}

.pd2-zigzag-row.is-reverse .pd2-zigzag-text {
    order: 1;
}

.pd2-zigzag-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e7edf3;
}

.pd2-zigzag-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pd2-zigzag-text h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px;
}

.pd2-zigzag-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.pd2-zigzag-row.is-reverse {
    text-align: right;
}


.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    padding: 16px 30px;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.28s ease, border-color 0.28s ease;
}

/* Hover 與 ip-cta-btn 一致：由左向右覆蓋 + 文字色切換（無內層 span 時以雙層背景模擬 ::before wipe） */
.detail-btn.primary {
    border: 2px solid var(--primary-color);
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(to right, #fff 0%, #fff 100%), linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 100%);
    background-size: 0% 100%, 100% 100%;
    background-position: left center, left center;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease, color 0.28s ease, border-color 0.28s ease;
}

.detail-btn.primary:hover {
    background-size: 100% 100%, 100% 100%;
    color: var(--primary-color);
}

.detail-btn.outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    background-image: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 100%), linear-gradient(to right, #fff 0%, #fff 100%);
    background-size: 0% 100%, 100% 100%;
    background-position: left center, left center;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease, color 0.28s ease, border-color 0.28s ease;
}

.detail-btn.outline:hover {
    background-size: 100% 100%, 100% 100%;
    color: #fff;
}

/* Promo split */
.pd2-promo-split {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd2-promo-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e7edf3;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.pd2-promo-copy h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
}

.pd2-promo-copy p {
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.95;
}

.pd2-promo-card .detail-btn.primary {
    background-image: linear-gradient(to right, var(--secondary-color) 0%, var(--secondary-color) 100%), linear-gradient(to right, #fff 0%, #fff 100%);
    background-size: 0% 100%, 100% 100%;
    color: var(--primary-color);
    border-color: #fff;
}

.pd2-promo-card .detail-btn.primary:hover {
    background-size: 100% 100%, 100% 100%;
    color: #1a1a1a;
    border-color: var(--secondary-color);
}

.pd2-promo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
}

/* App strip */
.pd2-app-strip-section {
    padding: 40px 0 40px;
    background: var(--section-bg);
}

.pd2-app-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pd2-app-tile {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e7edf3;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pd2-app-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(18, 51, 88, 0.12);
}

.pd2-app-tile-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.pd2-app-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd2-app-tile span:last-child {
    display: block;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* More grid */
.pd2-more-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--section-bg);
}

.detail-related-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd2-more-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pd2-more-card {
    border: 1px solid #e7edf3;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding-bottom: 16px;
    transition: box-shadow 0.25s ease;
}

.pd2-more-card:hover {
    box-shadow: 0 8px 24px rgba(18, 51, 88, 0.1);
}

.pd2-more-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.pd2-more-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd2-more-card h4 {
    margin: 14px 16px 8px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.pd2-more-card p {
    margin: 0 16px 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd2-more-link {
    margin: 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}


.detail-cta-strip {
    padding-top: 40px;
    padding-bottom: 40px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
}

.detail-cta-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;

    color: #fff;
}

.detail-cta-inner h3 {
    font-size: 26px;
    font-weight: 600;
}

.detail-cta-inner p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    max-width: 560px;
    line-height: 1.55;
}

.detail-cta-btn.primary {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.detail-cta-btn.primary:hover {
    filter: none;
    background: var(--secondary-color);
    color: #1a1a1a;
    border-color: var(--secondary-color);
}

/* Layui 下拉：貼合本站色 */
.layui-form-select .layui-input {
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    border-color: #dce4ec;
}

.layui-form-select dl {
    border-radius: 8px;
    padding: 0;
}

.layui-input:focus,
.layui-textarea:focus {
    border-color: var(--primary-color) !important;
}

.layui-form-select dl dd.layui-this {
    background-color: rgba(1, 36, 138, 0.08);
    color: var(--primary-color);
}




.ip-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    transition: background-color .28s ease, transform .28s ease;
    z-index: 0;
    border: 2px solid #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ip-cta-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 15px;
}

.ip-cta-btn::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: all .3s ease;
    z-index: -1;
}
.ip-cta-btn:hover::before{
    transform: scaleX(1);
}

.ip-cta-btn:hover {
    /* background-color: #244b74;
    transform: translateY(-2px); */
    color: #fff;
}

@media (max-width: 992px) {
    .pd2-hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pd2-family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* 每列最右：滿列為第 2、8… 格；最後一排不足 2 格時為該排最後一個 */
    .pd2-family-card:nth-child(2n),
    .pd2-family-card:last-child {
        border-right: none;
    }

    /* 最後一排不要底線（僅一排時整排即為最後一排） */
    .pd2-family-card:nth-child(2n + 1):nth-last-child(-n + 2),
    .pd2-family-card:nth-child(2n + 1):nth-last-child(-n + 2)~.pd2-family-card {
        border-bottom: none;
    }

    .pd2-spotlight {
        grid-template-columns: 1fr;
    }

    .pd2-spot-dl {
        grid-template-columns: 1fr;
    }

    .pd2-variant-head {
        display: none;
    }

    .pd2-variant-row {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        row-gap: 8px;
    }

    .pd2-v-sum {
        grid-column: 1 / -1;
    }

    .pd2-v-act {
        grid-column: 2;
        justify-self: end;
        align-self: start;
        display: none;
    }

    .pd2-zigzag-row,
    .pd2-zigzag-row.is-reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pd2-zigzag-row.is-reverse .pd2-zigzag-img,
    .pd2-zigzag-row.is-reverse .pd2-zigzag-text {
        order: unset;
    }

    /* .pd2-zigzag-row.is-reverse{
        text-align: left;
    } */

    .pd2-promo-card {
        grid-template-columns: 1fr;
    }

    .pd2-app-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd2-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd2-more-section,.detail-related-section,.detail-cta-strip{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cta-wrapper{
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .pd2-hero {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .pd2-hero-title {
        margin: 8px 0 16px;
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .pd2-hero-copy>p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .detail-section-title {
        font-size: clamp(24px, 5vw, 30px);
    }

    .detail-section-note {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .pd2-family-section,
    .pd2-advantages,
    .pd2-selector-section,
    .pd2-zigzag {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .pd2-advantages{
        padding-top: 10px;
    }

    .pd2-family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0px;
    }

    .pd2-family-section .pd2-family-grid .pd2-family-card {
        border-radius: 0px;
    }

    .pd2-advantages ul li::before{
        width: 17px;
        height: 17px;
    }

    .pd2-advantages ul li{
        padding-left: 26px;
    }

    .pd2-advantages ul li:last-child{
        margin-bottom: 0;
    }

    .pd2-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
        gap: 12px;
    }

    .pd2-select {
        width: 100%;
        min-width: 0;
    }

    .pd2-spotlight {
        padding: 18px 16px;
    }

    .pd2-spot-title {
        font-size: 21px;
    }

    .pd2-variant-list {
        max-height: 50vh;
    }

    .detail-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .detail-cta-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 15px;
    }

    .detail-cta-inner h3{
        font-size: 20px;
    }

    .detail-cta-inner p{
        font-size: 13px;
    }
}

@media (max-width: 600px) {

    .pd2-series-tabs {
        flex-direction: column;
    }

    .pd2-series-tab {
        width: 100%;
    }

    .pd2-app-strip {
        grid-template-columns: 1fr;
    }

    .pd2-more-grid {
        grid-template-columns: 1fr;
    }
}