.app-highlight-container .highlight {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-highlight-container .highlight img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.app-highlight-container .cta-buttons {
    display: flex;
    justify-content: space-between;
    padding: 6px;
    gap: 20px;
}

.app-highlight-container .cta-button {
    max-width: 50%;
}

.rotating-highlight {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* height: 200px; */
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin-bottom: 16px;  
}

.rotating-highlight-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.rotating-highlight-slide {
    flex: 0 0 100%;
    text-align: center;
}

.rotating-highlight-slide .highlight img {
    width: auto;         
    /* height: 175px;         */
    max-width: 100%;      
    object-fit: contain; 
    border-radius: 10px;  
    margin: auto;         
    display: block;       
}

.rotating-highlight-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}