/**
 * Gulf Models - Responsive Styles
 *
 * Comprehensive responsive layout rules for all breakpoints.
 * Mobile-first approach with progressive enhancement.
 *
 * Breakpoints:
 *   1200px  - Large desktop
 *   1024px  - Desktop / tablet landscape
 *   768px   - Tablet portrait
 *   576px   - Mobile landscape
 *   480px   - Mobile portrait
 *
 * @package    Gulf_Models
 * @subpackage Gulf_Models/assets/css
 * @since      1.0.0
 * @author     GameBird Agency
 */


/* ==========================================================================
   1. LARGE DESKTOP  -  max-width: 1200px
   ========================================================================== */

@media (max-width: 1200px) {

	/* Container */
	.container {
		max-width: 960px;
		padding-inline: 24px;
	}

	/* Typography */
	h1 { font-size: 2.75rem; }
	h2 { font-size: 2.125rem; }
	h3 { font-size: 1.5rem; }

	/* Hero */
	.hero-section__title {
		font-size: 3.25rem;
		max-width: 720px;
	}

	.hero-section__subtitle {
		font-size: 1.125rem;
		max-width: 600px;
	}

	/* Services grid: keep 4 columns, reduce gap */
	.services-section__grid {
		gap: 20px;
	}

	/* Models grid: 4 columns */
	.models-section__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	/* Pricing grid */
	.pricing-section__grid {
		gap: 20px;
	}

	/* Testimonials */
	.testimonial-card {
		min-width: 340px;
	}

	/* Model profile sidebar */
	.model-profile__grid {
		gap: 30px;
	}

	/* Related models */
	.related-models__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	/* Footer */
	.footer-widgets-grid {
		gap: 24px;
	}
}


/* ==========================================================================
   2. DESKTOP / TABLET LANDSCAPE  -  max-width: 1024px
   ========================================================================== */

