/* ===========================================================================
   About Us (/services/) page styles.
   Loaded after bootstrap.min.css so it can layer on top. Mirrors the home
   page's cream section banding and dark FOR SUPPLIERS band so /services/
   reads as part of the same design family.
   =========================================================================== */

/* Same cream tint the home page gives these bands (home does it inline). */
.lmm-main-light,
.lmm-extra-content {
	min-height: 0 !important;
	background-color: #f7f5f1 !important;
}

.black-bg {
	background-color: #000;
}

/* OUR STORY: photo and copy vertically centred against each other on sm+. */
@media (min-width: 768px) {
	.about-story-row {
		display: flex;
		align-items: center;
	}
	/* stop Bootstrap's clearfix :before/:after becoming phantom flex items */
	.about-story-row:before,
	.about-story-row:after {
		content: none;
	}
}

/* Trustpilot line in the story band: sit the stars on the text baseline
   (same nudge the home page gives .header-ratings-container's stars). */
.about-story-row .stars .glyphicon-star {
	top: 2.5px;
}

.about-story-img {
	width: 100%;
	height: auto;
	border-radius: 20px;	/* matches the home page's rounded photo tiles */
}

/* Category cards are whole-card links here (home drives its cards with a
   page-local JS click handler): keep the body copy's colour and never
   underline it - the orange "Browse ..." line is the visible affordance. */
a.about-card-a {
	display: flex;			/* preserve .home-wedding-card-col's equal-height stretch */
	width: 100%;
	color: inherit;
}
a.about-card-a:hover,
a.about-card-a:focus {
	color: inherit;
	text-decoration: none;
}

/* Trustpilot quote cards (laid out by the home page's .latest-reviews grid). */
.about-review-stars {
	margin-bottom: 10px;
}
.about-review-stars .glyphicon {
	font-size: 14px;
	margin-right: 1px;
}
.about-review-quote {
	margin: 0 0 15px;
}

/* FOR SUPPLIERS: equal columns, video centred against the copy on sm+. */
@media (min-width: 768px) {
	.for-suppliers-row {
		display: flex;
		align-items: center;
	}
	.for-suppliers-row:before,
	.for-suppliers-row:after {
		content: none;
	}
}

/* Responsive 16:9 YouTube embed (was an inline style block in the old page). */
.yt-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 16px;	/* match .wedding-category-card corners */
}
.yt-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Divider between the stats and the RECENT CLIENTS strip. Equal margins
   above and below (the stats row drops its own bottom margin for this). */
.about-divider {
	margin: 45px 0;
}

/* RECENT CLIENTS logo strip. lmm.less only styles .customer-logos inside
   .lmm-extra-content; here the strip sits in the plain stats section, so
   restate the home page's layout and grey recolour. */
.customer-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 15px;
}
.customer-logos img {
	width: 60px;
	height: 60px;
	filter: invert(48%);
}

/* "What you'll find on Gig Heaven": the three category link paragraphs. */
.about-links-col h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
}
.about-links-col p {
	margin: 0;
	color: #5F6368;
}

/* FAQ: one bordered row per question. */
.about-faq-item {
	padding: 20px 0;
	border-bottom: 1px solid #e8e2d8;
}
.about-faq-item:last-child {
	border-bottom: 0;
}
.about-faq-item h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}
.about-faq-item p {
	margin: 0;
	color: #5F6368;
}
