/**
 * Guides Listing Section
 */

.guides-listing-section {
	background: var(--gray);
}
.guides-listing-section .guides-hero {
	padding-top: 164px;
	max-width: 780px;
}
.guides-listing-section .guides-hero h1 {
	margin-bottom: 24px;
}
.guides-listing-section .guides-hero .desc {
	max-width: 546px;
}
.guides-listing-section .guides-hero .subtitle {
    margin-bottom: 30px;
}

/* Tabs */
.guides-listing-section .guides-tabs-wrap {
	padding: 50px 0 60px;
}
.guides-tabs-wrap .container{
	display: flex;
	justify-content: center;
}
.guides-listing-section .guides-tabs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 12px;
}
.guides-listing-section .guides-tab {
	font-family: 'Calibre', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	background: transparent;
	border: 1px solid var(--black);
	border-radius: 15px;
	padding: 12px 38px;
	cursor: pointer;
	transition: var(--transition);
}
.guides-listing-section .guides-tab:hover {
	border-color: var(--blue);
	color: var(--blue);
}
.guides-listing-section .guides-tab.active {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}

/* Cards */
.guides-listing-section .guides-list {
	background: var(--gray);
}
.guides-listing-section .guide-card {
	padding: 60px 0;
}
.guides-listing-section .col-image {
	width: 31%;
}
.guides-listing-section .guide-box {
    border-radius: 30px;
    background-color: var(--white);
    overflow: hidden;
}
.guides-listing-section .col-content {
    width: 69%;
    padding-left: 90px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
    max-width: 815px;
	display: flex;
	flex-wrap: wrap;
}
.guides-listing-section .col-image .img-wrapper {
	display: block;
	padding-top: 79%;
	overflow: hidden;
	height: 100%;
}
.guides-listing-section .meta {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 12px;
}
.guides-listing-section .col-content h3 {
	margin-bottom: 12px;
}
.guides-listing-section .col-content h3 a {
	color: var(--black);
	transition: var(--transition);
}
.guides-listing-section .col-content h3 a:hover {
	color: var(--blue);
}
.guides-listing-section .excerpt {
	margin-bottom: 20px;
}
body.archive .guides-listing-section{
	padding-top: 165px;
}
body.archive .guides-listing-section .guides-hero h1 {
    margin-bottom: 0;
}
.guides-pagination {
    text-align: center;
	padding-bottom: 50px;
}
.page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px 10px;
    flex-wrap: wrap;
}
.page-numbers li {
    margin-bottom: 0 !important;
}
.page-numbers li a,
.page-numbers li span {
    height: 40px;
    width: 40px;
    border: 1px solid var(--blue);
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 7px;
    justify-content: center;
    color: var(--blue);
	transition: var(--transition);
}
.page-numbers li a:hover{
	background-color: var(--blue);
	color: var(--white);
}
.page-numbers li .current{
	background-color: var(--pink);
	color: var(--white);
	border-color: var(--pink);
}
.page-numbers li .prev,
.page-numbers li .next,
.page-numbers li .prev:hover,
.page-numbers li .next:hover{
	background-color: transparent;
	border-color: transparent;
}
.page-numbers li .prev:hover,
.page-numbers li .next:hover{
	color: var(--black);
}

@media only screen and (min-width: 992px) {
	body.archive .guides-listing-section .section-header{
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 1199px) {
	.guides-listing-section .col-content{
		width: 68%;
		padding-left: 30px;	
	}
	.guides-listing-section .col-image {
		width: 32%;
	}
	.guides-listing-section .guide-card {
		padding: 40px 0;
	}
}
@media only screen and (max-width: 991px) {
	.guides-listing-section .guides-tabs-wrap {
		padding: 40px 0 25px;
	}
    .guides-listing-section .col-content {
        padding-left: 20px;
        width: 60%;
        padding-right: 30px;
    }
	.guides-listing-section .col-image {
        width: 40%;
    }
	.guides-listing-section .guide-card {
        padding: 0px 0 40px;
    }
}
@media only screen and (max-width: 767px) {
	.guides-listing-section .guides-tabs {
		flex-wrap: wrap;
		padding-bottom: 5px;
	}
	.guides-listing-section .guides-tab {
        padding: 12px 20px;
        font-size: 18px;
	}
	.guides-listing-section .guide-card .row {
		flex-direction: column;
		row-gap: 20px;
	}
	.guides-listing-section .col-image,
	.guides-listing-section .col-content {
		width: 100%;
	}
	.guides-listing-section .col-content {
		padding: 5px 35px 30px;
	}
	body.archive .guides-listing-section,
	.guides-listing-section .guides-hero{
		padding-top: 135px;
	}
	.guides-listing-section .guide-box{
		border-radius: 20px;
	}
	.guides-listing-section .guides-tabs{
		column-gap: 5px;
	}
}
