/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.4
	Stable tag: 3.4.4
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

.ad-banner img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.lastest-sec.new-games-section h4,
.lastest-sec.new-games-section .date {
    position: initial;
    color: #000;
    text-shadow: none;
    margin: 5px 0;
}

.lastest-sec.new-games-section .small-post img {
    height: 180px;
}

/* === Featured Grid Section === */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Big Left Post */
.big-left {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.big-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.big-left .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    z-index: 0;
}

.big-left .cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00b050;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
}

.big-left .post-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

.big-left .post-info .date {
    font-size: 13px;
    color: #ff5a5f;
    display: block;
    margin-bottom: 5px;
}

.big-left .post-info h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
}

/* Right Side Posts */
.right-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-post {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
    padding: 8px;
}

.right-post a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    width: 100%;
}

.right-post .thumb img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.right-post .details {
    padding-left: 10px;
}

.right-post .details .date {
    font-size: 12px;
    color: #ff5a5f;
    display: block;
    margin-bottom: 4px;
}

.right-post .details h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* === Responsive Tweaks === */
@media (max-width: 1024px) {
   .gamxo-grid {
  display: grid;
  grid-template-areas:
    "big big"
    "small1 small2"
    "small3 small4";
  grid-template-columns: 1fr 1fr;   /* 2 equal columns */
  grid-template-rows: 1fr 1fr 1fr;  /* big takes 2x space, small rows share */
  width: 100%;
  height: 100%;
}
.overlay {
    left: 10px;
}
    .new-games-section .left-column {
        grid-template-columns: 1fr 1fr;
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .new-games-section .content-wrapper {
        flex-direction: column;
    }
    .new-games-section .left-column {
        grid-template-columns: 1fr;
    }
	.games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}
    .right-post {
        flex-direction: column;
        text-align: left;
    }
    .right-post .thumb img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
	.games-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
    .overlay h2,
    .big-left .post-info h2 {
        font-size: 12px;
    }
    .overlay .date,
    .big-left .post-info .date {
        font-size: 11px;
    }
}
/* Section Header */
.games-section .section-header {
  background: #e60033;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

.games-section .section-header h3 {
  margin: 0;
  font-size: 16px;
}

/* Grid Layout */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* Card Style */
.game-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.game-card .thumb {
  position: relative;
}

.game-card .thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.game-card .cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #00b050;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 3px;
}

/* Meta Info */
.game-card .meta {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  font-size: 12px;
  color: #888;
  padding: 8px 12px 0;
}

.game-card .meta i {
  margin-right: 4px;
  color: #e60033;
}

.game-card .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 12px 15px;
  color: #111;
}
.left-content a, .sidebar a{
    color: #c72538 !important;
}

.career-form input , .career-form select, .career-form textarea{
	margin-top:20px;
padding:10px;
}
.career-form .wpcf7-submit{
background:var(--eston-base) !important;
color:#fff;
margin:0;
}
.accordion-button{
	white-space: normal;

}
.bdpp-rdmr-btn:hover, .bdpp-rdmr-btn:focus {
    background: #fff;
    color: #000 !important;
    border-color: #c72538;
}
.bdpp-rdmr-btn{
	border: 1px solid var(--eston-base);
    background-color: var(--eston-base);
    color: var(--eston-white);
    padding: 12px 30px 12px;
	font-weight: 500;
    font-size: 14px !important;
	text-transform: uppercase;

}
.news-one__bottom .owl-item img {
    height: 200px;
    object-fit: cover;
    object-position: top;
}
.page-id-1232 footer, .page-id-1232 .footer, .page-id-1232 .main-header-three__top, .page-id-1232 .main-menu-three__main-menu-box, .page-id-1232 .gtranslate_wrapper {
	display:none;
}
.page-id-1098 footer, .page-id-1098 .footer, .page-id-1098 .main-header-three__top, .page-id-1098 .main-menu-three__main-menu-box, .page-id-1098 .gtranslate_wrapper {
	display:none;
}
@media(max-width:500px){
	.main-menu-three__logo {
    display: flex;
		padding:0 !important;
}
	.main-menu-three__logo img, .footer-widget__logo img, .about-logo img {
    height: 93px;
}
}
.affix-logo {
	display:none
}
.page-id-1232 .affix-logo, .page-id-1098 .affix-logo  {
	display:inline-block
}
.page-id-1296 .post-views, .page-id-1296 .post-navigation {
	display:none !important
}
.page-id-1232 .feature-one__title, .page-id-1296 .feature-one__title { 
    font-size: 100px; 
}
@media (max-width:992px){
	.main-menu-three__logo img, .footer-widget__logo img, .about-logo img {
    width: 130px;
    height: 90px;
}
	
}

body.page-id-1098 .feature-one__title, body.page-id-1232 .feature-one__title { 
	font-size: 100px !important; 
}
@media (max-width:767px) {
	.main-menu-three__logo {
        display: flex !important;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
    }
	.main-menu-three__wrapper-inner {
		flex-wrap:nowrap
	}
	.sliding-text__wrap {
		padding:0 !important;
	}
	.sliding-text__wrap	h2 {
		font-size:20px
	}
	h1 {
		font-size: 1.5rem;
	}
	body.page-id-1098 .feature-one__title, body.page-id-1232 .feature-one__title { 
		font-size: 30px !important; 
	}
}
.sliding-text__list h2{
	font-size:20px;
} 
.main-menu .main-menu__list>li+li, .stricky-header .main-menu__list>li+li {
    margin-left: 30px;
}

.bdpp-post-grid .bdpp-post-content {
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.bdpp-post-grid h2.bdpp-post-title {
    font-size: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
a { 
    color: #C72538; 
}