/**
 * In Short Summary Styles
 */

/* ============================================
   IN SHORT SUMMARY CONTAINER
   ============================================ */
.in-short-summary {
    margin: 2em 0 3em 0;
    animation: fadeInUp 0.6s ease;
}

.in-short-container {
    padding: 24px 28px;
    background: #ffffff;
    border: 2px solid #e91e63;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.08);
    position: relative;
    /* transition: all 0.3s ease; */
}

[data-theme="dark"] .in-short-container {
    background: #1e1e1e;
    border-color: #f06292;
    box-shadow: 0 2px 8px rgba(240, 98, 146, 0.15);
}

/* ============================================
   TITLE
   ============================================ */
.in-short-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .in-short-title {
    color: #ffffff;
}

/* ============================================
   POINTS LIST
   ============================================ */
.in-short-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.in-short-point {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.in-short-point:last-child {
    margin-bottom: 0;
}

/* Custom Bullet */
.in-short-point::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #e91e63;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

[data-theme="dark"] .in-short-point {
    color: #e0e0e0;
}

[data-theme="dark"] .in-short-point::before {
    color: #f06292;
}

/* ============================================
   ALTERNATIVE STYLES
   ============================================ */

/* Gradient Border Style */
.in-short-summary.style-gradient .in-short-container {
    border: 3px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

[data-theme="dark"] .in-short-summary.style-gradient .in-short-container {
    background-image:
        linear-gradient(#1e1e1e, #1e1e1e),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Numbered Points Style */
.in-short-summary.style-numbered .in-short-points {
    counter-reset: in-short-counter;
}

.in-short-summary.style-numbered .in-short-point::before {
    counter-increment: in-short-counter;
    content: counter(in-short-counter);
    width: 24px;
    height: 24px;
    background: #e91e63;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .in-short-container {
        padding: 20px 20px;
        border-radius: 12px;
    }

    .in-short-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .in-short-point {
        font-size: 15px;
        margin-bottom: 14px;
        padding-left: 24px;
    }

    .in-short-point::before {
        font-size: 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .in-short-summary {
        page-break-inside: avoid;
        border: 2px solid #000;
        padding: 20px;
    }

    .in-short-point::before {
        color: #000;
    }
}