/* Home card action v1: title left + arrow-only action on one row. */
.xl-home .xl-tool-card .xl-tool-info {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    grid-template-areas: "copy link";
    align-items: center;
    column-gap: 10px;
    row-gap: 0;
}
.xl-home .xl-tool-card .xl-tool-info .xl-tool-copy {
    grid-area: copy;
    min-width: 0;
}
.xl-home .xl-tool-card .xl-tool-copy .xl-tool-title-action {
    height: auto;
    text-align: left;
}
.xl-home .xl-tool-card .xl-tool-copy .xl-tool-title-action > h3 {
    top: auto;
    transform: none;
    text-align: left;
}
.xl-home .xl-tool-card .xl-tool-copy p {
    text-align: left;
}
.xl-home .xl-tool-card .xl-tool-link.xl-tool-link-arrow {
    grid-area: link;
    justify-self: end;
    align-self: center;
    width: 40px;
    height: 36px;
    padding: 0;
    margin: 0;
    gap: 0;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.xl-home .xl-tool-card .xl-tool-link.xl-tool-link-arrow i {
    margin: 0;
    display: inline;
}
.xl-home .xl-tool-card .xl-tool-link.xl-tool-link-arrow.is-maintenance,
.xl-home .xl-tool-card.is-maintenance .xl-tool-link.xl-tool-link-arrow {
    color: rgba(190, 200, 215, 0.55);
    border-color: rgba(150, 160, 180, 0.3);
    background: rgba(60, 66, 80, 0.4);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(1);
}
.xl-home .xl-tool-card.is-maintenance:hover .xl-tool-link.xl-tool-link-arrow i {
    transform: none;
}
@media screen and (max-width: 414px) {
    .xl-home .xl-tool-card .xl-tool-info {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas: "copy link";
    }
    .xl-home .xl-tool-card .xl-tool-link.xl-tool-link-arrow {
        width: 36px;
        height: 32px;
        font-size: 16px;
    }
}
/* Portrait 9x16 layouts previously stacked a full-width text button; keep the compact arrow row there too. */
@media screen and (orientation: portrait) {
    .xl-home .xl-tool-card .xl-tool-info {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto;
        grid-template-areas: "copy link";
        align-items: center;
    }
    .xl-home .xl-tool-card .xl-tool-link.xl-tool-link-arrow {
        grid-area: link;
        justify-self: end;
        width: clamp(32px, 4.5vw, 40px);
        min-width: 0;
        height: clamp(28px, 4vw, 36px);
        min-height: 0;
        padding: 0;
        line-height: 1;
        font-size: clamp(14px, 2vw, 18px);
    }
    .xl-home .xl-tool-card .xl-tool-link.xl-tool-link-arrow i {
        display: inline;
    }
}
