/**
 * Policy Terms Widget Styles
 * Professional and customizable design
 */

/* Container */
.ptw-container {
    width: 100%;
}

/* ===================
   MAIN SECTION
   =================== */
.ptw-main-section {
    background-color: #FFFFFF;
    padding: 25px;
    margin-bottom: 0;
}

.ptw-main-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A202C;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.4;
}

/* Check List */
.ptw-check-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ptw-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ptw-check-icon {
    flex-shrink: 0;
    font-size: 20px;
    color: #10B981;
    margin-top: 2px;
}

.ptw-check-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ptw-check-content {
    flex: 1;
}

.ptw-check-title {
    font-size: 15px;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 4px;
    line-height: 1.4;
}

.ptw-check-desc {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
}

/* ===================
   WARNING BOX
   =================== */
.ptw-warning-box {
    background-color: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.ptw-warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ptw-warning-icon {
    font-size: 20px;
    color: #F59E0B;
}

.ptw-warning-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ptw-warning-title {
    font-size: 15px;
    font-weight: 600;
    color: #92400E;
    line-height: 1.4;
}

.ptw-warning-list {
    margin: 0;
    padding: 0 0 0 20px;
    list-style-type: disc;
}

.ptw-warning-text {
    font-size: 13px;
    color: #B45309;
    line-height: 1.6;
    margin-bottom: 8px;
}

.ptw-warning-text:last-child {
    margin-bottom: 0;
}

/* ===================
   NOTICE SECTION
   =================== */
.ptw-notice-section {
    background-color: #EF4444;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.ptw-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.ptw-notice-header-icon {
    font-size: 28px;
    color: #FFFFFF;
}

.ptw-notice-header-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.ptw-notice-title {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

/* Notice Grid */
.ptw-notice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ptw-notice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ptw-notice-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #FCA5A5;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.ptw-notice-text {
    font-size: 13px;
    color: #FFFFFF;
    line-height: 1.6;
    flex: 1;
}

/* ===================
   RESPONSIVE - TABLET
   =================== */
@media (max-width: 1024px) {
    .ptw-main-section {
        padding: 20px;
    }

    .ptw-main-title {
        font-size: 15px;
    }

    .ptw-check-title {
        font-size: 14px;
    }

    .ptw-check-desc {
        font-size: 12px;
    }

    .ptw-warning-box {
        padding: 15px;
    }

    .ptw-warning-title {
        font-size: 14px;
    }

    .ptw-warning-text {
        font-size: 12px;
    }

    .ptw-notice-section {
        padding: 25px;
    }

    .ptw-notice-title {
        font-size: 18px;
    }

    .ptw-notice-text {
        font-size: 12px;
    }
}

/* ===================
   RESPONSIVE - MOBILE
   =================== */
@media (max-width: 767px) {
    .ptw-main-section {
        padding: 15px;
    }

    .ptw-main-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .ptw-check-list {
        gap: 15px;
    }

    .ptw-check-icon {
        font-size: 18px;
    }

    .ptw-check-title {
        font-size: 13px;
    }

    .ptw-check-desc {
        font-size: 11px;
    }

    .ptw-warning-box {
        padding: 12px;
        margin: 15px 0;
    }

    .ptw-warning-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .ptw-warning-icon {
        font-size: 18px;
    }

    .ptw-warning-title {
        font-size: 13px;
    }

    .ptw-warning-list {
        padding-left: 18px;
    }

    .ptw-warning-text {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .ptw-notice-section {
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }

    .ptw-notice-header {
        gap: 10px;
        margin-bottom: 20px;
    }

    .ptw-notice-header-icon {
        font-size: 24px;
    }

    .ptw-notice-title {
        font-size: 16px;
    }

    .ptw-notice-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ptw-notice-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ptw-notice-text {
        font-size: 11px;
    }
}