/* One Upcoming Deadlines Widget */
.oe-deadlines-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.oe-deadlines-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.oe-deadlines-title {
    margin: 0;
    flex: 1;
}

.oe-deadlines-see-all {
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Deadlines List */
.oe-deadlines-list {
    /* Spacing controlled by item margin */
}

/* Deadline Item */
.oe-deadline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Date Badge (Circle) */
.oe-deadline-date {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
}

/* Deadline Content */
.oe-deadline-content {
    flex: 1;
    min-width: 0;
}

.oe-deadline-content-title {
    margin: 0;
}

.oe-deadline-content-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.oe-deadline-content-title a:hover {
    opacity: 0.8;
}

.oe-deadline-content-meta {
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .oe-deadlines-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .oe-deadline-date {
        width: 100px;
        height: 100px;
    }
    
    .oe-deadline-item {
        gap: 16px;
    }
}