@media (max-width: 1024px) {

	/* Container */
	.container {
		max-width: 768px;
	}

	/* Typography scaling */
	h1 { font-size: 2.375rem; }
	h2 { font-size: 1.875rem; }
	h3 { font-size: 1.375rem; }
	h4 { font-size: 1.125rem; }

	/* Section spacing */
	.services-section,
	.models-section,
	.pricing-section,
	.testimonials-section,
	.faq-section,
	.cta-section {
		padding-block: 60px;
	}

	.section-header {
		margin-bottom: 40px;
	}

	/* ---- Header ---- */
	.main-navigation {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.btn-header-cta {
		display: none;
	}

	.site-branding .site-logo img,
	.site-branding .custom-logo {
		max-height: 50px;
	}

	/* ---- Hero ---- */
	.hero-section {
		min-height: 80vh;
	}

	.hero-section__title {
		font-size: 2.75rem;
	}

	.hero-section__subtitle {
		font-size: 1.05rem;
	}

	.hero-section__cta-group {
		gap: 12px;
	}

	/* ---- Services: 2 columns ---- */
	.services-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	/* ---- Models grid: 3 columns ---- */
	.models-section__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}

	/* Filter buttons */
	.models-section__filters {
		flex-wrap: wrap;
		gap: 8px;
	}

	/* ---- Pricing: scroll container ---- */
	.pricing-section__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 20px;
		padding-bottom: 12px;
	}

	.pricing-card {
		min-width: 280px;
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	/* ---- Testimonials ---- */
	.testimonial-card {
		min-width: 300px;
	}

	/* ---- Model Profile: tighten layout ---- */
	.model-profile__grid {
		gap: 24px;
	}

	.model-portfolio__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* ---- Dashboard: sidebar tabs ---- */
	.dashboard-content .gm-dashboard__layout {
		flex-direction: column;
	}

	.dashboard-content .gm-dashboard__sidebar {
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 0;
		border-bottom: 1px solid var(--gm-border, #e5e5e5);
		border-right: none;
	}

	.dashboard-content .gm-dashboard__sidebar-link {
		white-space: nowrap;
		flex: 0 0 auto;
		padding: 12px 20px;
		border-bottom: 3px solid transparent;
		border-right: none;
	}

	.dashboard-content .gm-dashboard__sidebar-link--active {
		border-bottom-color: var(--gm-primary, #C2915F);
		border-right-color: transparent;
	}

	.dashboard-content .gm-dashboard__main {
		width: 100%;
	}

	/* ---- Footer: 2 columns ---- */
	.footer-widgets-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	/* ---- Registration benefits: 2 columns ---- */
	.registration-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* ---- Tables: horizontal scroll ---- */
	.gm-table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.gm-table-wrap table {
		min-width: 600px;
	}

	/* ---- Related models: 3 columns ---- */
	.related-models__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}


/* ==========================================================================
   3. TABLET PORTRAIT  -  max-width: 768px
   ========================================================================== */

@media (max-width: 768px) {

	/* Container */
	.container {
		max-width: 100%;
		padding-inline: 20px;
	}

	/* Typography scaling */
	html {
		font-size: 15px;
	}

	h1 { font-size: 2rem; }
	h2 { font-size: 1.625rem; }
	h3 { font-size: 1.25rem; }
	h4 { font-size: 1.05rem; }

	/* Section spacing */
	.services-section,
	.models-section,
	.pricing-section,
	.testimonials-section,
	.faq-section,
	.cta-section {
		padding-block: 48px;
	}

	.section-header {
		margin-bottom: 32px;
	}

	.section-header__title {
		font-size: 1.75rem;
	}

	.section-header__subtitle {
		font-size: 0.95rem;
	}

	/* ---- Header ---- */
	.header-topbar {
		display: none;
	}

	.header-main {
		padding-block: 12px;
	}

	.header-inner {
		gap: 12px;
	}

	.site-branding .site-logo img,
	.site-branding .custom-logo {
		max-height: 40px;
	}

	.site-title {
		font-size: 1.375rem;
	}

	.site-description {
		display: none;
	}

	/* ---- Hero ---- */
	.hero-section {
		min-height: 70vh;
	}

	.hero-section__title {
		font-size: 2.125rem;
		max-width: 100%;
	}

	.hero-section__subtitle {
		font-size: 1rem;
		max-width: 100%;
	}

	.hero-section__btn {
		padding: 14px 28px;
		font-size: 0.9rem;
	}

	.hero-section__scroll-indicator {
		bottom: 20px;
	}

	/* ---- Services: 2 columns ---- */
	.services-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.service-card {
		padding: 24px 20px;
	}

	.service-card__icon-wrap {
		width: 52px;
		height: 52px;
		font-size: 1.25rem;
	}

	/* ---- Models grid: 2 columns ---- */
	.models-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.models-section__filters {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		flex-wrap: nowrap;
		gap: 6px;
		padding-bottom: 8px;
	}

	.models-section__filter-btn {
		flex: 0 0 auto;
		font-size: 0.85rem;
		padding: 8px 16px;
	}

	/* ---- Pricing ---- */
	.pricing-card {
		min-width: 260px;
	}

	.pricing-card__amount {
		font-size: 2.5rem;
	}

	/* ---- Testimonials ---- */
	.testimonial-card {
		min-width: 280px;
		padding: 24px 20px;
	}

	.testimonials-section__arrow {
		display: none;
	}

	/* ---- CTA ---- */
	.cta-section__title {
		font-size: 1.75rem;
	}

	.cta-section__description {
		font-size: 1rem;
	}

	/* ---- FAQ ---- */
	.faq-item__question {
		padding: 16px 0;
		font-size: 1rem;
	}

	.faq-item__answer {
		font-size: 0.93rem;
	}

	/* ---- Model Profile: stack to single column ---- */
	.model-profile__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.model-profile__sidebar {
		order: -1;
	}

	.model-details-card {
		position: static;
	}

	.model-hero {
		min-height: 50vh;
	}

	.model-hero__name {
		font-size: 2rem;
	}

	.model-hero__badges {
		flex-wrap: wrap;
		gap: 6px;
	}

	.model-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	/* ---- Related models: 2 columns ---- */
	.related-models__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.related-models__title {
		font-size: 1.5rem;
	}

	/* ---- Footer: 2 columns ---- */
	.footer-widgets-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-copyright {
		order: 3;
	}

	.footer-navigation {
		order: 1;
	}

	.footer-social {
		order: 2;
	}

	.footer-menu {
		justify-content: center;
	}

	/* ---- Registration ---- */
	.registration-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.page-header__title {
		font-size: 2rem;
	}

	.registration-form-section .gm-registration-steps {
		gap: 8px;
	}

	.registration-form-section .gm-step-indicator {
		font-size: 0.8rem;
	}

	/* ---- Dashboard ---- */
	.dashboard-topbar__inner {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.dashboard-auth__inner {
		padding: 32px 24px;
	}

	/* ---- Touch targets ---- */
	button,
	.btn,
	a.btn,
	input[type="submit"],
	input[type="button"],
	.models-section__filter-btn,
	.testimonials-section__dot,
	.faq-item__question,
	.mobile-menu-toggle,
	.back-to-top {
		min-height: 44px;
		min-width: 44px;
	}

	/* Navigation links in mobile panel */
	.mobile-menu .menu-item > a {
		padding: 14px 20px;
		min-height: 44px;
		display: flex;
		align-items: center;
	}
}


/* ==========================================================================
   4. MOBILE LANDSCAPE  -  max-width: 576px
   ========================================================================== */

@media (max-width: 576px) {

	/* Container */
	.container {
		padding-inline: 16px;
	}

	/* Typography */
	html {
		font-size: 14.5px;
	}

	h1 { font-size: 1.75rem; }
	h2 { font-size: 1.5rem; }
	h3 { font-size: 1.125rem; }

	/* Section spacing */
	.services-section,
	.models-section,
	.pricing-section,
	.testimonials-section,
	.faq-section,
	.cta-section {
		padding-block: 40px;
	}

	.section-header {
		margin-bottom: 24px;
	}

	.section-header__title {
		font-size: 1.5rem;
	}

	/* ---- Hero ---- */
	.hero-section {
		min-height: 70vh;
		padding-inline: 16px;
	}

	.hero-section__title {
		font-size: 1.75rem;
		line-height: 1.25;
	}

	.hero-section__subtitle {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.hero-section__cta-group {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 320px;
		gap: 10px;
	}

	.hero-section__btn {
		text-align: center;
		width: 100%;
		padding: 14px 24px;
	}

	/* ---- Services: 1 column ---- */
	.services-section__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.service-card {
		text-align: left;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
	}

	.service-card__icon-wrap {
		flex-shrink: 0;
		width: 48px;
		height: 48px;
	}

	/* ---- Models grid: 2 columns ---- */
	.models-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.model-card__name {
		font-size: 0.9rem;
	}

	.model-card__category {
		font-size: 0.75rem;
	}

	/* ---- Pricing ---- */
	.pricing-section__grid {
		gap: 16px;
	}

	.pricing-card {
		min-width: 240px;
		padding: 24px 16px;
	}

	.pricing-card__name {
		font-size: 1.1rem;
	}

	.pricing-card__amount {
		font-size: 2.25rem;
	}

	.pricing-card__features {
		font-size: 0.875rem;
	}

	/* ---- Testimonials ---- */
	.testimonials-section__track {
		gap: 12px;
	}

	.testimonial-card {
		min-width: 260px;
		padding: 20px 16px;
	}

	.testimonial-card__quote p {
		font-size: 0.9rem;
	}

	.testimonials-section__dots {
		gap: 8px;
		margin-top: 20px;
	}

	/* ---- CTA ---- */
	.cta-section {
		padding-block: 48px;
	}

	.cta-section__title {
		font-size: 1.5rem;
	}

	.cta-section__description {
		font-size: 0.9rem;
	}

	.cta-section__btn {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	/* ---- FAQ ---- */
	.faq-section__accordion {
		gap: 0;
	}

	.faq-item__question {
		padding: 14px 0;
		font-size: 0.93rem;
		gap: 12px;
	}

	.faq-item__answer p {
		font-size: 0.875rem;
	}

	/* ---- Model Profile ---- */
	.model-hero {
		min-height: 40vh;
		padding-block: 40px;
	}

	.model-hero__name {
		font-size: 1.625rem;
	}

	.model-hero__badge {
		font-size: 0.75rem;
		padding: 4px 10px;
	}

	.model-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.model-bio__content {
		font-size: 0.9rem;
	}

	.model-details-card {
		padding: 20px;
	}

	.model-details-card__heading {
		font-size: 0.9rem;
	}

	.model-details-card__item dt,
	.model-details-card__item dd {
		font-size: 0.85rem;
	}

	.model-share__buttons {
		gap: 8px;
	}

	.model-share__btn {
		width: 40px;
		height: 40px;
	}

	/* ---- Related models ---- */
	.related-models__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	/* ---- Footer: 1 column ---- */
	.footer-widgets-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-widget-area {
		text-align: center;
	}

	.footer-bottom {
		padding-block: 20px;
	}

	.footer-copyright {
		font-size: 0.8rem;
	}

	.theme-credit {
		display: block;
		margin-top: 4px;
	}

	.footer-menu li + li {
		margin-left: 12px;
	}

	/* ---- Registration ---- */
	.registration-benefits__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.benefit-card {
		text-align: center;
	}

	.registration-form-section__inner {
		padding: 24px 16px;
	}

	.page-header {
		padding-block: 32px;
	}

	.page-header__title {
		font-size: 1.625rem;
	}

	/* ---- Dashboard ---- */
	.dashboard-auth__inner {
		padding: 24px 16px;
	}

	.dashboard-auth__title {
		font-size: 1.375rem;
	}

	.dashboard-denied__inner {
		padding: 32px 16px;
	}

	.dashboard-content .gm-dashboard__sidebar-link {
		padding: 10px 14px;
		font-size: 0.85rem;
	}

	/* ---- Back to top ---- */
	.back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}

	/* ---- Tables ---- */
	.gm-table-wrap table {
		font-size: 0.85rem;
	}

	.gm-table-wrap th,
	.gm-table-wrap td {
		padding: 10px 12px;
	}
}


/* ==========================================================================
   5. MOBILE PORTRAIT  -  max-width: 480px
   ========================================================================== */

@media (max-width: 480px) {

	/* Container */
	.container {
		padding-inline: 12px;
	}

	/* Typography */
	html {
		font-size: 14px;
	}

	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.3rem; }
	h3 { font-size: 1.05rem; }

	/* ---- Hero ---- */
	.hero-section__title {
		font-size: 1.5rem;
	}

	.hero-section__subtitle {
		font-size: 0.85rem;
	}

	.hero-section__btn {
		padding: 12px 20px;
		font-size: 0.85rem;
	}

	/* ---- Services ---- */
	.service-card {
		padding: 20px 16px;
	}

	.service-card__title {
		font-size: 1rem;
	}

	.service-card__description {
		font-size: 0.85rem;
	}

	/* ---- Models grid: 1 column on very small screens ---- */
	.models-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.models-section__view-all {
		font-size: 0.9rem;
	}

	/* ---- Pricing ---- */
	.pricing-card {
		min-width: 220px;
		padding: 20px 14px;
	}

	.pricing-card__badge {
		font-size: 0.7rem;
		padding: 3px 10px;
	}

	.pricing-card__amount {
		font-size: 2rem;
	}

	.pricing-card__feature {
		font-size: 0.82rem;
		padding: 6px 0;
	}

	.pricing-card__btn {
		padding: 12px 20px;
		font-size: 0.85rem;
	}

	/* ---- Testimonials ---- */
	.testimonial-card {
		min-width: 240px;
	}

	.testimonial-card__star {
		width: 14px;
		height: 14px;
	}

	.testimonial-card__name {
		font-size: 0.9rem;
	}

	.testimonial-card__role {
		font-size: 0.75rem;
	}

	.testimonials-section__dot {
		width: 10px;
		height: 10px;
	}

	/* ---- CTA ---- */
	.cta-section__title {
		font-size: 1.3rem;
	}

	/* ---- FAQ ---- */
	.faq-item__question-text {
		font-size: 0.875rem;
	}

	.faq-item__icon svg {
		width: 16px;
		height: 16px;
	}

	/* ---- Model Profile ---- */
	.model-hero {
		min-height: 35vh;
		padding: 24px 12px;
	}

	.model-hero__name {
		font-size: 1.375rem;
	}

	.model-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}

	.model-portfolio__title,
	.model-bio__title {
		font-size: 1.1rem;
	}

	.model-details-card {
		padding: 16px;
	}

	.model-details-card__book-btn {
		font-size: 0.9rem;
		padding: 12px 16px;
	}

	/* ---- Related models: 2 columns with tighter gap ---- */
	.related-models__grid {
		gap: 10px;
	}

	.related-models__title {
		font-size: 1.25rem;
		margin-bottom: 16px;
	}

	/* ---- Footer ---- */
	.footer-menu {
		flex-direction: column;
		gap: 8px;
	}

	.footer-menu li + li {
		margin-left: 0;
	}

	.social-links {
		gap: 12px;
	}

	.social-links a {
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}

	/* ---- Registration ---- */
	.benefit-card__icon {
		width: 48px;
		height: 48px;
	}

	.benefit-card__icon i {
		font-size: 1.125rem;
	}

	.benefit-card__title {
		font-size: 1rem;
	}

	.benefit-card__description {
		font-size: 0.85rem;
	}

	/* ---- Dashboard ---- */
	.dashboard-topbar__greeting {
		font-size: 0.9rem;
	}

	.dashboard-topbar__logout {
		font-size: 0.85rem;
	}

	/* ---- Mobile navigation panel ---- */
	.mobile-nav-panel {
		width: 100%;
		max-width: 100%;
	}

	.mobile-nav-header {
		padding: 12px 16px;
	}

	.mobile-nav-cta .btn {
		width: 100%;
		text-align: center;
	}

	/* ---- Preloader ---- */
	.preloader-spinner {
		width: 40px;
		height: 40px;
	}
}


/* ==========================================================================
   6. ORIENTATION-SPECIFIC RULES
   ========================================================================== */

/* Landscape orientation on small devices */
@media (max-height: 500px) and (orientation: landscape) {
	.hero-section {
		min-height: 100vh;
		padding-block: 40px;
	}

	.hero-section__title {
		font-size: 1.5rem;
	}

	.hero-section__subtitle {
		font-size: 0.85rem;
	}

	.hero-section__scroll-indicator {
		display: none;
	}

	.model-hero {
		min-height: 60vh;
	}
}


/* ==========================================================================
   7. HIGH-RESOLUTION DISPLAYS
   ========================================================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.site-branding .site-logo img,
	.site-branding .custom-logo {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}
}


/* ==========================================================================
   8. PRINT STYLES
   ========================================================================== */

@media print {
	/* Hide non-essential elements */
	.site-header,
	.header-topbar,
	.mobile-menu-toggle,
	.mobile-nav-overlay,
	.back-to-top,
	.site-preloader,
	.hero-section__scroll-indicator,
	.testimonials-section__arrow,
	.testimonials-section__dots,
	.cta-section,
	.model-share,
	.footer-social,
	.footer-navigation,
	.skip-link {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
		font-size: 12pt;
		line-height: 1.5;
	}

	.container {
		max-width: 100%;
		padding: 0;
	}

	a {
		color: #000;
		text-decoration: underline;
	}

	/* Show URLs after links */
	.entry-content a[href]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		color: #555;
	}

	/* Force page breaks before major sections */
	.models-section,
	.pricing-section,
	.faq-section {
		page-break-before: auto;
	}

	.model-card,
	.pricing-card,
	.testimonial-card {
		page-break-inside: avoid;
	}

	/* Single-column grids */
	.models-section__grid,
	.services-section__grid,
	.footer-widgets-grid,
	.registration-benefits__grid,
	.related-models__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.pricing-section__grid {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		overflow: visible !important;
	}

	.pricing-card {
		min-width: 0 !important;
	}
}


/* ==========================================================================
   9. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.site-preloader {
		display: none !important;
	}

	.hero-section__scroll-indicator {
		animation: none;
	}
}


/* ==========================================================================
   10. FOCUS-VISIBLE FOR KEYBOARD NAVIGATION
   ========================================================================== */

@media (any-hover: none) {
	/* Touch devices: enlarge interactive targets */
	.models-section__filter-btn {
		padding: 10px 18px;
	}

	.testimonials-section__dot {
		width: 14px;
		height: 14px;
	}

	.social-links a {
		min-width: 44px;
		min-height: 44px;
	}

	.faq-item__question {
		padding: 16px 0;
	}

	.footer-menu a {
		padding: 8px 4px;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}

	/* Remove hover-dependent reveals on touch devices */
	.model-card__overlay {
		opacity: 1;
		background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
	}

	.service-card__link {
		opacity: 1;
	}

	.model-portfolio__zoom {
		opacity: 0.6;
	}
}
