/**
 * Citrix Ready Page Custom Styles
 * Based on reference: https://www.veeedge.com/VeeEdge-Citrix/index.html
 */

/* === Hero Section === */
.citrix-hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.citrix-hero-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0 0 40px 0;
    text-align: center;
}

.citrix-cta {
    margin-top: 40px;
    text-align: center;
}

.citrix-cta .bringer-button {
    padding: 16px 48px;
    font-size: 16px;
}

/* === Citrix Brand Image === */
.citrix-brand-image {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    display: block;
}

/* === Version Compatibility Section === */
.citrix-compatibility-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 24px 0;
    text-align: center;
}

.compatibility-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0;
    text-align: center;
}

/* === Product Section === */
.citrix-product-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.citrix-product-section:last-of-type {
    border-bottom: none;
}

.product-model-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 40px 0;
}

/* === Specification Groups === */
.spec-group {
    margin-bottom: 12px;
}

.spec-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 12px 0;
}

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

.spec-details li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--bringer-s-text, #C5C7CE);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.spec-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bringer-s-accent, #6366F1);
    font-weight: bold;
}

/* === Product Image === */
.citrix-product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    min-height: 290px;
    transition: all 0.3s ease;
}

.citrix-product-image-wrapper:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.citrix-product-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .citrix-hero-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-model-title {
        font-size: 24px;
    }
    
    .citrix-product-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .citrix-hero-section {
        padding: 60px 0 40px;
    }
    
    .citrix-hero-title {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .compatibility-text {
        font-size: 16px;
    }
    
    .product-model-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .citrix-product-section {
        padding: 50px 0;
    }
    
    .citrix-product-image-wrapper {
        padding: 30px;
        min-height: 300px;
        margin-top: 40px;
    }
    
    .spec-group {
        margin-bottom: 28px;
    }
    
    .spec-heading {
        font-size: 16px;
    }
    
    .spec-details li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .citrix-hero-title {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .product-model-title {
        font-size: 20px;
    }
    
    .citrix-product-section {
        padding: 40px 0;
    }
    
    .citrix-product-image-wrapper {
        padding: 20px;
        min-height: 250px;
    }
    
    .citrix-cta .bringer-button {
        padding: 14px 36px;
        font-size: 15px;
    }
}

/* === Additional Spacing Utilities === */
.align-center {
    text-align: center;
}

/* === Vertical Alignment for Rows === */
.stg-valign-middle {
    align-items: center;
}
