/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.0.1747905313
Updated: 2025-05-22 09:15:13

*/
body {
/*     -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

/* Header */
.home .wpulike.wpulike-animated-heart {
    display: none;
}
.post-cons{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}
/* post form */

.custom-user-form,
.custom-user-form a{
	color: #FFFFFF;	
}

header.page-header {
    padding: 0 !important;
}

header.page-header h1.page-title {
    text-transform: uppercase;
}
body h2{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #000000;
}

a#wpuf-post-draft {
    display: none;
}

.newsletter-outer div.wpforms-container-full:not(:empty) {
    margin: 0px auto 20px auto;
}

.newsletter-inner {
    padding: 0 !important;
}

header button.menu-toggle {
    background-color: transparent !important;
}

.custom-grid {
	display: grid;
	grid-template-columns: repeat(3, 2fr);
	gap: 30px;
	margin: 30px 0;
}

.custom-grid-item {
    background: #fff;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.custom-grid-item h2{
	margin-top: 10px;
}

.custom-grid-item:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.cat-name{
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background-color: #222222;
    color: #fff;
    margin-right: 5px;
    padding: 6px;
    vertical-align: top;
    display: inline-block;
}

.custom-grid-item img {
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.custom-grid-item a{
    text-decoration: none;
}

.custom-grid-item h2:hover{
	color: #f2921a;
}

.archive.category header.page-header {
    background: transparent !important;
}

.read-more-button {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    color: #ffffff;
    border-radius: 4px;
    background-color: #23201E;
}

.read-more-button:hover{
	background-color: #f2921a;
	color: #ffffff;
}

.custom-grid .custom-grid-item a.read-more-button:focus{
    background: #f2921a !important;
    color: #FFFFFF !important;
}

body .items-table-container .wpuf-posts-edit, 
body .items-table-container .wpuf-posts-delete {
    float: left;
    height: 40px;
    width: 40px;
    padding: 7px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login input[type="text"], .login input[type="email"], 
.login input[type="url"], .login input[type="password"], 
.login input[type="search"], .login input[type="tel"], 
.login input[type="number"], .login textarea, .login select,
.login .wpuf-fields-inline, 
.registration input[type="text"], .registration input[type="email"], 
.registration input[type="url"], .registration input[type="password"], 
.registration input[type="search"], .registration input[type="tel"], 
.registration input[type="number"], .registration textarea, .registration select,
.registration .wpuf-fields-inline  {
    width: 100% !important;
}

.post-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.post-card {
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}
.post-card h3 {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 10px;
  color: #000;
  font-weight: 600;
}
.post-card .meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}
.category-name {
  color: #fff;
  padding: 3px 5px;
  background: #000;
}
.post-card .excerpt {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}
.post-card .read-more {
  color: red;
  font-size: 14px;
  margin-top: auto;
  text-decoration: none;
}


@media (max-width: 991px) {
	.custom-grid {
		 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}
	
	
	