/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

ul{margin:0; padding:0;}
/* HEADER */
.cn-cap-sticky-header{
    background:#f6f7fb;
    padding:20px 15px;
    position:relative;
	border-bottom: 1px solid rgb(39 37 70 / 10%);
}

/* INNER CONTAINER */
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
/* LOGO */
.header-brand img{
    height:30px;
    width:auto;
}
.site-title{
    font-weight:600;
    text-decoration:none;
    color:#111;
    font-size:18px;
}
/* NAVIGATION */
.header-navigation{
    display:flex;
    align-items:center;
    gap:30px;
}
/* MENU */
.header-menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
}
.header-menu ul {list-style:none;}
.header-menu li{
    margin:0;
}
.header-menu li a{
    text-decoration:none;
    color:#555;
    font-size:15px;
    font-weight:500;
}
.header-menu li a:hover{
    color:#000;
}
/* CTA BUTTON */
.header-cta{
    background:#1c1c2e;
    color:#fff;
    padding:10px 22px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    white-space:nowrap;
}
.header-cta:hover{
    background:#fff;
}
/* HAMBURGER */
.header-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:4px;
    border:none;
    background:none;
    cursor:pointer;
    padding:5px;
}

.header-toggle span{
    width:22px;
    height:2px;
    background:#111;
    display:block;
}

/* MOBILE */
@media (max-width:768px){
	.header-toggle{
		display:flex;
	}
	/* hide nav initially */
	.header-navigation{
		position:absolute;
		left:0;
		top:100%;
		width:100%;
		background:#ffffff;
		flex-direction:column;
		align-items:center;
		padding:30px 20px;
		gap:20px;
		display:none;
		box-shadow:0 10px 25px rgba(0,0,0,0.08);
	}
	/* active state */
	.header-navigation.active{
		display:flex;
	}
	/* menu vertical */
	.header-menu{
		flex-direction:column;
		gap:18px;
	}
	/* CTA mobile */
	.header-cta{
		margin-top:10px;
	}
}

/* FOOTER */
.cn-cap-footer{
    margin:15px;
	background:linear-gradient(135deg,#111430,#1d2045);
	border-radius:18px;
	padding:0 15px;
}
.footer-inner{
    color:#fff;
    padding:40px 0;
    display:grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap:40px;
}
.footer-bottom {
	padding:20px 0;
	color:#fff;
	border-top: 1px solid rgb(255 255 255 / 20%);
}
/* TITLE */
.footer-title{
    font-size:26px;
    margin-bottom:10px;
}
.footer-desc, .disclaimer-txt{
    color:#c8c9d6;
    font-size:14px;
    margin-bottom:20px;
}
.disclaimer-txt {margin:15px 0;}
/* FORM */
.footer-form{
    display:flex;
    gap:10px;
}
.footer-form input{
    flex:1;
    padding:12px 14px;
    border-radius:10px;
    border:none;
}
.footer-form button{
    padding:12px 16px;
    border:none;
    border-radius:10px;
    background:#fff;
    color:#111;
    font-weight:600;
    cursor:pointer;
}
/* LINKS */
.footer-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}
.footer-menu li{
    margin-bottom:10px;
}
.footer-menu a{
    color:#c8c9d6;
    text-decoration:none;
}
.footer-menu a:hover{
    color:#fff;
}
/* CARD */
.footer-card{
    background:rgba(255,255,255,0.05);
    border-radius:14px;
    padding:20px;
}
.footer-card-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}
.footer-card p{
    color:#c8c9d6;
    font-size:14px;
}
.footer-card-btn{
    display:inline-block;
    margin-top:10px;
    background:#2a2f5c;
    padding:10px 14px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
}
.footer-card-btn:hover {
	background:#fff;
}
/* RESPONSIVE */
@media (max-width:900px){
	.footer-inner{
		grid-template-columns:1fr;
	}
	.footer-form{
		flex-direction:column;
	}
}

/*common pages*/

/* GRID */
.post-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin:40px 0;
}

/* CARD */

.post-card{
	background-color: #ffffff;
	color: var(--contrast);
	border: 1px solid #d7d7d7;
	border-radius: 15px;
	padding: 15px 15px 20px 15px;
}

/* IMAGE */

.post-card-image img{
	display: block;
    height: 250px;
    margin-bottom: 30px;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

/* CATEGORY */

.post-category, .single-category{
	background-color: var(--base);
    color: var(--contrast);
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-start;
    text-decoration: none;
    width: fit-content;
    border: 1px solid var(--base);
    border-radius: 10px;
    padding: 5px 15px;
	margin-bottom:21px;
}
.post-category a {text-decoration:none; color:#222222;}

/* TITLE */

.post-card-title{
	font-size: 30px;
    margin-bottom: 15px;
	font-weight:700;
}

.post-card-title a{
text-decoration:none;
color:#111827;
}

/* EXCERPT */

.post-excerpt{
margin-bottom: 8px;
}

/* FOOTER */

.post-footer{
display:flex;
justify-content:space-between;
align-items:center;
}

/* AUTHOR */

.post-author{
display:flex;
align-items:center;
gap:8px;
}

.post-author img{
border-radius:50%;
}

/* ARROW BUTTON */

.post-arrow{
	align-items: center;
    background-color: var(--base-2);
    color: #ffffff;
    column-gap: 0.5em;
    display: inline-flex;
    text-decoration: none;
    border: 1px solid var(--base-2);
    border-radius: 100px;
    padding: 1rem;
}
.post-arrow .gb-shape svg {
	width: 1em;
    height: 1em;
    fill: currentColor;
    color: var(--contrast);
}
.post-arrow:hover {
	background-color: var(--base);
    color: #ffffff;
    border: 1px solid var(--base);
}
.site-content {
	display:flex;
	flex-direction:column;
}

/*single page */
.site-main.single-post {
	max-width:900px;
	margin:0 auto !important;
	padding: 60px 15px;
}

.single-header {
	padding-bottom:15px;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	margin-bottom:30px;
}

.single-header-top{
	display:flex;
	align-items:center;
	gap:10px;
	font-size:14px;
	margin-bottom:15px;
}

.single-readtime {
	color:#6b7280;
}

.single-title{
	font-size:52px;
	line-height:1.2;
	font-weight:700;
	margin-bottom:18px;
}
@media (max-width:1024px) {
	.single-title {
		font-size:44px;
	}
}
@media (max-width:767px) {
	.single-title {
		font-size:36px;
	}
}
.single-meta{
	display:flex;
	justify-content:space-between;
	font-size:14px;
	color:#6b7280;
}
.meta-author a {
	text-decoration:none;
	color:#000;
}
.meta-author strong,
.meta-date strong{
color:#111827;
}
.single-category {margin-bottom:0;}

.archive-title {display:flex; align-items:center; gap:20px;}
.archive-title img{border-radius:50%;}

.location-details {list-style:none;}
.location-details li {color:#c8c9d6; font-size:14px;}
.location-details li.title {color:#fff; font-weight:600;}
ul.footer-menu {list-style:none;}