.vgd-button,
.wp-block-button__link,
.vgd-btn,
button:not(.vgd-mobile-toggle):not(.vgd-search-toggle):not(.customize-partial-edit-shortcut-button):not(.components-button),
input[type='button'],
input[type='submit'],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--vgd-color-accent);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	line-height: 1.2;
}

.vgd-post-card {
	border: 1px solid var(--vgd-color-border);
	border-radius: var(--vgd-radius-md);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--vgd-shadow-sm);
}

.vgd-post-card-content {
	padding: 20px;
}

.vgd-entry-title {
	margin: 0 0 12px;
	line-height: 1.2;
}

.vgd-entry-meta {
	font-size: 14px;
	color: var(--vgd-color-muted);
	margin-bottom: 12px;
}

.vgd-hero {
	padding: 96px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.vgd-hero-content {
	max-width: 720px;
}

.vgd-hero-content h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.05;
	margin: 0 0 16px;
}

.vgd-hero-content p {
	font-size: 1.1rem;
	margin: 0 0 24px;
	color: var(--vgd-color-muted);
}

/* =========================================
   Global breadcrumb area
========================================= */

.breadcrumb {
	display: block;
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb li {
	margin: 0;
	padding: 0;
	color: var(--vgd-text-muted, #666);
}

.breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
	text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
	color: var(--vgd-text-color, #222);
	font-weight: 600;
}
.vgd-entry-title {
	margin: 0 0 18px;
}

.vgd-page-entry .vgd-entry-content,
.vgd-single-post .vgd-entry-content {
	min-width: 0;
}
[data-animate] {
	transition: transform 0.7s ease, opacity 0.7s ease;
	will-change: opacity, transform;
}

[data-animate].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

[data-animate][data-animate-type="none"] {
	opacity: 1;
	transform: none;
	transition: none;
}

/* Fade options */
[data-animate][data-animate-type="fade-in"],
[data-animate][data-animate-type="fade-up"],
[data-hero-animate="true"][data-animate-type="fade"] {
	opacity: 0;
}

[data-animate][data-animate-type="fade-in"].is-visible,
[data-animate][data-animate-type="fade-up"].is-visible,
[data-hero-animate="true"][data-animate-type="fade"].is-visible {
	opacity: 1;
}

/* Fade up */
[data-animate][data-animate-type="fade-up"] {
	transform: translate3d(0, 24px, 0);
}

/* Slide left */
[data-animate][data-animate-type="slide-left"] {
	opacity: 1;
	transform: translate3d(-24px, 0, 0);
}

/* Slide right */
[data-animate][data-animate-type="slide-right"] {
	opacity: 1;
	transform: translate3d(24px, 0, 0);
}

/* Zoom in */
[data-animate][data-animate-type="zoom-in"] {
	opacity: 1;
	transform: scale(0.94);
	transform-origin: center center;
}

/* Hero-only safe options */
[data-hero-animate="true"] {
	overflow: hidden;
}

[data-hero-animate="true"][data-animate-type="none"] {
	opacity: 1;
	transform: none;
	transition: none;
}

[data-hero-animate="true"][data-animate-type="zoom"] {
	opacity: 1;
	transform: scale(1.02);
	transform-origin: center center;
}

[data-hero-animate="true"].is-visible {
	transform: scale(1);
}