/*
  Home page specific styles for SPX Graphics
*/

.boldName {
    font-family: 'UI-Bold', Arial, Helvetica, sans-serif;
}

.latest-changes {
    --lite: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1.0em;
    padding: 1.8em 2.6em;
    position: relative;
    border-radius: 0.5em;
    box-shadow: inset 0 0 1em rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(
        140deg,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-bottom: var(--lite);
    border-right: var(--lite)
}

.latest-changes::before {
    display: none;
}

.latest-changes::after {
    display: none;
}

.latest-changes-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 1em;
    /* margin-bottom: 1.2em; */
    border-bottom: 0px solid rgba(255, 255, 255, 0.06);
}

.latest-changes-brand {
    font-size: 1.0em;
    color: #fff;
    white-space: nowrap;
    text-transform: none;
    font-family: "UI-Regular", Arial, Helvetica, sans-serif;
}

.latest-changes-meta {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.1em;
    font-size: 1.0em;
    color: rgba(255, 255, 255, 1);
}

.latest-changes-version {
    font-size: 1.2em;
    font-family: "UI-Light", Arial, Helvetica, sans-serif;
    /* color: #b4ffc5; */
}

.latest-changes-updated {
    margin-bottom: 0.5em;
    font-size: 0.6em;
    font-family: "UI-Light", Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.3);
    width: fit-content;
    padding: 0.2em 1em;
    border-radius: 30em;
}


.latest-changes-content {
    position: relative;
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.6);
    font-family: "UI-Regular", Arial, Helvetica, sans-serif;
    /* line-height: 1.2; */
}

.latest-changes-content > p {
    margin: 0 0 1.5em 0;
    color: rgba(255, 255, 255, 0.9);
    border-left: 0.3em solid green;
    padding: 0.2em 0.6em;
}


.latest-changes-content h1,
.latest-changes-content h2,
.latest-changes-content h3 {
    margin: 1em 0 0.4em 0;
    color: #fff;
    font-size: 1.2em;
    text-shadow: none;
}

.latest-changes-content h1:first-of-type,
.latest-changes-content h2:first-of-type,
.latest-changes-content h3:first-of-type {
    margin-top: 0;
}

.latest-changes-content ul {
    margin: 0;
    padding-left: 0.0em;
    list-style: none;
}

.latest-changes-content li {
    position: relative;
    padding-left: 1.4em;
    margin-bottom: 0.4em;
}

.latest-changes-content li::before {
    content: '';
    position: absolute;
    width: 0.45em;
    height: 0.45em;
    left: 0.0em;
    top: 0.3em;
    border-radius: 0.1em;
    background-color: #1b8f3d;
    /* box-shadow: 0 0 4px rgba(87, 214, 65, 0.5); */
}

.latest-changes-content a {
    color: #48d12d !important;
    text-decoration: none;
}

.latest-changes-content a:hover {
    color: #d8b30c !important;
}



