/* ============================================================
   GLOBAL FONT
============================================================ */
.tpc-safe-area,
.tpc-safe-area * {
    font-family: "DM Sans", sans-serif !important;
}

/* ============================================================
   SAFE AREA (SAME AS RESOURCES)
============================================================ */
.tpc-safe-area {
    max-width: 1530px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* TABLET & MOBILE */
@media (max-width: 1024px) {
    .tpc-safe-area {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ============================================================
   GRID — EXACT SAME BEHAVIOR AS RESOURCES
============================================================ */
.tpc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
	align-items: stretch;
}

/* 1150px → 2 columns */
@media (max-width: 1150px) {
    .tpc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 650px → 1 column */
@media (max-width: 650px) {
    .tpc-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CARD
============================================================ */
.tpc-card {
    background-color: #F2F2F2;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============================================================
   TITLE
============================================================ */
.tpc-title {
    color: #101110;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 12px 0;
}

/* ============================================================
   DESCRIPTION
============================================================ */
.tpc-desc {
    color: #101110;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 24px 0;
	flex-grow: 1;
}

/* ============================================================
   SPACER (PUSH ACTIONS TO BOTTOM)
============================================================ */
.tpc-spacer {
    flex-grow: 1;
}

/* ============================================================
   SEPARATOR
============================================================ */
.tpc-separator {
    width: 100%;
    height: 1px;
    background-color: #A6A6A6;
    margin: 20px 0;
}

/* ============================================================
   DOWNLOAD BUTTON — SAME AS RESOURCES
============================================================ */
.tpc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #DB2129;
    border-radius: 1000px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background 0.25s ease;
    width: fit-content;
}

.tpc-download-btn:hover {
    background-color: #292A29 !important;
}

.tpc-download-icon {
    width: 16px;
    height: 16px;
}

/* ============================================================
   NO DATA — CENTERED FALLBACK
============================================================ */
.tpc-no-data-wrapper {
    width: 100%;
    min-height: 400px; /* keeps it visually centered even on tall screens */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   NO DATA BLOCK — SHARED DESIGN
============================================================ */
.ik-no-data-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ICON */
.ik-no-data-icon {
    width: 68px;
    height: 68px;
    display: block;
    margin-bottom: 24px;
}

/* TITLE */
.ik-no-data-title {
    margin: 0 0 16px 0;
    color: #292A29;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}

/* SUBTEXT */
.ik-no-data-text {
    margin: 0 0 40px 0;
    max-width: 700px;
    color: #292A29;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

/* BUTTON */
.ik-no-data-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #DB2129;
    padding: 15px 40px;
    border-radius: 999px;
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.25s ease;
	margin-top: 20px
}

.ik-no-data-btn:hover {
    background-color: #292A29;
	color: white;
}

/* BUTTON ICON */
.ik-btn-icon {
    width: 18px;
    height: 18px;
}

