/* ==========================================================================
   WORKREAP PREMIUM OVERHAUL - ELITE EDITION
   ========================================================================== */

/* 1. SECTION CARD - Adding soft depth and cleaner spacing */
.wr-asidebox,
.wr-asidebox-content {
    padding: 5px 45px !important;
    background: #ffffff;
    border-radius: 12px;
    border: 0px !important /*1px solid #f0f0f0 !important*/;
    box-shadow: 0 /*0 10px 30px rgba(0, 0, 0, 0.03)*/;
    margin-bottom: 40px;
}

/* 2. THE TIMELINE - Refined thin line with gradient fade */
.wr-themeaccordion {
    position: relative;
    padding: 20px 0 !important;
    margin: 0;
    list-style: none;
}

.wr-themeaccordion::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3863a0 0%, #e0e0e0 20%, #e0e0e0 90%, transparent 100%);
}

/* 3. ITEM WRAPPER */
.wr-themeaccordion_item {
    position: relative;
    padding-left: 45px !important;
    margin-bottom: 25px !important;
    display: block !important;
    width: 100% !important;
    transition: all 0.3s ease;
}

.wr-themeaccordion_item:last-child {
    margin-bottom: 0 !important;
}

/* 4. CONTENT BOX - Modern glass/border hybrid */
.wr-themeaccordion_content {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 25px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.wr-themeaccordion_item:hover .wr-themeaccordion_content {
    border-color: #3863a0;
    transform: translateX(5px);
    background: #fff;
}

/* 5. TIMELINE NODE - Custom "Pulsing" look */
.wr-themeaccordion_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px; /* Aligned to the center of the heading */
    width: 14px;
    height: 14px;
    background: #3863a0;
    border: 3px solid #fff;
    border-radius: 50% !important;
    box-shadow: 0 0 0 2px #3863a0;
    z-index: 2;
}

/* 6. TYPOGRAPHY - High Contrast */
.wr-themeaccordion_content h6 {
    font-size: 20px;
    color: #111;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

/* 7. META INFO - Better spacing and color balance */
.wt-field-options {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.wt-field-options li {
    font-size: 13px;
    color: #777;
    font-weight: 500;
    text-transform: capitalize;
}

.wt-field-options li i {
    color: #3863a0;
    margin-right: 6px;
    font-size: 15px;
    opacity: 0.9;
}

/* 8. DESCRIPTION */
.wr-description-container p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.wr-themeaccordion .wr-full-description {
    display: inline !important;
    color: #555;
}

/* 9. UTILITY: REMOVE CLUTTER */
.wr-read-more-link, .wr-showmore-button, .wr-showmore-li {
    display: none !important;
}

/* ==========================================================================
   MOBILE OPTIMIZATION
   ========================================================================== */
@media (max-width: 768px) {
    .wr-asidebox, .wr-asidebox-content {
        padding: 30px 20px !important;
    }
   
    .wr-themeaccordion_content {
        padding: 20px;
    }
   
    .wt-field-options {
        gap: 10px;
    }
}

