.support-hero {
    background-image: url(/img/support.jpg);
    background-position: left center;
    background-size: 1024px 500px;
    background-repeat: no-repeat;
    min-height: 300px;
    position: relative;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.support-hero-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.support-statement {
    max-width: 800px;
    margin: 0 auto;
}

.support-statement .title {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-lg);
}

.support-statement p {
    font-size: 1.2rem;
    text-align: justify;
    line-height: 1.6;
}


.support-content {
    margin: 0 auto;
    padding: 2rem;
}

.recent-changes {
    display:none;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-changes h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    padding:0;

}

.changes-list {
    display: grid;
    gap: 1rem;
}

.change-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: background-color 0.2s;
}



.change-date {
    min-width: 120px;
    color: #888;
    font-size: 0.9rem;
}

.change-content {
    flex: 1;
}

.change-content a {
    /*color: #fff;*/
    /*text-decoration: none;*/
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.change-content i {
    color: #888;
}

.version {
    color: #BBB;
    font-size: 0.9rem;
    font-weight: 500;
}

.change-details {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.change-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.change-details li {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    padding: 0;
    position: relative;
}

.change-details li:before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 20px;
}

.product-docs {
    BBbackground: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border:none;
    XXborder: 1px solid rgba(255, 255, 255, 0.1);
}

.product-docs h3 {
    margin: 1rem 0;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 500;
}

.product-docs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-docs li {
    padding: 0.75rem 0;
    XXborder-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-docs li:last-child {
    XXborder-bottom: none;
}

.product-docs a {
    /*color: #fff;*/
    /*text-decoration: none;*/
    XXdisplay: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-docs a i {
    color: #fff;
    font-size: 20px;
    margin-right:10px;
}


.product-docs i {
    color: #888;
}

.doc-history {
    margin-top: 0.5rem;
}

.history-toggle {
    margin-top: 0.5rem;
}

.history-button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.history-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.history-content {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
}

.history-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-content li {
    margin-bottom: 0.75rem;
    padding: 0;
    border: none;
}

.history-content a {
    color: #888;
    font-size: 0.9rem;
}

.version-changes {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.version-changes li {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    position: relative;
}

.version-changes li:before {
    content: "•";
    position: absolute;
    left: -0.75rem;
    color: #666;
}

div.product-docs a img.product-logo {
    width: auto;
    height: 40px;
    max-width: 240px;
    margin-right:-2rem;
}

@media (max-width: 768px) {
    .support-content {
        padding: 1rem;
    }

    .recent-changes {
        padding: 1.5rem;
    }

    .change-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .change-date {
        min-width: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .support-header {
        padding: 2rem 1rem;
    }

    .support-header h1 {
        font-size: 2rem;
    }

    .history-content {
        padding-left: 1rem;
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .support-header {
        padding: 2rem 1rem;
    }

    .support-header h1 {
        font-size: 2rem;
    }

    .support-content {
        padding: 1rem;
    }
}

.visually-hidden {
    position: absolute;
    left: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}