/* Axis Tools Elementor Widgets Styles */

/* Text SlideUp Widget */
.axistools-slideup-wrapper {
    position: relative;
    display: block;
    min-height: 100px;
}

.axistools-slideup-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    overflow: hidden;
}

.axistools-slideup-group:last-child {
    margin-bottom: 0 !important;
}

/* This is the animated container - hidden by default via JS inline styles */
.axistools-slideup-inner {
    display: block;
    position: relative;
    transform: translateY(100%);
    opacity: 0;
    transition: none;
    will-change: transform, opacity;
}

/* When animated class is added - only set name/fill-mode, duration comes from JS inline style */
.axistools-slideup-inner.animated {
    animation-name: slideUpFade;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

/* Line 1 - Icon + Text */
.axistools-slideup-line1 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.axistools-slideup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.axistools-slideup-icon svg {
    display: block;
}

.axistools-slideup-icon-text {
    display: inline-block;
}

/* Line 2 - Description */
.axistools-slideup-line2 {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.axistools-slideup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Slide Up Animation */
@keyframes slideUpFade {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    15% {
        transform: translateY(0);
        opacity: 1;
    }

    85% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* ── Post Category Widget ──────────────────────────────────────────────────── */
.axistools-cat-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.axistools-cat-layout-list {
    flex-direction: column;
    align-items: flex-start;
}

.axistools-cat-badge {
    display: inline-block;
    background-color: #2563EB;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.axistools-cat-badge a {
    color: inherit;
    text-decoration: none;
}

.axistools-cat-badge a:hover {
    text-decoration: none;
}

.axistools-cat-sep {
    display: inline-block;
    color: inherit;
    opacity: 0.6;
}

.axistools-cat-empty {
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}

/* ── Post Read Time Widget ─────────────────────────────────────────────────── */
.axistools-readtime-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.axistools-readtime-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    flex-shrink: 0;
}

.axistools-readtime-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.axistools-readtime-text {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.axistools-readtime-prefix {
    opacity: 0.8;
}

.axistools-readtime-number {
    font-weight: 600;
}

/* ── Author All Posts Widget ─────────────────────────────────────────────── */
.axistools-author-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.axistools-author-post-item {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.axistools-author-post-fallback {
    display: block;
}

.axistools-author-post-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.axistools-author-post-title a {
    color: inherit;
    text-decoration: none;
}

.axistools-author-post-title a:hover {
    text-decoration: underline;
}

.axistools-author-post-meta {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.axistools-author-post-template-placeholder {
    padding: 14px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
}

.axistools-author-posts-empty {
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .axistools-author-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .axistools-author-posts-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.axistools-author-posts-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.axistools-author-posts-pagination .page-numbers {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.axistools-author-posts-pagination .page-numbers li {
    margin: 0;
    padding: 0;
}

.axistools-author-posts-pagination a.page-numbers,
.axistools-author-posts-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.axistools-author-posts-pagination a.page-numbers:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
}

.axistools-author-posts-pagination span.page-numbers.current {
    background-color: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
    font-weight: 600;
}

.axistools-author-posts-pagination a.prev.page-numbers,
.axistools-author-posts-pagination a.next.page-numbers {
    min-width: 40px;
}

.axistools-author-posts-pagination span.page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
    font-weight: 400;
}

.axistools-author-posts-pagination span.page-numbers.dots:hover {
    background: transparent;
}

@media (max-width: 640px) {
    .axistools-author-posts-pagination {
        margin-top: 20px;
    }

    .axistools-author-posts-pagination a.page-numbers,
    .axistools-author-posts-pagination span.page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 0 6px;
        font-size: 13px;
    }
}

/* ── Process Timeline Widget ────────────────────────────────────────────────── */

.axistools-ptl-wrapper {
    position: relative;
    width: 100%;
    min-height: 307px;
    overflow: visible;
}

.axistools-ptl-wrapper,
.axistools-ptl-wrapper * {
    box-sizing: border-box;
}

.axistools-ptl-stage {
    position: relative;
    width: 100%;
    min-height: 307px;
}

.axistools-ptl-stage--tablet,
.axistools-ptl-stage--mobile {
    display: none;
}

.axistools-ptl-svg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 307px;
    overflow: visible;
    pointer-events: none;
}

.axistools-ptl-path {
    vector-effect: non-scaling-stroke;
}

.axistools-ptl-hinge-dot {
    position: absolute;
    top: var(--ptl-hinge-y, 50%);
    left: var(--ptl-hinge-x, 50%);
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ptl-line-color, #11122E);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.axistools-ptl-steps {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 307px;
}

.axistools-ptl-step {
    position: absolute;
    inset: 0;
    min-height: 307px;
}

.axistools-ptl-label,
.axistools-ptl-dot-wrap,
.axistools-ptl-desc-block {
    position: absolute;
    z-index: 2;
}

.axistools-ptl-label {
    left: var(--ptl-main-x);
    width: clamp(150px, 22vw, 260px);
    transform: translateX(-14px);
}

.axistools-ptl-label--top {
    top: auto;
    bottom: calc(183px + var(--ptl-label-gap, 24px));
}

.axistools-ptl-label--bottom {
    top: calc(124px + var(--ptl-label-gap, 24px));
}

.axistools-ptl-dot-wrap {
    top: 124px;
    left: var(--ptl-main-x);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.axistools-ptl-desc-block {
    left: var(--ptl-desc-x);
    width: clamp(190px, 25vw, 285px);
    transform: translateX(-1px);
}

.axistools-ptl-desc-block--top {
    top: 0;
    height: var(--ptl-step-hinge-y, 124px);
}

.axistools-ptl-desc-block--bottom {
    top: var(--ptl-step-hinge-y, 148px);
    height: 122px;
}

.axistools-ptl-vline {
    display: block;
    width: 0;
    border-left: 1px dashed #c7cad6;
}

.axistools-ptl-desc-block--top .axistools-ptl-vline {
    height: 108px;
}

.axistools-ptl-desc-block--bottom .axistools-ptl-vline {
    height: 98px;
}

.axistools-ptl-dot {
    width: max(var(--ptl-dot-size, 28px), 26px);
    height: max(var(--ptl-dot-size, 28px), 26px);
    border: 0;
    border-radius: 50%;
    background: rgba(17, 18, 46, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.axistools-ptl-dot-inner {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--ptl-inactive-dot, #11122E);
    transition: background 0.25s ease;
}

.axistools-ptl-dot--active,
.axistools-ptl-dot--done {
    background: rgba(37, 99, 235, 0.24);
}

.axistools-ptl-dot--active .axistools-ptl-dot-inner,
.axistools-ptl-dot--done .axistools-ptl-dot-inner {
    background: var(--ptl-active-dot, #145DFF);
}

@keyframes ptlDotBlink {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.22);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    }
}

.axistools-ptl-dot--blink {
    animation: ptlDotBlink 1.55s ease-in-out infinite;
}

.axistools-ptl-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.16;
    margin: 0 0 7px;
    padding: 0;
    color: var(--ptl-inactive-title, #145DFF);
    letter-spacing: 0;
}

.axistools-ptl-num {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--ptl-inactive-num, #11122E);
    letter-spacing: 0;
}

.axistools-ptl-desc {
    position: absolute;
    left: var(--ptl-content-gap, 18px);
    width: min(var(--ptl-desc-width, 240px), calc(100vw - 72px));
    max-width: var(--ptl-desc-width, 240px);
    margin: 0;
    padding: 0;
    color: var(--ptl-desc-color, #4b5568);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
}

.axistools-ptl-desc-block--top .axistools-ptl-desc {
    top: auto;
    bottom: max(0px, calc(var(--ptl-desc-gap, 33px) + var(--ptl-desc-gap-offset, 0px)));
}

.axistools-ptl-desc-block--bottom .axistools-ptl-desc {
    top: max(0px, calc(var(--ptl-desc-gap, 33px) + var(--ptl-desc-gap-offset, 0px)));
}

.axistools-ptl-step--active .axistools-ptl-title,
.axistools-ptl-step--done .axistools-ptl-title {
    color: var(--ptl-active-title, #145DFF);
}

.axistools-ptl-step--active .axistools-ptl-num,
.axistools-ptl-step--done .axistools-ptl-num {
    color: var(--ptl-active-num, #11122E);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .axistools-ptl-stage--desktop {
        display: none;
    }

    .axistools-ptl-stage--tablet {
        display: block;
    }

    .axistools-ptl-stage--mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .axistools-ptl-wrapper,
    .axistools-ptl-stage,
    .axistools-ptl-steps {
        min-height: 0;
    }

    .axistools-ptl-stage--desktop {
        display: none;
    }

    .axistools-ptl-stage--tablet {
        display: none;
    }

    .axistools-ptl-stage--mobile {
        display: block;
    }

    .axistools-ptl-svg {
        display: none;
    }

    .axistools-ptl-hinge-dot {
        display: none;
    }

    .axistools-ptl-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 8px;
    }

    .axistools-ptl-step {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        padding: 0 0 30px 46px;
    }

    .axistools-ptl-step:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 28px;
        bottom: 8px;
        left: 13px;
        border-left: 1px dashed #c7cad6;
    }

    .axistools-ptl-label--top,
    .axistools-ptl-label--bottom {
        top: auto;
        bottom: auto;
        margin-top: var(--ptl-tablet-label-offset, 0px);
    }

    .axistools-ptl-desc-block--top,
    .axistools-ptl-desc-block--bottom {
        top: auto;
        height: auto;
    }

    .axistools-ptl-label,
    .axistools-ptl-desc-block {
        position: relative;
        left: auto;
        z-index: 2;
        width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px));
        max-width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px));
        height: auto;
        transform: none;
    }

    .axistools-ptl-label {
        order: 1;
    }

    .axistools-ptl-desc-block {
        order: 2;
        margin-top: max(0px, calc(var(--ptl-label-gap, 24px) + var(--ptl-desc-gap-offset-mobile, var(--ptl-desc-gap-offset-tablet, 0px)) + var(--ptl-tablet-content-offset, 0px)));
    }

    .axistools-ptl-dot-wrap {
        position: absolute;
        top: calc(2px + var(--ptl-tablet-label-offset, 0px));
        left: var(--ptl-tablet-dot-offset, 0px);
        z-index: 3;
        transform: none;
    }

    .axistools-ptl-vline {
        display: none;
    }

    .axistools-ptl-desc {
        position: static;
        width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px));
        max-width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px));
        font-size: 13px;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }

    .axistools-ptl-title {
        font-size: 17px;
        margin-bottom: 6px;
    }
}

