/* HOMEPAGE GAME RATING SECTION */

.game-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.game-card{
    background:#111;
    color:#fff;
    padding:10px;
    border-radius:10px;
}

.game-card img{
    width:100%;
    border-radius:10px;
}

/* Overlay */
.page-info-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* darkness */
    z-index: 1;
}

/* Keep text above overlay */
.page-info-section > * {
    position: relative;
    z-index: 2;
}

/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: 1;
    pointer-events: none;
}

/* Keep text above overlay */
.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-section .hero-slider {
    position: relative;
}

.hero-section h1 {

font-size : 42px !important;

}


/* PAGE BACKGROUND */
body {
	background: #f4f5f7;
}

/* MAIN TWO COLUMNS (YOUR TEMPLATE ONLY) */
.page-section .col-lg-9,
.page-section .col-lg-8,
.page-section .col-md-8,
.page-section .col-md-9,
.page-section .col-lg-3,
.page-section .col-md-4 {
	background: #ffffff;
	padding: 20px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* FORCE PROPER COLUMN ALIGNMENT */
.page-section .row {
	align-items: flex-start;
}

/* STICKY SIDEBAR */
.sidebar {
	position: sticky;
	top: 20px;
	align-self: flex-start;
}

.page-section .col-lg-9 {

margin-left: -15px;
    margin-right: 15px;
    }

/* MOBILE FIX (DISABLE STICKY) */
@media (max-width: 991px) {
	.sidebar {
		position: relative;
		top: auto;
	}
    
    .page-section .col-lg-9 {

	margin: 0 0 20px 0;
    }
}

.page-section-date, .page-section-author {

    font-size: 12px;
    color: #70657b;
    font-weight: 500;
    text-transform: uppercase;
    }
    
.v-divider {
    border: 0;
    width: 1px;
    background-color: rgba(138, 147, 153, .25);
    align-self: stretch;
    flex: 0 0 1px;
    margin: 0 10px;
}

.h-divider {
    border-bottom: 1px solid rgba(138, 147, 153, .25);
    margin-bottom: 20px;
}

.wp-block-embed iframe,
.wp-block-video iframe,
iframe {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
}

.wp-block-embed iframe,
iframe {
    width: 100% !important;
    height: 400px;
    max-width: 100%;
}