#about {
    background-color: var(--wp--preset--color--base);
    position: relative;
    /* clip-path: ellipse(100% 100% at 30% 0%); */

    & .content {
        display: grid;
        gap: 3rem;
        position: relative;
        z-index: 1;

        & .container {
            z-index: 4;
            display: grid;
            grid-template-rows: 1fr auto;
            box-shadow: var(--wp--preset--shadow--post-shadow-light);
            overflow: hidden;
            aspect-ratio: 4 / 3;
            position: relative;

            & .post__overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 4rem;
                box-shadow: rgba(0, 0, 0, .15) 0 -2px 0 inset;
                z-index: 2;
                transition: transform .3s ease .3s;
            }

            & .slideshow--wrapper {
                width: 100%;
                height: 100%;
                overflow: hidden;
                color: var(--wp--preset--color--contrast);
                position: relative;
                z-index: 5;

                & .slideshow {
                    height: 100%;
                    display: flex;

                    & .about-item {
                        opacity: 1;

                        &.active {
                            & .about-content {
                                opacity: 1;
                                filter: blur(0);
                                transition: opacity .3s ease-in, transform .3s ease-in, filter .3s ease-in;
                            }
                        }

                        & .about-content {
                            opacity: 0;
                            filter: blur(4px);
                            overflow: hidden;
                            transition: opacity .3s ease-in, transform .3s ease-in, filter .3s ease-in;

                            & .size-full {
                                width: 100%;
                                height: auto;
                            }
                        }
                    }
                }
            }

            & .slideshow-bullets-wrapper {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: .5rem;
                z-index: 5;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;

                & .btn-pagination {
                    background-color: transparent;
                    color: var(--wp--preset--color--base);
                    opacity: .5;
                    transition: opacity .3s ease, transform .3s ease;

                    &:hover {
                        background-color: transparent;
                        opacity: 1;
                    }
                }

                & .slideshow-bullets {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 20px;

                    & .bullet {
                        width: 13px;
                        height: 13px;
                        border-radius: 50%;
                        background-color: transparent;
                        border: 2px solid var(--wp--preset--color--base);
                        transition: background-color .3s ease;

                        &.active {
                            background-color: var(--wp--preset--color--base);
                        }
                    }
                }
            }
        }

        & .data {
            &>*:not(p:has(.span-pretext), .about-container) {
                margin-bottom: 1rem;
            }

            & .about-container {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
                gap: 1rem;
                margin-top: 3rem;

                & .about-item {
                    display: flex;
                    gap: 1rem;
                    align-items: center;
                    padding: 1rem;
                    background-color: var(--wp--preset--color--tertiary);
                    box-shadow: #1d224f09 0 -2px 0 inset, #1d224f09 0px 54px 55px, #1d224f04 0px -12px 30px, #1d224f04 0px 4px 6px, #1d224f04 0px 12px 13px, #1d224f04 0px -3px 5px;
                    border: 1px solid rgba(0, 0, 0, 0.06);
                    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
                    position: relative;
                    z-index: 1;

                    /* Resplandor interno dinámico */
                    &::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        background: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(255, 255, 255, 0.75), transparent 50%);
                        opacity: 0;
                        transition: opacity 0.4s ease;
                        pointer-events: none;
                        z-index: -1;
                        border-radius: inherit;
                        corner-shape: inherit;
                    }

                    /* Borde dinámico que sigue al ratón */
                    &::after {
                        content: "";
                        position: absolute;
                        inset: -1px;
                        background: radial-gradient(300px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(0, 162, 255, 0.8), transparent 50%);
                        opacity: 0;
                        transition: opacity 0.4s ease;
                        pointer-events: none;
                        z-index: 1;
                        border-radius: inherit;
                        corner-shape: inherit;
                        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                        -webkit-mask-composite: xor;
                        mask-composite: exclude;
                        padding: 1px;
                    }

                    &:hover::before,
                    &:hover::after {
                        opacity: 1;
                    }

                    &:hover {
                        box-shadow: var(--wp--preset--shadow--post-shadow-light-hover);
                    }

                    & img {
                        filter: invert(20%) sepia(92%) saturate(1469%) hue-rotate(199deg) brightness(105%) contrast(119%);
                    }

                    & .about-item-label {
                        line-height: 1.3;
                        font-size: 1.2rem;
                        color: #285386;
                    }
                }
            }
        }
    }
}

@media (width < 600px) {
    #about {
        clip-path: ellipse(200% 100% at 60% 0%);
    }
}

@media (width >=1024px) {
    #about .content {
        grid-template-columns: clamp(300px, 128px + 16.8vw, 450px) 1fr;
        align-items: start;
    }
}