/* ── Process Timeline: Scroll-Based Mode (GSAP ScrollTrigger) ─────────────── */

.axistools-ptl-scroll-spacer {
    display: none;
    height: 0;
    width: 100%;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .axistools-ptl-scroll-section {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .axistools-ptl-scroll-pin {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(var(--ptl-scroll-pin-vh, 70) * 1vh);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .axistools-ptl-scroll-pin .axistools-ptl-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .axistools-ptl--scroll-based.axistools-ptl-wrapper {
        min-height: 307px;
        overflow: hidden;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage {
        min-height: 307px;
        overflow: hidden;
    }

    .axistools-ptl--scroll-based .axistools-ptl-steps,
    .axistools-ptl--scroll-based .axistools-ptl-step {
        overflow: visible;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage-viewport {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 307px;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 12px;
    }

    .axistools-ptl--scroll-based .axistools-ptl-carousel-track {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 307px;
        overflow: visible;
        will-change: transform;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--desktop .axistools-ptl-svg {
        transition: none;
        display: block;
        width: 100%;
        max-width: 100%;
        height: 307px;
        overflow: visible;
    }

    .axistools-ptl--scroll-based .axistools-ptl-steps {
        width: 100%;
        max-width: 100%;
    }

    .axistools-ptl--scroll-based .axistools-ptl-step {
        transition: opacity var(--ptl-scroll-transition-ms, 620ms) ease, visibility var(--ptl-scroll-transition-ms, 620ms) ease, max-height var(--ptl-scroll-transition-ms, 620ms) ease, padding var(--ptl-scroll-transition-ms, 620ms) ease;
    }

    .axistools-ptl--scroll-based .axistools-ptl-label,
    .axistools-ptl--scroll-based .axistools-ptl-dot-wrap,
    .axistools-ptl--scroll-based .axistools-ptl-desc-block,
    .axistools-ptl--scroll-based .axistools-ptl-hinge-dot {
        transition: opacity var(--ptl-scroll-transition-ms, 620ms) ease, visibility var(--ptl-scroll-transition-ms, 620ms) ease;
    }

    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-step--scroll-exit-left,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-step--scroll-future,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-hinge-dot--scroll-exit-left,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-hinge-dot--scroll-future {
        visibility: visible;
        pointer-events: none;
    }

    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-path--base,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-path--progress {
        vector-effect: non-scaling-stroke;
    }

    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-path--progress {
        pointer-events: none;
    }

    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-step,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-hinge-dot,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-label,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-dot-wrap,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-desc-block,
    .axistools-ptl-scroll-section[data-ptl-gsap-active="yes"] .axistools-ptl-path {
        transition: none;
    }

    .axistools-ptl--scroll-based .axistools-ptl-label,
    .axistools-ptl--scroll-based .axistools-ptl-desc-block,
    .axistools-ptl--scroll-based .axistools-ptl-dot-wrap {
        z-index: 3;
    }

    .axistools-ptl--scroll-based .axistools-ptl-title,
    .axistools-ptl--scroll-based .axistools-ptl-num,
    .axistools-ptl--scroll-based .axistools-ptl-desc {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--desktop .axistools-ptl-label {
        width: min(clamp(180px, 40vw, 440px), calc(100% - var(--ptl-main-x, 0%) - 16px));
        max-width: min(clamp(180px, 40vw, 440px), calc(100% - var(--ptl-main-x, 0%) - 16px));
        overflow: visible;
        box-sizing: border-box;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--desktop .axistools-ptl-desc-block {
        width: min(clamp(200px, 44vw, 480px), calc(100% - var(--ptl-desc-x, 0%) - 16px));
        max-width: min(clamp(200px, 44vw, 480px), calc(100% - var(--ptl-desc-x, 0%) - 16px));
        overflow: visible;
        box-sizing: border-box;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--desktop .axistools-ptl-desc-block--bottom {
        min-height: 122px;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--desktop .axistools-ptl-desc {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .axistools-ptl--scroll-based .axistools-ptl-step,
    .axistools-ptl--scroll-based .axistools-ptl-hinge-dot {
        transition: opacity var(--ptl-scroll-transition-ms, 620ms) ease, visibility var(--ptl-scroll-transition-ms, 620ms) ease, max-height var(--ptl-scroll-transition-ms, 620ms) ease, padding var(--ptl-scroll-transition-ms, 620ms) ease;
    }

    .axistools-ptl--scroll-based .axistools-ptl-step--scroll-in-window {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .axistools-ptl--scroll-based .axistools-ptl-step--scroll-exit-left,
    .axistools-ptl--scroll-based .axistools-ptl-step--scroll-future {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .axistools-ptl--scroll-based .axistools-ptl-hinge-dot--scroll-in-window {
        opacity: 1;
        visibility: visible;
    }

    .axistools-ptl--scroll-based .axistools-ptl-hinge-dot--scroll-exit-left,
    .axistools-ptl--scroll-based .axistools-ptl-hinge-dot--scroll-future {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 1024px) {
    .axistools-ptl-scroll-section,
    .axistools-ptl-scroll-section--static {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        overflow-x: clip !important;
    }

    .axistools-ptl-scroll-pin {
        position: static !important;
        display: block !important;
        min-height: 0 !important;
        height: auto !important;
        overflow: visible !important;
        transform: none !important;
    }

    .axistools-ptl-scroll-pin .axistools-ptl-wrapper,
    .axistools-ptl--scroll-based.axistools-ptl-wrapper,
    .axistools-ptl--scroll-based .axistools-ptl-stage {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        overflow: visible !important;
        transform: none !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--desktop,
    .axistools-ptl--scroll-based .axistools-ptl-stage--tablet {
        display: none !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage--mobile {
        display: block !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-stage-viewport,
    .axistools-ptl--scroll-based .axistools-ptl-carousel-track {
        display: block !important;
        overflow: visible !important;
        min-height: 0 !important;
        height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        transform: none !important;
        padding: 0 !important;
        will-change: auto !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-svg,
    .axistools-ptl--scroll-based .axistools-ptl-hinge-dot {
        display: none !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        min-height: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 8px !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-step,
    .axistools-ptl--scroll-based .axistools-ptl-step--scroll-exit-left,
    .axistools-ptl--scroll-based .axistools-ptl-step--scroll-future,
    .axistools-ptl--scroll-based .axistools-ptl-step--scroll-in-window {
        position: relative !important;
        inset: auto !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        padding: 0 0 30px 46px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: none !important;
        transform: none !important;
        overflow: visible !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-step:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 28px;
        bottom: 8px;
        left: 13px;
        border-left: 1px dashed #c7cad6;
    }

    .axistools-ptl--scroll-based .axistools-ptl-label--top,
    .axistools-ptl--scroll-based .axistools-ptl-label--bottom {
        top: auto;
        bottom: auto;
        margin-top: var(--ptl-tablet-label-offset, 0px);
    }

    .axistools-ptl--scroll-based .axistools-ptl-desc-block--top,
    .axistools-ptl--scroll-based .axistools-ptl-desc-block--bottom {
        top: auto;
        height: auto;
    }

    .axistools-ptl--scroll-based .axistools-ptl-label,
    .axistools-ptl--scroll-based .axistools-ptl-desc-block {
        position: relative;
        left: auto;
        width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px));
        max-width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px));
        height: auto;
        transform: none;
        overflow: visible;
    }

    .axistools-ptl--scroll-based .axistools-ptl-label {
        order: 1;
    }

    .axistools-ptl--scroll-based .axistools-ptl-desc-block {
        order: 2;
        margin-top: max(0px, calc(var(--ptl-label-gap, 24px) + var(--ptl-desc-gap-offset-tablet, 0px) + var(--ptl-tablet-content-offset, 0px)));
    }

    .axistools-ptl--scroll-based .axistools-ptl-dot-wrap {
        position: absolute;
        top: calc(2px + var(--ptl-tablet-label-offset, 0px));
        left: var(--ptl-tablet-dot-offset, 0px);
        z-index: 3;
        transform: none;
    }

    .axistools-ptl--scroll-based .axistools-ptl-vline {
        display: none !important;
    }

    .axistools-ptl--scroll-based .axistools-ptl-desc {
        position: static !important;
        width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px)) !important;
        max-width: min(100%, var(--ptl-desc-width, 240px), calc(100% - 24px)) !important;
        font-size: 13px;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }

    .axistools-ptl--scroll-based .axistools-ptl-path--progress {
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }

    .axistools-ptl-scroll-spacer {
        display: none !important;
        height: 0 !important;
    }
}

@media (max-width: 767px) {
    .axistools-ptl--scroll-based .axistools-ptl-desc-block {
        margin-top: max(0px, calc(var(--ptl-label-gap, 24px) + var(--ptl-desc-gap-offset-mobile, var(--ptl-desc-gap-offset-tablet, 0px)) + var(--ptl-tablet-content-offset, 0px)));
    }
}


.axistools-hpt-title {
    word-break: break-word;
}

.axistools-hpt-highlight {
    display: inline;
}


/* ── ACF Button ──────────────────────────────────────────────────────────── */
.axistools-acf-btn-wrap {
    display: flex;
    flex-wrap: wrap;
}

.axistools-acf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
}


/* ── Checklist Progress Widget ─────────────────────────────────────────── */
.axistools-clp-card {
    box-sizing: border-box;
    width: 100%;
}

/* Title */
.axistools-clp-title {
    margin: 0 0 16px;
    padding: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

/* Divider */
.axistools-clp-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 16px;
}

.axistools-clp-divider-bottom {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 16px 0;
}

/* List */
.axistools-clp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Single item row */
.axistools-clp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

/* Icon wrapper – sized via Elementor control */
.axistools-clp-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.axistools-clp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.axistools-clp-icon--checked {
    color: #2563EB;
}

.axistools-clp-icon--unchecked {
    color: #9ca3af;
}

/* Ensure font icons (i tags) always inherit wrapper color */
.axistools-clp-icon i {
    color: inherit;
    font-size: inherit;
    display: block;
}

/* Item label */
.axistools-clp-label {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.4;
}

/* Progress bar wrapper */
.axistools-clp-progressbar-wrap {
    margin-top: 20px;
}

/* Track */
.axistools-clp-bar-track {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 99px;
    overflow: hidden;
}

/* Fill */
.axistools-clp-bar-fill {
    height: 100%;
    background-color: #2563EB;
    border-radius: 99px;
    min-width: 0;
    max-width: 100%;
    transform-origin: left center;
    animation: clp-bar-grow 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes clp-bar-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Progress label */
.axistools-clp-progress-label {
    margin: 8px 0 0;
    padding: 0;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Author & Reviewer Widget
   ───────────────────────────────────────────────────────────────────────────── */

.at-author-reviewer-container {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

/* Top section - Author and Reviewer */
.at-author-reviewer-top {
    display: flex;
    align-items: flex-start;
    min-height: 160px;
    padding: 24px;
    gap: 0;
}

.at-author-info-section {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
}

.at-author-info-section:not(:last-child) {
    padding-right: 24px;
}

/* Divider between sections */
.at-author-reviewer-divider {
    width: 1px;
    height: 100%;
    background-color: #e5e7eb;
    margin: 0 24px;
    flex-shrink: 0;
    min-height: 100px;
}

/* Avatar styling */
.at-author-info-avatar {
    min-width: 25px;
    min-height: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Content section */
.at-author-info-content-area {
    display: flex;
    gap: 10px;
}

.at-author-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: space-evenly;
}

/* Label (Written By / Reviewed By) */
.at-author-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

/* Name */
.at-author-info-name {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
}

.at-author-info-name a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.at-author-info-name a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Email */
.at-author-info-email {
    font-size: 13px;
    color: #6b7280;
    margin: 2px 0;
    padding: 0;
}

/* Bio */
.at-author-info-bio {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 6px;
    padding: 0;
}

.at-author-info-bio p {
    margin: 0;
    padding: 0;
}

/* Empty state */
.at-author-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    padding: 40px;
    text-align: center;
}

/* Bottom section - Date and Reading time */
.at-author-reviewer-meta {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    background-color: #e8eef5;
    border-top: 1px solid #e5e7eb;
    align-items: center;
}

.at-author-reviewer-date,
.at-author-reviewer-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    padding: 0;
}

.at-author-reviewer-date svg,
.at-author-reviewer-read-time svg {
    flex-shrink: 0;
    color: #9ca3af;
    width: 16px;
    height: 16px;
    display: block;
}

.at-author-reviewer-date .elementor-icon,
.at-author-reviewer-read-time .elementor-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.at-author-reviewer-date .elementor-icon svg,
.at-author-reviewer-read-time .elementor-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .at-author-reviewer-top {
        flex-direction: column;
        min-height: auto;
        gap: 0;
        padding: 16px;
    }

    .at-author-info-section {
        padding-right: 0 !important;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e7eb;
    }

    .at-author-info-section:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .at-author-reviewer-divider {
        display: none;
    }

    .at-author-info-avatar {
        min-width: 30px;
        min-height: 30px;
    }

    .at-author-info-name {
        font-size: 14px;
    }

    .at-author-reviewer-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 12px 16px;
    }
}

/* ── See What LLM Thinks Widget ────────────────────────────────────────────── */
.at-external-ai-sharing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.at-external-ai-sharing__title {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.at-external-ai-sharing__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.at-external-ai-sharing__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Button styles by size */
.at-external-ai-sharing--sm .at-external-ai-sharing__button {
    padding: 8px 12px;
    font-size: 12px;
}

.at-external-ai-sharing--lg .at-external-ai-sharing__button {
    padding: 12px 20px;
    font-size: 16px;
}

/* Button styles by shape */
.at-external-ai-sharing--pill .at-external-ai-sharing__button {
    border-radius: 50px;
}

.at-external-ai-sharing--square .at-external-ai-sharing__button {
    border-radius: 0;
}

.at-external-ai-sharing--rounded .at-external-ai-sharing__button {
    border-radius: 6px;
}

/* Button hover state */
.at-external-ai-sharing__button:hover {
    background-color: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Button icon */
.at-external-ai-sharing__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor;
    transition: all 0.3s ease;
}

.at-external-ai-sharing__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease;
}

/* Button label */
.at-external-ai-sharing__label {
    display: inline-block;
}

/* Platform-specific icon colors */
.at-external-ai-sharing__button--chatgpt .at-external-ai-sharing__icon {
    color: #10A37F;
}

.at-external-ai-sharing__button--chatgpt .at-external-ai-sharing__icon svg {
    stroke: #10A37F;
}

.at-external-ai-sharing__button--perplexity .at-external-ai-sharing__icon {
    color: #0066FF;
}

.at-external-ai-sharing__button--perplexity .at-external-ai-sharing__icon svg {
    stroke: #0066FF;
}

.at-external-ai-sharing__button--copilot .at-external-ai-sharing__icon {
    color: #00A4EF;
}

.at-external-ai-sharing__button--copilot .at-external-ai-sharing__icon svg {
    stroke: #00A4EF;
}

.at-external-ai-sharing__button--google_ai .at-external-ai-sharing__icon {
    color: #4285F4;
}

.at-external-ai-sharing__button--google_ai .at-external-ai-sharing__icon svg {
    fill: #4285F4;
}

/* Icon hover states */
.at-external-ai-sharing__button:hover .at-external-ai-sharing__icon svg {
    transition: all 0.3s ease;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .at-external-ai-sharing__buttons {
        flex-direction: column;
        gap: 8px;
    }

    .at-external-ai-sharing__button {
        width: 100%;
        justify-content: center;
    }

    .at-external-ai-sharing--sm .at-external-ai-sharing__button {
        padding: 8px;
    }

    .at-external-ai-sharing__label {
        display: none;
    }
}

/* ── Year Timeline Widget ───────────────────────────────────────────────── */
.axistools-yt-wrapper {
    --yt-line-color: #d7dfed;
    --yt-line-thickness: 2px;
    --yt-dot-color: #2d68ea;
    --yt-dot-size: 12px;
    --yt-dot-horizontal: 50%;
    --yt-dot-outline-color: #ffffff;
    --yt-dot-outline-width: 2px;
    --yt-column-gap: 24px;
    --yt-content-offset: 14px;
    --yt-content-width: 180px;

    position: relative;
    width: 100%;
    overflow: visible;
}

.axistools-yt-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: var(--yt-line-thickness);
    background-color: var(--yt-line-color);
    z-index: 0;
    pointer-events: none;
}

.axistools-yt-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: var(--yt-column-gap);
}

.axistools-yt-node {
    flex: 1;
    min-width: 0;
    display: grid;
    min-height: 230px;
    grid-template-rows: 1fr 24px 1fr;
}

.axistools-yt-slot--top,
.axistools-yt-slot--bottom {
    display: flex;
    align-items: flex-start;
}

.axistools-yt-slot--middle {
    position: relative;
}

.axistools-yt-slot--top {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: var(--yt-content-offset);
}

.axistools-yt-slot--bottom {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: var(--yt-content-offset);
}

.axistools-yt-content {
    max-width: var(--yt-content-width);
}

.axistools-yt-year {
    margin: 0;
    padding: 0;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;
    color: #131735;
}

.axistools-yt-desc {
    margin: 8px 0 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    color: #4f5d73;
}

.axistools-yt-dot {
    position: absolute;
    top: 50%;
    /* left: clamp(
        calc(var(--yt-dot-size) / 2 + var(--yt-dot-outline-width)),
        var(--yt-dot-horizontal),
        calc(100% - (var(--yt-dot-size) / 2 + var(--yt-dot-outline-width)))
    ); */
    left: 0;
    transform: translate(-50%, -50%);
    width: var(--yt-dot-size);
    height: var(--yt-dot-size);
    border-radius: 50%;
    background-color: var(--yt-dot-color);
    box-shadow: 0 0 0 var(--yt-dot-outline-width) var(--yt-dot-outline-color);
}

.axistools-yt-dot::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--yt-dot-outline-width));
    border-radius: 50%;
    border: var(--yt-dot-outline-width) solid var(--yt-dot-outline-color);
    opacity: 0.9;
    animation: axistools-yt-dot-pulse 1.8s ease-out infinite;
    pointer-events: none;
}

@keyframes axistools-yt-dot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    70% {
        transform: scale(1.9);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .axistools-yt-dot::after {
        animation: none;
    }
}

@media (max-width: 767px) {
    .axistools-yt-track {
        display: none;
    }

    .axistools-yt-grid {
        flex-direction: column;
        gap: 16px;
        position: relative;
    }

    .axistools-yt-grid::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 8px;
        bottom: 8px;
        width: var(--yt-line-thickness);
        background-color: var(--yt-line-color);
    }

    .axistools-yt-node {
        display: grid;
        grid-template-columns: 22px 1fr;
        grid-template-rows: auto;
        column-gap: 10px;
        min-height: unset;
    }

    .axistools-yt-slot--middle {
        grid-column: 1;
        grid-row: 1;
        position: relative;
    }

    .axistools-yt-dot {
        left: 6px;
    }

    .axistools-yt-slot--top,
    .axistools-yt-slot--bottom {
        grid-column: 2;
        grid-row: 1;
        padding: 0;
        align-items: flex-start;
    }

    .axistools-yt-content {
        max-width: 100%;
    }

    .axistools-yt-year {
        font-size: 28px;
    }

    .axistools-yt-desc {
        font-size: 14px;
        margin-top: 6px;
    }
}

/* ── Steps Process Widget ───────────────────────────────────────────────────── */

/* Outer wrapper — holds the CSS custom properties for grid columns */
.axistools-stp-wrapper {
    width: 100%;
    /* Default column counts (overridden by inline style from PHP) */
    --stp-cols-desktop: 4;
    --stp-cols-tablet: 2;
    --stp-cols-mobile: 1;
}

/* Steps grid — equal-width columns per breakpoint */
.axistools-stp-steps {
    display: grid;
    grid-template-columns: repeat(var(--stp-cols-desktop), 1fr);
    align-items: flex-start;
    width: 100%;
}

/* Individual step cell */
.axistools-stp-step {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ── Icon + connector row ── */
.axistools-stp-icon-row {
    position: relative;
    /* connectors are absolute children */
    display: flex;
    align-items: center;
    justify-content: center;
    /* default; Elementor responsive selector overrides this */
    width: 100%;
    margin-bottom: 18px;
}

/* Icon wrap: the ONLY flex child — justify-content on the row moves this */
.axistools-stp-icon-wrap {
    position: relative;
    z-index: 1;
    /* sits above the absolutely-positioned connector lines */
    display: flex;
    flex-shrink: 0;
}

/* Blue rounded-square icon box */
.axistools-stp-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: #3B5BDB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.axistools-stp-icon-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 91, 219, 0.35);
}

.axistools-stp-icon-box i,
.axistools-stp-icon-box svg {
    font-size: 24px;
    color: #ffffff;
    fill: #ffffff;
    display: block;
}

/* ── Connector dashed line ── */
/* Connectors are absolutely positioned — they are NOT flex children.
   Left half spans 0-50%, right half spans 50-100% of the row.
   This lets justify-content on .axistools-stp-icon-row freely move the icon. */
.axistools-stp-connector {
    position: absolute;
    top: 50%;
    height: 0;
    width: 50%;
    border-top-width: 2px;
    border-top-color: #B0B8D1;
}

/* Left connector half */
.axistools-stp-connector:first-child {
    left: 0;
}

/* Right connector half */
.axistools-stp-connector:last-child {
    right: 0;
}

.axistools-stp-connector--dashed {
    border-top-style: dashed;
}

.axistools-stp-connector--dotted {
    border-top-style: dotted;
}

.axistools-stp-connector--solid {
    border-top-style: solid;
}

/* Hidden connector: invisible but still present so spacing is preserved */
.axistools-stp-connector--hidden {
    border-top-color: transparent !important;
    pointer-events: none;
}

/* ── Text content ── */
.axistools-stp-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 12px;
}

/* Step label (e.g. "Step-1") */
.axistools-stp-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3B5BDB;
    line-height: 1.2;
    margin: 0;
}

/* Step title */
.axistools-stp-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    margin: 0;
    padding: 0;
}

/* Step description */
.axistools-stp-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
    padding: 0;
}

