/* ==================== INFO DESC WIDGET - COMPLETE ==================== */

.info-desc-widget {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

.info-desc-tile {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-desc-tile-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

/* ==================== ICON STYLES ==================== */

.info-desc-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-desc-icon-defaultType {
    margin-top: 6px;
}

.info-desc-icon-success,
.info-desc-icon-error {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid;
}

.info-desc-icon-success {
    border-color: #16b364;
}

.info-desc-icon-error {
    border-color: #dc2626;
}

.info-desc-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #424242;
}

.info-desc-check-icon {
    font-size: 10px;
    font-weight: bold;
    color: #16b364;
    line-height: 1;
}

.info-desc-close-icon {
    font-size: 10px;
    font-weight: bold;
    color: #dc2626;
    line-height: 1;
}

.info-desc-icon-spacing {
    width: 12px;
    flex-shrink: 0;
}

/* ==================== CONTENT STYLES ==================== */

.info-desc-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-desc-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    font-family: 'PlusJakartaSans', sans-serif;
}

.info-desc-title-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.info-desc-title-spacing {
    height: 4px;
}

.info-desc-text {
    font-weight: 400;
    color: #292929;
    text-align: start;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
    font-family: 'PlusJakartaSans', sans-serif;
}

.info-desc-text-defaultType {
    text-align: start;
    font-weight: 400;
    color: #424242;
}

.info-desc-text-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Default 2 lines */
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 768px) {
    .info-desc-widget {
        gap: 0.625rem;
    }

    .info-desc-title {
        font-size: 0.8125rem;
    }

    .info-desc-text {
        font-size: 0.8125rem;
        line-height: 1.35;
    }

    .info-desc-icon-spacing {
        width: 10px;
    }

    .info-desc-bullet {
        width: 4px;
        height: 4px;
    }

    .info-desc-icon-defaultType {
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .info-desc-widget {
        gap: 0.5rem;
    }

    .info-desc-title {
        font-size: 0.75rem;
    }

    .info-desc-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .info-desc-icon-spacing {
        width: 8px;
    }
}

/* ==================== ACCESSIBILITY ==================== */

@media (prefers-contrast: high) {
    .info-desc-text {
        color: #000;
    }

    .info-desc-bullet {
        background-color: #000;
    }

    .info-desc-icon-success,
    .info-desc-icon-error {
        border-width: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .info-desc-tile {
        transition: none;
    }
}

/* ==================== FOCUS STATES ==================== */

.info-desc-tile:focus-within {
    outline: 2px solid #B704F6;
    outline-offset: 2px;
    border-radius: 4px;
}
