/* Story Modal Styling */
.bw-modal-content {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(10, 14, 23, 0.15);
    overflow: hidden;
}

.bw-modal-content .modal-header {
    background: linear-gradient(135deg, var(--bw-accent) 0%, #e65a0e 100%);
    color: #fff;
    padding: 24px 30px;
}

.bw-modal-content .modal-header .modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.bw-modal-content .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.bw-modal-content .modal-header .btn-close:hover {
    opacity: 1;
}

.bw-modal-content .modal-body {
    padding: 30px;
    background: #fff;
}

.bw-highlight-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    background: rgba(10, 14, 23, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bw-highlight-item:last-child {
    margin-bottom: 0;
}

.bw-highlight-item:hover {
    background: rgba(249, 95, 14, 0.03);
    border-color: rgba(249, 95, 14, 0.15);
    transform: translateX(5px);
}

.bw-highlight-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--bw-accent) 0%, #e65a0e 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(249, 95, 14, 0.25);
}

.bw-highlight-item h6 {
    color: var(--bw-ink);
    font-size: 1.05rem;
    margin: 0;
}

.bw-highlight-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modal backdrop */
.modal-backdrop.show {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 767.98px) {
    .bw-modal-content .modal-header {
        padding: 20px;
    }

    .bw-modal-content .modal-body {
        padding: 20px;
    }

    .bw-highlight-item {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .bw-highlight-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }
}