/* ── Tablet breakpoint ── */
@media (max-width: 1024px) and (min-width: 768px) {
    .axistools-stp-steps {
        grid-template-columns: repeat(var(--stp-cols-tablet), 1fr);
    }

    /* Hide connectors when wrapping to multiple rows on tablet */
    .axistools-stp-steps:not([style*="--stp-cols-tablet:1"]) .axistools-stp-connector {
        display: none;
    }
}

/* ── Mobile breakpoint ── */
@media (max-width: 767px) {
    .axistools-stp-steps {
        grid-template-columns: repeat(var(--stp-cols-mobile), 1fr);
        gap: 32px;
    }

    .axistools-stp-step {
        flex: none;
        width: 100%;
    }

    .axistools-stp-icon-row {
        margin-bottom: 14px;
    }

    /* Hide horizontal connectors on mobile (steps stack vertically in grid) */
    .axistools-stp-connector {
        display: none;
    }

    .axistools-stp-content {
        padding: 0;
    }
}


/* ── Phases Timeline Widget ───────────────────────────────────────────────── */

.axistools-phtl-wrapper {
    position: relative;
    width: 100%;
    font-family: inherit;
    padding: 40px 0;
}

.axistools-phtl-timeline {
    position: relative;
    width: 100%;
    /* max-width is controlled by the "Timeline Max Width" Elementor control */
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Center vertical line ── */
.axistools-phtl-line-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    /* border-left carries the visual width */
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Base for both inactive and active line segments */
.axistools-phtl-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    border-left-width: var(--phtl-line-width, 2px);
    border-left-style: var(--phtl-line-style, solid);
}

