/* ===============================
   Category Page CSS
================================= */

/* Common Colors */
:root {
    --primary-color: #660033;
    --text-dark: #0F1011;
    --text-medium: #474747;
    --border-light: #e5e5e5;
}

/* Page Header */
.page-title {
    padding: 40px 0 20px;
}

.page-title h1 {
	font-size: 50px;
	font-weight: 400;
	line-height: 1.2;
    color: var(--text-medium);
    text-align: center;
    text-transform: capitalize;
    margin: 0;
}

.page-text-data p {
	font-weight:400;
	font-size: 18px;
	line-height: 1.6;
    color: var(--text-medium);
    text-align: center;
    margin-top: 15px;
}

/* Section Heading */
.category-table-wrapper h2 {
    font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-medium);
}

/* Page Bottom Spacing */
.page-id-3135 #site-content-area .container,
.category #site-content-area .container {
    padding-bottom: 60px;
}

/* Table Wrapper */
.category-table-wrapper {
    overflow-x: auto;
	margin-top: 20px;
}

/* Table */
.category-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin-bottom: 4rem;
	margin-top: 0rem;
}

.category-table th,
.category-table td {
    padding: 12px 14px;
    vertical-align: middle;
}

.category-table thead th {
    font-family: "Times New Roman", Times, serif;
	font-size: 26px;
	font-weight: 400;
    color: var(--text-medium);
    border-bottom: 1px solid #000;
}


.category-table tbody td a{
	font-size: 18px;
	font-weight: 400;
    color: var(--text-dark);
	text-decoration:none;
}


.category-table tbody td a:hover{
	text-decoration:underline;
}

/* Number Column */
.cat-number {
    width: 10%;
    text-align: center;
    font-weight: 600;
    color: #444;
}

/* Category Levels */

.level-0 .cat-name a{
    font-weight: 700;
    color: #111;
	text-decoration:none;
}

.level-0 .cat-name a:hover{
	text-decoration:underline;
}

.level-1 .cat-name a{
    padding-left: 20px;
    font-weight: 600;
    color: #333;
	text-decoration:none;
}

.level-1 .cat-name a:hover{
    text-decoration:underline;
}

.level-2 .cat-name {
    padding-left: 40px;
    font-weight: 500;
    color: #555;
}

.level-3 .cat-name {
    padding-left: 60px;
}

/* View Link */
.view-link {
    font-weight: 600;
    text-decoration: none;
    color: #0073aa;
    transition: 0.3s ease;
}

.view-link:hover {
    color: #005177;
}

/* Button Style Link */
.category-table .text-right a.view-link {
    background: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    padding: 5px 13px;
}

/* Alignment */
.text-right {
    text-align: right;
	width: 20%;
}

/* Pagination */
.category-pagination {
    margin-top: 25px;
    text-align: center;
}

.category-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 8px 12px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.category-pagination .current {
    background: transparent;
    color: #333;
}

/* Mobile */
@media (max-width: 768px) {
    .category-table th,
    .category-table td {
        font-size: 14px;
        padding: 10px;
    }

    .cat-number {
        width: 10%;
    }
	
		.page-title h1 {
		font-size: 36px;
	}
	
	.category-table-wrapper h2{
		font-size: 34px;
	}
}