.about-component {
    position: relative;
    padding: 0.5em;
    font-size: clamp(1rem, 0.481rem + 2.374vw, 2rem);
    max-width: 28em;

    /* Establecer maxima altura */
    max-height: 100%;
    overflow-y: hidden;
}

.about-component .window-component {
    position: absolute;
    top: 0;
    left: 0;
}

.about {
    color: var(--text);
    position: relative;
    pointer-events: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.3em;

    /* Establecer maxima altura */
    max-height: 100%;
    overflow-y: hidden;
}

.about > .title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.2em;
    width: fit-content;
}

.about > .title > .svg-container {
    height: 2em;
}

.about > .title h3 {
    font-family: Ubuntu;
    font-style: normal;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: none;
    margin: 0;
    padding: 0;
    text-align: start;
    align-self: center;
}

.about > .title:is(h4) {
    font-size: 0.85em;
}

.about p, .about li {
    font-family: Ubuntu;
    font-style: normal;
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: none;
    margin: 0;
    padding: 0;
    text-align: justify;
    width: fit-content;
}

.about > :not(.title) {
    margin-left: 0.5em;
}

.about a {
    pointer-events: all;
}

.about > .list {
    display: flex;
    flex: 1;
    pointer-events: all;
    flex-direction: column;
    gap: 0.25em;
    list-style: decimal inside;
}

.about > .list li {
    background: var(--background-200);
    border-radius: 0.75em;
    padding: 0.5em;
}

/* Estilos para la barra de scroll */
/* .about > .list::-webkit-scrollbar {
    width: 10px;
}

.about > .list::-webkit-scrollbar-track {
    background: rgba(29, 29, 29, 1);
    border-radius: 8px;
}

.about > .list::-webkit-scrollbar-thumb {
    background: rgba(105, 105, 105, 0.65); 
    border-radius: 8px; 
    border: 2px solid rgba(29, 29, 29, 1);
}

.about > .list::-webkit-scrollbar-thumb:hover {
    background: rgba(150, 150, 150, 0.75); 
} */