.axistools-phtl-line--inactive {
    border-left-color: var(--phtl-line-color, #e5e7eb);
    height: 100%;
    z-index: 0;
}

.axistools-phtl-line--active {
    border-left-color: var(--phtl-progress-color, #8b5cf6);
    /* style is always solid for the progress fill so it looks continuous */
    border-left-style: solid;
    height: 0;
    z-index: 1;
    transition: height 0.3s ease-out;
}

/* ── Phases list ── */
.axistools-phtl-phases {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--phtl-phase-gap, 40px);
}

/* ── Individual phase ── */
.axistools-phtl-phase {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 80px;
    /* No overflow:hidden here — the dot is absolutely positioned at left:50%
       and needs to be fully visible without being clipped */
}

/* ── LEFT phases ── */
.axistools-phtl-phase--left {
    flex-direction: row-reverse;
}

.axistools-phtl-phase--left .axistools-phtl-content {
    /* flex:none so the width calc is respected — prevents content from growing
       and crossing the center line when text is long.
       row-reverse places this on the RIGHT side of the center line
       (odd indices: Solution Design, QA & Enablement, etc.) */
    flex: none;
    width: calc(50% - var(--phtl-content-spacing, 20px) - var(--phtl-dot-size, 16px) / 2);
    max-width: calc(50% - var(--phtl-content-spacing, 20px) - var(--phtl-dot-size, 16px) / 2);
    text-align: left;
    padding-left: var(--phtl-content-spacing, 20px);
    overflow: hidden;
    box-sizing: border-box;
}

/* ── RIGHT phases ── */
.axistools-phtl-phase--right {
    flex-direction: row;
}

.axistools-phtl-phase--right .axistools-phtl-content {
    /* flex:none so the width calc is respected — prevents content from growing
       and crossing the center line when text is long.
       NO margin-left:auto — this class places content on the LEFT side of
       the center line (even indices: Discovery, Build, Go-live, etc.) */
    flex: none;
    width: calc(50% - var(--phtl-content-spacing, 20px) - var(--phtl-dot-size, 16px) / 2);
    max-width: calc(50% - var(--phtl-content-spacing, 20px) - var(--phtl-dot-size, 16px) / 2);
    text-align: right;
    padding-right: var(--phtl-content-spacing, 20px);
    overflow: hidden;
    box-sizing: border-box;
}

/* ── Dot styles ── */
.axistools-phtl-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
    width: var(--phtl-dot-size, 16px);
    height: var(--phtl-dot-size, 16px);
    border-radius: 50%;
    border: 2px solid var(--phtl-inactive-dot, #d1d5db);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.axistools-phtl-dot-inner {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: var(--phtl-inactive-dot, #d1d5db);
    transition: background 0.3s ease;
}

/* Active dot state */
.axistools-phtl-dot--active {
    border-color: var(--phtl-active-dot, #8b5cf6);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.axistools-phtl-dot--active .axistools-phtl-dot-inner {
    background: var(--phtl-active-dot, #8b5cf6);
}

/* Completed dot state */
.axistools-phtl-dot--completed {
    border-color: var(--phtl-active-dot, #8b5cf6);
}

.axistools-phtl-dot--completed .axistools-phtl-dot-inner {
    background: var(--phtl-active-dot, #8b5cf6);
}

/* ── Blinking animation ── */
@keyframes phtlDotBlink {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.35);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(139, 92, 246, 0);
    }
}

.axistools-phtl-dot--blink {
    animation: phtlDotBlink var(--phtl-blink-speed, 1.5s) ease-in-out infinite;
}

/* ── Content container (base — overridden per side above) ── */
.axistools-phtl-content {
    overflow: hidden;
    min-width: 0;
    box-sizing: border-box;
}

/* ── Phase title ── */
.axistools-phtl-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--phtl-title-color, #1f2937);
    margin: 0 0 8px;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.axistools-phtl-phase--active .axistools-phtl-title,
.axistools-phtl-phase--completed .axistools-phtl-title {
    color: var(--phtl-active-title-color, #1f2937);
}

/* ── Phase description ── */
.axistools-phtl-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--phtl-desc-color, #6b7280);
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .axistools-phtl-wrapper {
        padding: 20px 16px;
    }

    .axistools-phtl-timeline {
        padding: 0;
        /* No padding — phases start at left:0 of the timeline,
                           so dot at left:20px aligns with line-center at left:20px */
        max-width: 100%;
    }

    /* Line: 20px from the left edge of the timeline */
    .axistools-phtl-line-center {
        left: 20px;
        transform: translateX(-50%);
    }

    /* Each phase: column layout, padded left to clear the dot/line */
    .axistools-phtl-phase,
    .axistools-phtl-phase--left,
    .axistools-phtl-phase--right {
        flex-direction: column !important;
        align-items: flex-start;
        position: relative;
        padding-left: 44px;
        /* 20px line pos + 8px half-dot + 16px text gap */
        min-height: unset;
    }

    /* Dot: absolutely positioned ON the line (same left as line-center) */
    .axistools-phtl-dot {
        position: absolute;
        left: 20px;
        /* matches .axistools-phtl-line-center */
        top: 4px;
        /* aligns with the first text line */
        transform: translateX(-50%);
        margin: 0;
    }

    /* Content: full width within the padded phase, always left-aligned */
    .axistools-phtl-phase--left .axistools-phtl-content,
    .axistools-phtl-phase--right .axistools-phtl-content {
        flex: 1 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        text-align: left !important;
        margin: 0 !important;
        overflow: visible;
    }
}


/* ── Comparison Table Widget ────────────────────────────────────────────────── */

.axistools-ct-wrapper {
    width: 100%;
    overflow-x: auto;
    /* horizontal scroll on small screens */
    overflow-y: visible;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: block;
}

.axistools-ct-table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
}

/* ── Table Header ── */
.axistools-ct-header-row {
    background-color: var(--ct-header-bg, #ffffff);
    border-bottom: 2px solid var(--ct-border-color, #e5e5e5);
}

.axistools-ct-header-cell {
    padding: 16px;
    /* default; overridden by Elementor header_cell_padding control */
    text-align: left;
    color: var(--ct-header-text, #000000);
    font-weight: 700;
    border-right: 1px solid var(--ct-border-color, #e5e5e5);
    word-break: break-word;
    font-size: 15px;
}

.axistools-ct-header-cell:last-child {
    border-right: none;
}

/* ── Table Body Rows ── */
.axistools-ct-row {
    background-color: #ffffff;
    border-bottom: 1px solid var(--ct-border-color, #e5e5e5);
}

.axistools-ct-row:last-child {
    border-bottom: none;
}

.axistools-ct-row--odd {
    background-color: #ffffff;
}

.axistools-ct-row--even {
    background-color: #ffffff;
}

/* ── Table Cells ── */
.axistools-ct-cell {
    padding: 16px;
    /* default; overridden by Elementor row_cell_padding control */
    text-align: left;
    color: var(--ct-cell-text, #333333);
    border-right: 1px solid var(--ct-border-color, #e5e5e5);
    word-break: break-word;
    vertical-align: top;
    font-size: 14px;
}

.axistools-ct-cell:last-child {
    border-right: none;
}

/* ── Column 1 (Category) ── */
.axistools-ct-col-1 {
    font-weight: 600;
    background-color: #ffffff !important;
}

/* Header cells are always white regardless of column tint */
.axistools-ct-header-row .axistools-ct-col-2,
.axistools-ct-header-row .axistools-ct-col-3 {
    background-color: var(--ct-header-bg, #ffffff) !important;
}

/* ── Column 2 (DIY Setup) ── */
.axistools-ct-col-2 {
    background-color: var(--ct-col-2-bg, #fce4e4) !important;
}

.axistools-ct-row--odd .axistools-ct-col-2 {
    background-color: var(--ct-col-2-bg, #fce4e4) !important;
}

.axistools-ct-row--even .axistools-ct-col-2 {
    background-color: var(--ct-col-2-bg, #fce4e4) !important;
}

/* ── Column 3 (Our Implementation) ── */
.axistools-ct-col-3 {
    background-color: var(--ct-col-3-bg, #e4e9f7) !important;
}

.axistools-ct-row--odd .axistools-ct-col-3 {
    background-color: var(--ct-col-3-bg, #e4e9f7) !important;
}

.axistools-ct-row--even .axistools-ct-col-3 {
    background-color: var(--ct-col-3-bg, #e4e9f7) !important;
}

/* ── Mobile Responsive (≤768px) ── */
@media (max-width: 768px) {
    .axistools-ct-wrapper {
        border-radius: 8px;
        -webkit-overflow-scrolling: touch;
        /* smooth scroll on iOS */
    }

    .axistools-ct-table {
        /* Prevent table from collapsing narrower than content on mobile */
        min-width: 480px;
    }

    .axistools-ct-header-cell,
    .axistools-ct-cell {
        /* Padding and alignment are per-breakpoint via Elementor responsive controls.
           Only enforce font size reduction here as a baseline. */
        font-size: 13px;
        word-break: break-word;
    }
}


/* ══════════════════════════════════════════════════════════════════════════════
   Pain Points Cards Widget
   ══════════════════════════════════════════════════════════════════════════════ */

/* Outer wrapper — holds CSS grid column custom properties */
.axistools-ppc-wrapper {
    width: 100%;
    --ppc-cols-desktop: 3;
    --ppc-cols-tablet: 2;
    --ppc-cols-mobile: 1;
}

/* Cards grid */
.axistools-ppc-grid {
    display: grid;
    grid-template-columns: repeat(var(--ppc-cols-desktop), 1fr);
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

/* ── Single card ── */
.axistools-ppc-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition:
        background-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
    min-width: 0;
}

/* Non-featured card hover → apply the same dark style */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover {
    background-color: #1a2340;
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26, 35, 64, 0.35);
}

/* ── Featured (dark) card ── */
.axistools-ppc-card--featured {
    background-color: #1a2340;
    box-shadow: 0 4px 20px rgba(26, 35, 64, 0.35);
}

.axistools-ppc-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(26, 35, 64, 0.45);
}

/* ── Top row: icon-box + metric + metric-subtitle, all horizontal ── */
.axistools-ppc-top-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* Icon background box */
.axistools-ppc-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: #f0f2f8;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

/* On hover of a non-featured card, the icon box bg flips too */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Featured card icon box bg */
.axistools-ppc-card--featured .axistools-ppc-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
}

.axistools-ppc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.axistools-ppc-icon i,
.axistools-ppc-icon svg {
    font-size: 22px;
    color: #6b7eb8;
    fill: #6b7eb8;
    display: block;
    transition: color 0.3s ease, fill 0.3s ease;
}

/* Non-featured normal state: slightly muted */
.axistools-ppc-card:not(.axistools-ppc-card--featured) .axistools-ppc-icon i,
.axistools-ppc-card:not(.axistools-ppc-card--featured) .axistools-ppc-icon svg {
    color: #6b7eb8;
    fill: #6b7eb8;
}

/* Non-featured hover: brighten icon to match featured */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-icon i,
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-icon svg {
    color: #8fa8c8;
    fill: #8fa8c8;
}

/* Featured card icon */
.axistools-ppc-card--featured .axistools-ppc-icon i,
.axistools-ppc-card--featured .axistools-ppc-icon svg {
    color: #8fa8c8;
    fill: #8fa8c8;
}

/* ── Metric group: holds metric number + subtitle side by side ── */
.axistools-ppc-metric-group {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

/* ── Metric (big number/text) ── */
.axistools-ppc-metric {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #1a2340;
    margin: 0;
    padding: 0;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* Non-featured hover */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-metric {
    color: #ffffff;
}

.axistools-ppc-card--featured .axistools-ppc-metric {
    color: #ffffff;
}

/* ── Metric subtitle (short text next to the metric) ── */
.axistools-ppc-metric-sub {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
    padding: 0;
    min-width: 0;
    transition: color 0.3s ease;
}

/* Non-featured hover */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-metric-sub {
    color: #a0aec0;
}

.axistools-ppc-card--featured .axistools-ppc-metric-sub {
    color: #a0aec0;
}

/* ── Title ── */
.axistools-ppc-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a2340;
    margin: 0 0 12px;
    padding: 0;
    transition: color 0.3s ease;
}

/* Non-featured hover */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-title {
    color: #ffffff;
}

.axistools-ppc-card--featured .axistools-ppc-title {
    color: #ffffff;
}

/* ── Description ── */
.axistools-ppc-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0 0 24px;
    padding: 0;
    flex: 1;
    /* pushes tag to the bottom */
    transition: color 0.3s ease;
}

/* Non-featured hover */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-desc {
    color: #a0aec0;
}

.axistools-ppc-card--featured .axistools-ppc-desc {
    color: #a0aec0;
}

/* ── Bottom tag ── */
.axistools-ppc-tag {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #4b5563;
    border-left: 3px solid #3b5bdb;
    padding-left: 10px;
    margin-top: auto;
    transition: color 0.3s ease, border-left-color 0.3s ease;
}

/* Non-featured hover */
.axistools-ppc-card:not(.axistools-ppc-card--featured):hover .axistools-ppc-tag {
    color: #8fa8c8;
    border-left-color: #4a6fa5;
}

.axistools-ppc-card--featured .axistools-ppc-tag {
    color: #8fa8c8;
    border-left-color: #4a6fa5;
}

/* ── Tablet breakpoint ── */
@media (max-width: 1024px) and (min-width: 768px) {
    .axistools-ppc-grid {
        grid-template-columns: repeat(var(--ppc-cols-tablet), 1fr);
    }
}

/* ── Mobile breakpoint ── */
@media (max-width: 767px) {
    .axistools-ppc-grid {
        grid-template-columns: repeat(var(--ppc-cols-mobile), 1fr);
        gap: 16px;
    }

    .axistools-ppc-card {
        padding: 24px 20px 20px;
    }

    .axistools-ppc-metric {
        font-size: 34px;
    }

    .axistools-ppc-title {
        font-size: 16px;
    }
}


/* ══════════════════════════════════════════════════════════════════════════════
   Feature Check Table Widget  (.axisfct-*)
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Outer scroll container (added in render as .axisfct-scroll) ── */
.axisfct-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid #e2e5ed;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ── Wrapper (the white bg card — sits inside the scroll container) ── */
.axisfct-wrapper {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;           /* clips border-radius on the table */
    min-width: 480px;           /* table never collapses below this; scroll container handles overflow */
}

/* ── Table ── */
.axisfct-table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
    table-layout: fixed;
}

/* ── Header row — light bg, bottom separator border ── */
.axisfct-header-row {
    background-color: #f8f9fb;
    border-bottom: 2px solid #e2e5ed;
}

/* ── Header cells ── */
.axisfct-header-cell {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    white-space: nowrap;
}

/* Feature column header — left-aligned, takes ~42% of table width */
.axisfct-feature-header {
    text-align: left;
    font-weight: 700;
    color: #111827;
    width: 42%;
}

/* Featured column header text (e.g. "Axis") — blue */
.axisfct-header-cell--featured {
    color: #3b5bdb;
}

/* ── Body rows — alternating grey/white, NO explicit border lines ── */
.axisfct-row {
    background-color: #f4f5f8;
    border-bottom: none;
    transition: background-color 0.15s ease;
}

/* Even rows = white */
.axisfct-row--alt {
    background-color: #ffffff;
}

/* Last row: no bottom border on the row or any of its cells */
.axisfct-row:last-child,
.axisfct-row:last-child td {
    border-bottom: none !important;
}

/* Hover: slightly deeper blue tint */
.axisfct-row:hover {
    background-color: #eef1fb;
}

/* ── Feature name cell (left column) ── */
.axisfct-feature-cell {
    padding: 14px 20px;
    font-size: 13.5px;
    font-weight: 400;
    color: #374151;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    line-height: 1.5;
}

/* ── Icon cells (check/cross columns) ── */
.axisfct-icon-cell {
    padding: 14px 20px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

/* ── Check icon — circle outline with tick, blue ── */
.axisfct-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3b5bdb;
    line-height: 1;
}

.axisfct-check svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    stroke-width: 2;
}

/* ── Cross icon — × in salmon-red ── */
.axisfct-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    line-height: 1;
}

.axisfct-cross svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    stroke-width: 2.5;
}

/* ── None / dash ── */
.axisfct-none {
    color: #d1d5db;
    font-size: 16px;
    font-weight: 300;
}

/* ── Tablet: 768px – 1024px ── */
@media (max-width: 1024px) and (min-width: 768px) {
    .axisfct-header-cell {
        padding: 14px 16px;
        font-size: 13px;
    }

    .axisfct-feature-cell {
        padding: 13px 16px;
        font-size: 13px;
    }

    .axisfct-icon-cell {
        padding: 13px 16px;
    }

    .axisfct-check svg {
        width: 20px;
        height: 20px;
    }

    .axisfct-cross svg {
        width: 15px;
        height: 15px;
    }
}

/* ── Mobile: ≤ 767px ── */
@media (max-width: 767px) {
    .axisfct-scroll {
        border-radius: 8px;
    }

    .axisfct-wrapper {
        min-width: 420px;
        border-radius: 8px;
    }

    .axisfct-header-cell {
        padding: 12px 12px;
        font-size: 12px;
    }

    .axisfct-feature-header {
        width: 38%;
    }

    .axisfct-feature-cell {
        padding: 12px 12px;
        font-size: 12.5px;
    }

    .axisfct-icon-cell {
        padding: 12px 10px;
    }

    .axisfct-check svg {
        width: 18px;
        height: 18px;
    }

    .axisfct-cross svg {
        width: 13px;
        height: 13px;
    }
}

/* ── Very small screens: ≤ 480px ── */
@media (max-width: 480px) {
    .axisfct-wrapper {
        min-width: 380px;
    }

    .axisfct-header-cell {
        padding: 10px 8px;
        font-size: 11.5px;
    }

    .axisfct-feature-cell {
        padding: 10px 8px;
        font-size: 12px;
    }

    .axisfct-icon-cell {
        padding: 10px 8px;
    }
}


/* ══════════════════════════════════════════════════════════════════════════════
   LLM Share Widget
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Buttons wrap ── */
.at-llm-share__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

/* ── Button ── */
.at-llm-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
    flex-shrink: 0;
}

.at-llm-share__btn:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-1px);
    color: #374151;
}

/* ── Icon ── */
.at-llm-share__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.at-llm-share__icon svg {
    width: 16px;
    height: 16px;
}

/* ── Label (when show_labels="yes") ── */
.at-llm-share__btn--has-label {
    width: auto;
    gap: 6px;
    padding: 0 12px;
}

.at-llm-share__label {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
