/**
 * Privacy Policy legal body — styles the WordPress editor output to match
 * Figma node 3350:16560. Content column is 736px, centered.
 */

.gh-pp-content {
	padding: 120px 0 96px;
}

.gh-pp-content__inner {
	max-width: 936px;
	margin: 0 auto;
}

/* First block never gets top spacing. */
.gh-pp-content__inner > *:first-child {
	margin-top: 0;
}

/* Section titles. */
.gh-pp-content__inner h2 {
	margin: 80px 0 32px;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 24px;
	line-height: 32px;
	color: #000;
}

.gh-pp-content__inner h3 {
	margin: 32px 0 16px;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	color: #000;
}

.gh-pp-content__inner p {
	margin: 0 0 28px;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-text-primary);
}

.gh-pp-content__inner ul,
.gh-pp-content__inner ol {
	margin: 0 0 28px;
	padding-left: 24px;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-text-primary);
}

.gh-pp-content__inner li {
	margin: 0 0 8px;
}
/* Leading defined term in each list item (e.g. "Subscriber", "User"). The
   custom face carries the weight, so reset the UA bold to avoid faux-bolding. */
.gh-pp-content__inner li strong {
	font-family: 'avenir_next_worldbold', 'Verdana';
	font-weight: normal;
}
.gh-pp-content__inner a {
	color: #008392;
	text-decoration: underline;
}

/* IMPORTANT callout — authored as a blockquote with a leading <strong>. */
.gh-pp-content__inner blockquote {
	margin: 48px 0;
	padding: 28px;
	background: var(--gh-accent);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gh-pp-content__inner blockquote strong {
	display: block;
	font-family: 'avenir_next_worlddemi', 'Verdana';
	font-weight: normal;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #004d37;
}

.gh-pp-content__inner blockquote p {
	margin: 0;
	font-size: 14px;
	line-height: 24px;
}

/* Styled comparison table (approximates the Figma Scope screenshot). */
.gh-pp-content__inner table {
	width: 100%;
	margin: 48px 0;
	border-collapse: collapse;
	border: 1px solid #ececec;
	/* border-radius: 12px; */
	overflow: hidden;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: var(--gh-text-primary);
}

.gh-pp-content__inner th,
.gh-pp-content__inner td {
	padding: 16px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #ececec;
}

.gh-pp-content__inner thead th {
	background: #FAF2EB;
	font-family: 'avenir_next_worlddemi', 'Verdana';
	font-weight: normal;
}

.gh-pp-content__inner tbody tr:last-child td {
	border-bottom: 0;
}

/* Block-editor tables are wrapped in <figure class="wp-block-table">; reset the
   UA figure margin so the table isn't indented and keeps the 48px rhythm. */
.gh-pp-content__inner figure.wp-block-table {
	margin: 48px 0;
}
.gh-pp-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 35px;
    margin-top: 20px;
}

.gh-pp-content table, .gh-pp-content th, .gh-pp-content td {
    border: 1px solid #686868 !important;
}

.gh-pp-content th, .gh-pp-content td {
    padding: 15px !important;
}

.gh-pp-content th {
    min-width: 110px;
    color: #2b2b2b;
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
}
@media (max-width: 1023px) {
	.gh-pp-content {
		padding: 80px 0 64px;
	}
	
}
@media (max-width: 991px) {
	.gh-pp-content tr {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        width: 100%;
        padding: 24px 0;
    }

    .gh-pp-content table {
        border: 0px !important;
    }
}
@media (max-width: 767px) {
	
	.gh-pp-content__inner h2 {
        margin: 32px 0 32px;
    }
	/* Let wide tables scroll instead of breaking the layout. */
	/* .gh-pp-content__inner table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	} */
}
