/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}


/* body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #555;
} */


/* added on 11/11/2025 */
.wp-site-blocks {
    margin: 0 auto;
    max-width: 1100px !important;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: max-content;
	margin-left: 0 !important;
    margin-right: 0 !important;
}
b, strong {
    font-weight: bold;
}
h3 {
	font-size: 25px;
}
.wp-block-post-featured-image :where(img) {
	height: auto !important;
}
.wp-block-post-featured-image {
	aspect-ratio: 0 !important;
}
.wp-block-group {
	margin-top: 0 !important;
}
.has-link-color {
	margin: 27px auto 0 !important;
}
.wp-block-post-title {
	/* margin-top: 40px !important; */
	text-align: center;
    margin: 40px auto 0 !important;
}
a:hover {
	text-decoration: underline !important;
}

tbody, tr, td {
    border-color: inherit;
    border-style: solid;
    border-width: 0.1px;
	padding: 10px 13px;
}


/* bread crumb */
.breadcrumb-container {
    font-family: "Inter", sans-serif;
}
.breadcrumb-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
}
.breadcrumb-link {
	/* color: #0069FF; */
	text-decoration: none;
	font-weight: 500;
}
.breadcrumb-link:hover {
	text-decoration: underline;
	color: #0069FF;
}
.breadcrumb-separator {
	margin: 0 8px;
	color: #000;
}
.breadcrumb-current {
	color: #000;
	font-weight: 500;
}
@media (max-width: 768px) {
	.breadcrumb-container {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.breadcrumb-nav {
		font-size: 12px;
	}
}



/* for blog dashboard - 3 Column Card Layout */
/* Post Template Grid - Makes 3 columns */
.wp-block-post-template,
.blog .wp-block-post-template {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 2rem !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 2rem 0 !important;
}

/* Each Post Item - Card Container */
.wp-block-post-template .wp-block-post,
.blog .wp-block-post-template .wp-block-post {
	display: flex !important;
	flex-direction: column;
	margin: 0 !important;
	padding: 0 !important;
}

/* Inner Group Container - Card Styling */
.wp-block-post-template .wp-block-post .wp-block-group.alignfull,
.blog .wp-block-post-template .wp-block-post .wp-block-group.alignfull {
	display: flex !important;
	flex-direction: column !important;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	padding: 0 !important;
	margin: 0 !important;
}

.wp-block-post-template .wp-block-post:hover .wp-block-group.alignfull,
.blog .wp-block-post-template .wp-block-post:hover .wp-block-group.alignfull {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Featured Image */
.wp-block-post-template .wp-block-post-featured-image,
.blog .wp-block-post-template .wp-block-post-featured-image {
	margin: 0 !important;
	width: 100%;
	/* height: 220px; */
	overflow: hidden;
	aspect-ratio: unset !important;
}

.wp-block-post-template .wp-block-post-featured-image img,
.blog .wp-block-post-template .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* .wp-block-post-template .wp-block-post:hover .wp-block-post-featured-image img,
.blog .wp-block-post-template .wp-block-post:hover .wp-block-post-featured-image img {
	transform: scale(1.05);
} */

/* Post Content Container */
.wp-block-post-template .wp-block-post-content,
.blog .wp-block-post-template .wp-block-post-content {
	padding: 1.25rem !important;
	flex: 1;
	display: flex;
	flex-direction: column;
	margin: 0;
	font-size: 16px !important;
}

/* Post Title */
.wp-block-post-template .wp-block-post-title,
.blog .wp-block-post-template .wp-block-post-title {
	margin: 0 0 0.75rem 0 !important;
	font-size: 1.25rem !important;
	line-height: 1.4;
	font-weight: 600;
	text-align: left !important;
	padding: 12px 21px 0;
}

.wp-block-post-template .wp-block-post-title a,
.blog .wp-block-post-template .wp-block-post-title a {
	color: #333;
	text-decoration: none;
	outline: none !important;
	border: none !important;
	transition: color 0.3s ease;
}

.wp-block-post-template .wp-block-post-title a:hover,
.blog .wp-block-post-template .wp-block-post-title a:hover {
	color: #4A90E2;
	text-decoration: none !important;
}

/* Post Date */
.wp-block-post-template .wp-block-post-date,
.blog .wp-block-post-template .wp-block-post-date {
	font-size: 0.875rem;
	color: #666;
	margin-top: 0 !important;
	padding: 0 1.25rem 1.25rem 1.25rem;
}

.wp-block-post-template .wp-block-post-date a,
.blog .wp-block-post-template .wp-block-post-date a {
	color: #666;
	text-decoration: none;
	outline: none;
    border: none;
}

/* Read More Link */
.wp-block-post-template .read-more-link,
.blog .wp-block-post-template .read-more-link {
	color: #4A90E2;
	text-decoration: none;
	font-weight: 500;
	margin-top: 0.5rem;
	display: inline-block;
	outline: none;
    border: none;
}

.wp-block-post-template .read-more-link:hover,
.blog .wp-block-post-template .read-more-link:hover {
	text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.wp-block-post-template,
	.blog .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem !important;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.wp-block-post-template,
	.blog .wp-block-post-template {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}
}

.blog .wp-site-blocks {
	margin: 0 auto;
	max-width: 1200px !important;
}
.blog .wp-block-group {
	padding-top: 0 !important;
	padding-bottom: 0 !important;	
	margin-bottom: 46px;
}
.wp-block-query-pagination-numbers {
	margin: 0 auto !important;
    display: block;
}
.wp-block-query-pagination-previous, .wp-block-query-pagination-next {
	display: none;
}
/* span.page-numbers {
    padding: 0 39px;
} */
.wp-block-query-pagination-numbers .page-numbers.current {
	/* background: linear-gradient(90deg, #74B974 0%, #18ADC0 100%); */
	background-color: #ffd700;
    color: #000;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(116, 185, 116, 0.3);
}
.wp-block-query-pagination-numbers .page-numbers:hover {
    background: #E8F4FD;
    color: #0F4C75;
    border-color: #0F4C75;
	text-decoration: none !important;
}

.wp-block-query-pagination-numbers .page-numbers {
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    border-radius: 6px;
    color: #0F4C75;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
	outline: none !important;
    border: none !important;
}
.blog h1.wp-block-heading.has-text-align-left {
    margin-top: 81px;
    text-align: center;
    margin: 81px auto 0;
    display: block;
	max-width: 1200px !important;
}
.blog .has-global-padding > .alignfull {
	padding: 0 36px;
}

.category .wp-block-group {
	padding-top: 0 !important;
	padding-bottom: 0 !important;	
	margin-bottom: 46px;
}
.category h1.wp-block-query-title {
    text-align: center;
    display: block;
    margin: 81px auto 0px;
	max-width: 1200px !important;
}

.author .wp-block-query-title {
	text-align: center;
    display: block;
    margin: 81px auto 0px;
	max-width: 1200px !important;
}
.author .wp-block-group {
	padding-top: 0 !important;
	padding-bottom: 0 !important;	
	margin-bottom: 46px;
}

/* .wp-singular .wp-block-post-template {
    display: block !important;
	line-height: 62px;
}
.wp-block-post-template .wp-singular .wp-block-group.alignfull {
	flex-direction: row !important;
}
.wp-singular .wp-block-post:hover {
	transform: none !important;
	box-shadow: none !important;
} */