/* =========================================================================
   TL Consult — inner page components (About, Services, Training,
   Value Add, Contact, Blog). Shared chrome/components live in base.css.
   ========================================================================= */

/* ---- page head ---- */
.tlc-pagehead { padding-top: 64px; padding-bottom: 8px; }
.tlc-pagehead__title { font-family: 'Spectral', Georgia, serif; font-weight: 600; font-size: 54px;
	line-height: 1.06; letter-spacing: -.015em; color: var(--teal-dk); margin: 22px 0 0; }
.tlc-pagehead__lead { font-size: 19px; line-height: 1.7; color: var(--muted-2); max-width: 680px; margin-top: 22px; }
.tlc-pagehead__sub { font-family: 'Spectral', Georgia, serif; font-style: italic; font-size: 20px; color: var(--clay); margin-top: 10px; }

/* generic section rhythm + prose */
.tlc-section { padding-top: 56px; padding-bottom: 8px; }
.tlc-prose p { font-size: 16.5px; line-height: 1.75; color: var(--muted-2); margin-bottom: 18px; max-width: 720px; }

/* ---- checklist ---- */
.tlc-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tlc-checklist li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.55; color: var(--muted-2); }
.tlc-checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
	border-radius: 50%; background: var(--mint);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230e4f47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; }

/* ---- service detail rows ---- */
.tlc-srow { display: grid; grid-template-columns: 340px 1fr; gap: 48px; padding: 44px 0; border-top: 1px solid var(--line); align-items: start; }
.tlc-srow:first-of-type { border-top: 0; }
.tlc-srow__head { position: sticky; top: 100px; }
.tlc-srow__num { width: 46px; height: 46px; border-radius: 12px; background: var(--mint); display: flex; align-items: center; justify-content: center; color: var(--teal); font-weight: 800; margin-bottom: 18px; }
.tlc-srow__title { font-family: 'Spectral', Georgia, serif; font-size: 30px; color: var(--teal-dk); line-height: 1.12; margin-bottom: 14px; }
.tlc-srow__lead { font-size: 16px; line-height: 1.7; color: var(--muted); font-style: italic; }

/* ---- generic panel / cards ---- */
.tlc-panelgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tlc-panel { background: #fff; border-radius: 16px; padding: 34px 32px; box-shadow: 0 12px 30px rgba(40,45,40,.06); }
.tlc-panel h3 { font-family: 'Spectral', Georgia, serif; font-size: 22px; color: var(--teal-dk); margin-bottom: 16px; }
.tlc-panel--band { background: var(--band); box-shadow: none; }

/* ---- about ---- */
.tlc-about { display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: start; padding-top: 48px; }
.tlc-about__media { position: sticky; top: 100px; }
.tlc-about__portrait { width: 100%; aspect-ratio: 5 / 6; border-radius: 18px 18px 120px 18px; background: #146157 center 18% / cover no-repeat; box-shadow: 0 24px 50px rgba(40,45,40,.16); }
.tlc-about__badges { display: flex; gap: 22px; align-items: center; margin-top: 26px; }
.tlc-about__badges img { height: 44px; width: auto; mix-blend-mode: multiply; }
.tlc-creds { list-style: none; margin: 26px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.tlc-creds li { display: flex; gap: 12px; align-items: baseline; font-size: 16px; color: var(--teal-dk); font-weight: 600; }
.tlc-creds li span { color: var(--clay); font-weight: 800; }
.tlc-quotecard { background: var(--teal); color: #eaf2ef; border-radius: 18px; padding: 40px 44px; margin-top: 34px; }
.tlc-quotecard p { font-family: 'Spectral', Georgia, serif; font-style: italic; font-size: 22px; line-height: 1.5; color: #fff; }

/* ---- contact ---- */
.tlc-contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; padding-top: 40px; }
.tlc-contact__details { display: grid; gap: 24px; }
.tlc-cdetail { display: flex; gap: 16px; align-items: flex-start; }
.tlc-cdetail__ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--mint); display: flex; align-items: center; justify-content: center; color: var(--teal); }
.tlc-cdetail__ico svg { width: 20px; height: 20px; }
.tlc-cdetail__k { font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); margin-bottom: 3px; }
.tlc-cdetail__v { font-size: 16.5px; color: var(--teal-dk); font-weight: 600; line-height: 1.45; }
.tlc-socials { display: flex; gap: 12px; margin-top: 4px; }
.tlc-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .15s ease, background .15s ease; }
.tlc-socials a:hover { transform: translateY(-2px); background: var(--clay); }
.tlc-socials svg { width: 18px; height: 18px; }

