/* Website Updates Page Specific Styles */

/* Base Spacing for Navbar */
.pattern-square {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .pattern-square {
        margin-top: 50px;
    }
}

@media (min-width: 992px) {
    .pattern-square {
        margin-top: 130px;
    }
}

/* Timeline Styling */
.update-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--bs-primary-bg-subtle, #e9ecef);
}

.update-item {
    position: relative;
    margin-bottom: 3rem;
}

.update-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--bs-primary, #8b3dff);
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px var(--bs-primary-bg-subtle, #e9ecef);
    z-index: 1;
}

.update-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.update-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--bs-primary, #8b3dff);
}

/* Typography */
.update-date {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: var(--bs-primary, #8b3dff); /* Original purple color */
    margin-bottom: 0.25rem;
}

.update-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000 !important; /* Pure black as requested */
    line-height: 1.4;
}