.tlc-formcard { background: #fff; border-radius: 18px; padding: 40px 40px 34px; box-shadow: 0 18px 44px rgba(40,45,40,.10); }
.tlc-formcard h2 { font-family: 'Spectral', Georgia, serif; font-size: 26px; color: var(--teal-dk); margin-bottom: 22px; }
.tlc-formcard .wpcf7-form p { margin: 0 0 16px; }
.tlc-formcard label { display: block; font-weight: 600; font-size: 14px; color: var(--teal-dk); margin-bottom: 6px; }
.tlc-formcard input[type="text"],
.tlc-formcard input[type="email"],
.tlc-formcard input[type="tel"],
.tlc-formcard textarea {
	width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
	background: var(--ivory); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease; }
.tlc-formcard input:focus, .tlc-formcard textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,79,71,.12); }
.tlc-formcard textarea { min-height: 140px; resize: vertical; }
.tlc-formcard input[type="submit"] { background: var(--teal); color: #fff; font-weight: 700; font-size: 16px;
	border: 0; border-radius: 100px; padding: 15px 38px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.tlc-formcard input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,79,71,.28); }
.tlc-formcard .wpcf7-not-valid-tip { color: #b0472c; font-size: 13px; }
.tlc-formcard .wpcf7-response-output { border-radius: 10px; margin: 8px 0 0; font-size: 14px; }

/* ---- blog ---- */
.tlc-bloggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 40px; }
.tlc-postcard { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(40,45,40,.06);
	display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.tlc-postcard:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(40,45,40,.12); }
.tlc-postcard__thumb { aspect-ratio: 16 / 10; background: var(--mint) center / cover no-repeat; }
.tlc-postcard__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.tlc-postcard__date { font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); margin-bottom: 10px; }
.tlc-postcard__title { font-family: 'Spectral', Georgia, serif; font-size: 21px; line-height: 1.2; color: var(--teal-dk); margin-bottom: 12px; }
.tlc-postcard__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; }
.tlc-postcard__more { margin-top: auto; font-weight: 700; font-size: 14px; color: var(--teal); }
.tlc-empty { padding: 40px 0 20px; font-size: 17px; color: var(--muted); }

/* ---- single post ---- */
.tlc-single { max-width: 760px; margin: 0 auto; padding-top: 48px; }
.tlc-single__meta { font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.tlc-single__title { font-family: 'Spectral', Georgia, serif; font-weight: 600; font-size: 44px; line-height: 1.1; color: var(--teal-dk); margin-bottom: 28px; }
.tlc-single__content p { font-size: 17px; line-height: 1.8; color: var(--muted-2); margin-bottom: 20px; }
.tlc-single__content h2, .tlc-single__content h3 { font-family: 'Spectral', Georgia, serif; color: var(--teal-dk); margin: 32px 0 12px; }
.tlc-single__content img { border-radius: 12px; margin: 12px 0; }
.tlc-single__content a { color: var(--teal); border-bottom: 1px solid var(--clay); }

/* ---- shared CTA band ---- */
/* margin-top only — must not override the `margin: 0 auto` centring on .tlc-wrap */
.tlc-cta { margin-top: 72px; }
.tlc-cta__inner { background: var(--teal); border-radius: 24px; padding: 60px; text-align: center; color: #eaf2ef; }
.tlc-cta__title { font-family: 'Spectral', Georgia, serif; font-weight: 600; font-size: 40px; line-height: 1.12; color: #fff; max-width: 700px; margin: 0 auto 16px; }
.tlc-cta__lead { font-size: 17px; color: #cfe1dc; max-width: 520px; margin: 0 auto 30px; }
.tlc-page-end { padding-bottom: 80px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
	.tlc-about { grid-template-columns: 340px 1fr; gap: 44px; }
	.tlc-contact { grid-template-columns: 1fr; gap: 36px; }
	.tlc-bloggrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.tlc-pagehead__title { font-size: 40px; }
	.tlc-srow { grid-template-columns: 1fr; gap: 20px; padding: 34px 0; }
	.tlc-srow__head { position: static; }
	.tlc-panelgrid { grid-template-columns: 1fr; }
	.tlc-about { grid-template-columns: 1fr; }
	.tlc-about__media { position: static; }
	.tlc-about__portrait { max-width: 380px; }
	.tlc-bloggrid { grid-template-columns: 1fr; }
	.tlc-cta__inner { padding: 44px 28px; }
	.tlc-cta__title { font-size: 30px; }
	.tlc-single__title { font-size: 34px; }
}
