:root {
    --gp-red: #cc0f09;
    --gp-red-active-bg: #fff;
    --gp-red-active-text: #cc0f09;
    --gp-sans: "Lato", Arial, sans-serif;
    --gp-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

body {
    font-family: var(--gp-sans);
    margin: 0;
    padding: 0;
	
}

.site-header {
    box-sizing: border-box;
    height: 90px;
    margin: 0 0 5px;
    padding: 5px;
    background: var(--gp-red) url(/images/header.png) 0 0 repeat-x;
}

.site-logo {
    display: block;
    aspect-ratio: 264 / 50;
    width: auto;
    height: 100%;
    background: url(/images/grandprix-logo.svg?v=20260819-1) left center / contain no-repeat;
}

.site-logo span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-logo:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}




.sponsor {
    color: white;
}

nav {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 4px;
    background-color: white;
    font-size: clamp(16px, 1.25vw, 20px);
    text-align: center;
    padding: 3px;
}

nav a {
    color: white;
    text-decoration: none;
    background-color: var(--gp-red);
    padding: 4px 8px;
    border-radius: 10px;
}

nav a.selected {
	 background-color: var(--gp-red-active-bg);
	 box-shadow: inset 0 0 0 1px var(--gp-red);
	 color: var(--gp-red-active-text);
	 text-decoration: none;
}

.button,
.button-red,
.button-black,
.actions input[type="submit"],
button[type="submit"] {
    appearance: none;
    background-color: var(--gp-red);
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    padding: 7px 12px;
    text-align: center;
    text-decoration: none;
}

.button:hover,
.button:focus,
.button-red:hover,
.button-red:focus,
.button-black,
.button-black:hover,
.button-black:focus,
.actions input[type="submit"]:hover,
.actions input[type="submit"]:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
    background-color: var(--gp-red-active-bg);
    box-shadow: inset 0 0 0 1px var(--gp-red);
    color: var(--gp-red-active-text);
}



.main-content {
	font-size: clamp(21px, 1.5vw, 24px);
	margin: 30px;
    max-width: 80ch;
	padding:5px;
	vertical-align: top;
	
}

.main-content h2 {
    font-size: clamp(24px, 2vw, 32px);
}

.story-title,
.main-content > h1 {
    font-family: var(--gp-sans);
    font-weight: 900;
}

.story-title + h2,
.main-content > h1 + h3,
.date,
.story-photo-caption,
.story-photo-credits,
.story-photo-copyright {
    font-family: var(--gp-sans);
}

.story-title ~ p:not(.date),
.multicolumn,
.multicolumn ~ p {
    font-family: var(--gp-serif);
    font-size: clamp(19px, 1.35vw, 21px);
    line-height: 1.6;
}

.multicolumn h2,
.multicolumn h3 {
    font-family: var(--gp-serif);
    font-weight: 600;
}
.main-content strong {
	font-weight: 900;
}

.main-content:has(.homepage-layout) {
    box-sizing: border-box;
    margin: 16px auto 30px;
    max-width: 1210px;
    width: calc(100% - 60px);
}

.race-hub {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    background-color: #f19313;
/*    padding-bottom: 20px;
*/}

.racehub-grid-box {
    position: relative;
    overflow: hidden;
}

.racehub-grid-box img {
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-top: 17px;
}

.racehub-grid-box .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px;
    border-radius: 7px;
    margin: 0;
    width: calc(100%);
    border: 1px solid #bbb;
    box-sizing: border-box;
}

.racehub-wrapper {
    border: 3px solid #f19313;
    position: relative;
    background-color: #f19313;
	padding:4px;
	padding-bottom: 10px;
	padding-top: 22px; 
}

.racehub-header {
    color: white;
    height: 25px;
    line-height: 15px; 
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.current-event {
    position: absolute;
    top: 0;
    left: 2px;
    background-color: #f19313;
    color: white;
    padding: 0px;
    font-weight: bold;
}
.current-event-more {
    position: absolute;
    top: 0;
    right: 2px;
    font-size: 0.8em;
    background-color: #f19313;
    color: white;
    padding: 2px;
	padding-left: 10px;
    font-weight: bold;
}

.current-event-more a {
    color: white;
    text-decoration: none;
    border: 1px solid #959d9f;
    background-color: #959d9f;
    padding: 1px;
    border-radius: 5px;
}

.racehub-listing {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 10px;
    align-items: left;
}

.race-photo {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.race-photo img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.race-info {
    background-color: re;
    padding: 10px;
}

.race-info a {
    text-decoration: none;
    color: inherit;
}

.race-info h3 {
    margin: 0;
}

.news-listing,
.race-story-listing,
.feature-listing {
    border-bottom: 1px solid #ddd;
    padding: 0 0 12px;
    margin-bottom: 12px;
}

.news-date {
    border-top: 2px solid #222;
    font-size: 18px;
    margin: 24px 0 12px;
    padding-top: 8px;
}

.news-pagination {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news-pagination-bottom {
    margin-top: 20px;
}

.news-month-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}

.news-month-navigation a,
.news-pagination a,
.news-archive-months a {
    background: #fff;
    border: 1px solid #bbb;
    color: #222;
    padding: 7px 10px;
    text-decoration: none;
}

.news-month-navigation a:hover,
.news-pagination a:hover,
.news-archive-months a:hover,
.news-month-navigation a.current {
    background: #222;
    color: #fff;
}

.news-archive-link {
    font-weight: bold;
}

.news-archive-year {
    border-top: 2px solid #222;
    padding: 10px 0 18px;
}

.news-archive-year h2 {
    margin: 0 0 10px;
}

.news-archive-months {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
	padding:5px;
}

.news-grid-box {
    position: relative;
    overflow: hidden;
}

.news-grid-box img {
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-top: 17px;
}

.photo-gallery-index {
    column-gap: 3px;
    grid-template-columns: repeat(4, 300px);
    justify-content: start;
    margin-bottom: 18px;
    padding: 0;
    row-gap: 10px;
}

.photo-gallery-card {
    width: 300px;
}

.photo-gallery-card img {
    height: 200px;
    margin-top: 0;
    object-fit: cover;
    width: 300px;
}

.photo-gallery-card .text-overlay {
    display: flex;
    flex-direction: column;
}

.photo-gallery-date {
    font-size: 0.72em;
    font-weight: bold;
}

.main-content:has(.photo-gallery-index) {
    max-width: 1209px;
}

.news-grid-box .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px;
    border-radius: 7px;
    margin: 0;
    width: calc(100%);
    border: 1px solid #bbb;
    box-sizing: border-box;
/*    font-size: 0.8em;*/
	
}

.homepage-layout .racehub-grid-box .text-overlay,
.homepage-layout .news-grid-box .text-overlay {
    font-family: var(--gp-sans);
    font-weight: 700;
    line-height: 1.15;
    overflow: hidden;
}

.homepage-layout .news-grid-box:first-child .text-overlay {
    font-weight: 900;
}

.homepage-layout .racehub-grid-box .text-overlay {
    display: -webkit-box;
    font-size: clamp(12px, 1.05vw, 16px);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.homepage-layout .news-grid-box .text-overlay {
    font-size: clamp(13px, 1.25vw, 24px);
}
footer {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    background-color: #ccc;
    text-align: center;
    padding: 10px;
    position: relative;
}

.footer-left {
    text-align: left;
}

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

.footer-right {
    text-align: right;
}

footer a {
    color: #cc0f09;
    text-decoration: none;
}

.footer-session-form {
    display: inline;
}

button.footer-session-link {
    appearance: none;
    background: none;
    border: 0;
    color: #cc0f09;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.footer-logo {
    position: absolute;
    bottom: 7px;
    right: 20px;
    width: 105px;
    height: 24px;
    background-image: url(/images/sprite.png);
    background-repeat: no-repeat;
    background-position: 0 -51px;
}


.story-photo {
    float: left; /* Add float:left to make text flow around the image */
    margin-right: 20px; /* Add some margin to the right of the image */
    margin-bottom: 5px; /* Add some margin to the bottom of the image */
	width:300px;
	font-size:16px;
	background-color: #eee;
	
}


div.photo-gallery {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	/*grid-template-rows: 50px;
	*/
	/*grid-template-rows: repeat(auto, minmax(100px, 305px));*/
	grid-auto-rows: 100px;
/*	grid-auto-flow: row;*/
	grid-gap: 20px;
/*	height: fit-content;*/
	padding-bottom: 20px;
	justify-content: center;
	align-items: center;
	
}
div.photo-gallery .photo {
	/*background-color: black;*/
	align-items: center;
	justify-content: center;
}
div.photo-gallery a.tn {
/*	align-items: center;
	self-content: center;*/
}
div.photo-gallery2 {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	/*grid-template-rows: 50px;
	*/
	/*grid-template-rows: repeat(auto, minmax(100px, 305px));*/
	grid-auto-rows: 200px;
/*	grid-auto-flow: row;*/
	grid-gap: 2rem;
/*	height: fit-content;*/
	padding-bottom: 20px;
	justify-content: center;
	align-items: center;
	font-size: 70%;
	
	
}
div.photo-gallery2 .photo {
	/*background-color: black;*/
	align-items: center;
	justify-content: center;
}
div.photo-gallery2 a.tn {
/*	align-items: center;
	self-content: center;*/
}



#wsw-todaysstories { 
	width: 80%;
	margin: 15px;
	margin-top: 20px;
	margin-bottom: 15px;
	padding: 5px; 
	border: 1px solid #777;
	font-size: 90%;
	}

#wsw-todaysstoriestitle { 
	color: white;
	background-color: #777;
	text-transform: uppercase;
	padding: 2px; 
	padding-left: 4px;
	margin-bottom: 4px;
	}

	h4 {
		font-weight:500;
		color: #333;
		font-size: 0.9em;
		line-height: 0%;
		padding: 0.0em;
		
	}
	
	#wsw-f12007racestable {
		border-collapse: collapse;
		font-size: 14px;
		min-width: 1180px;
		width: 100%;
		padding: 0;
		margin: 0;
		background: #eee;
		border: 1px solid #444;	
	}
	#wsw-f12007racestable td {
		padding: 2px;
	}
	#wsw-f12007racestable .f1-title {
		text-align: center;
		background: url("http://photos.grandprix.com/jpeg/menubutton-grey.jpg") left top;
		color: #fff;
		padding: 3px;
	}
	#wsw-f12007racestable .f1-header {
		background: #ccc;
		color: #000;
	}
	#wsw-f12007racestable .f1-round, #wsw-f12007racestable .f1-event, #wsw-f12007racestable .f1-driver, #wsw-f12007racestable .f1-total, #wsw-f12007racestable .f1-date, #wsw-f12007racestable .f1-circuit, #wsw-f12007racestable .f1-length, #wsw-f12007racestable .f1-race, #wsw-f12007racestable .f1-laps, #wsw-f12007racestable .f1-distance, #wsw-f12007racestable .f1-winner, #wsw-f12007racestable .f1-report {
		font-size: inherit;
	}
	#wsw-f12007racestable .f1-round {
		background: #ccc;
		color: #000;
		text-align: right;
		width: 15px;
	}
	#wsw-f12007racestable .f1-event {
		background: #191970;
		color: #fff;
		font-size: 100%;
		font-weight: bold;
		padding-left: 5px;
	}
	#wsw-f12007racestable .f1-driver {
		background: #191970;
		color: #fff;
		font-size: 14px;
		font-weight: bold;*/
		padding-left: 5px;
	}
	#wsw-f12007racestable .f1-race {
		font-size: 12px;
		text-align: center;
		width:8px;
	}
	#wsw-f12007racestable .f1-total {
		background: #191970;
		color: #fff;
		font-size: 13px;
		font-weight: bold;
		text-align: right;	
	}

	.standings-table-scroll {
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.standings-table-scroll:focus-visible {
		outline: 2px solid var(--gp-red);
		outline-offset: 2px;
	}
	div table#wsw-f12007racestable .f1-event a {
		color: #ddd;
	}
	#wsw-f12007racestable .f1-date {
		padding-left: 5px;
	}
	#wsw-f12007racestable .f1-laps {
		text-align: center;
	}
	#wsw-f12007racestable .f1header-header .wsw-date {
		padding-left: 5px;
	}


	/*Highlight the current race */

	#wsw-f12007racestable tr.f1-currentracerow .f1-round {
		background-color: #bfbfbf;
	}
	#wsw-f12007racestable tr.f1-currentracerow .f1-event {
		background-color: #78789a;
	}
	#wsw-f12007racestable tr.f1-currentracerow td {
		background-color: #cdcdcd;
	}
	#wsw-f12007racestable tr.f1-currentracerow {
		border: 1px solid #666;
	}


	/* Pagination ---------------------------------------------------------*/

	.pagination a, .pagination span.current, .pagination span.gap {
	    float: left;
	    padding: 0 14px;
	    line-height: 38px;
	    text-decoration: none;
		color: black;
	    background-color: white;
/*	    border-left-width: 0;*/
		margin: 1px;
	    border: 1px solid #888;
	}

	.pagination {
/*	    float: left;*/
		display: block;
		padding: 1px;
		margin: 3px;
	    .first{
	        padding : 0;
	        float: none;
/*	        border: none;*/
	    }
	    .prev {
	        padding : 0;
	        float: none;
/*	        border: none;*/
	    }
	    .page{
	        padding : 0;
	        float: none;
/*	        border: none;*/
	    }
	    .next{
	        padding : 0;
	        float: none;
/*	        border: none;
*/	    }
	    .last{
	        padding : 0;
	        float: none;
/*	        border: none;
*/	    }
	}





	/* photos */
	.grid-container {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 10px;
	}

	.grid-item {
	  width: 100%;
	  height: auto;
	}

	.photo {
	  width: 100%;
	  height: auto;
	  object-fit: cover;
	}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
    .photo-gallery-index {
        grid-template-columns: repeat(2, 300px);
    }

    .homepage-layout .race-hub {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 1280px) {
    .main-content:has(.homepage-layout) {
        max-width: none;
    }

    .homepage-layout .news {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* iPhone media query */
@media only screen and (max-width: 767px) {
    .site-header {
        height: 35px;
        margin-bottom: 5px;
        padding: 2px;
    }

    .site-logo {
        width: auto;
        height: 100%;
    }

    nav {
        font-size: 14px;
    }
	nav a {
	    padding: 2px 3px;
	    border-radius: 5px;
	}

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

    .racehub-grid-box .text-overlay,
    .news-grid-box .text-overlay {
        font-size: 50%;
    }

    .homepage-layout .racehub-grid-box .text-overlay {
        font-size: 12px;
    }

    .homepage-layout .news-grid-box .text-overlay {
        font-size: 16px;
    }

    .news {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage-layout .news {
        grid-template-columns: 1fr;
    }

    .photo-gallery-index {
        grid-template-columns: 300px;
    }

    .main-content:has(.photo-gallery-index) {
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 0;
        padding-right: 0;
    }
	
	.main-content {
	    font-size: 16px;
		padding: 15px;
	}

    .main-content:has(.homepage-layout) {
        margin: 12px auto 24px;
        width: calc(100% - 20px);
    }

    .news-listing,
    .race-story-listing,
    .feature-listing {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 8px;
    }

    .news-date {
        font-size: 16px;
        margin-top: 18px;
    }

    .news-month-navigation a,
    .news-pagination a,
    .news-archive-months a {
        padding: 6px 8px;
    }

    .news-listing .race-photo,
    .race-story-listing .race-photo,
    .feature-listing .race-photo {
        padding: 4px;
    }

    .news-listing .race-photo img,
    .race-story-listing .race-photo img,
    .feature-listing .race-photo img {
        width: 120px;
        height: 80px;
    }

    .news-listing .race-info,
    .race-story-listing .race-info,
    .feature-listing .race-info {
        padding: 4px;
    }

    .news-listing .race-info p,
    .race-story-listing .race-info p,
    .feature-listing .race-info p {
        margin: 6px 0 0;
    }

    .news-listing .race-info p {
        display: none;
    }
	
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .homepage-layout .news {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 359px) {
    body > nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .news:not(.photo-gallery-index) {
        grid-template-columns: 1fr;
    }

    .race-hub {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-photo {
        float: none;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .story-photo img,
    .story-photo a,
    .story-photo-credits,
    .story-photo-caption {
        box-sizing: border-box;
        height: auto;
        max-width: 100%;
        width: 100%;
    }
}

/* Media query for screens above 1500px width */
@media only screen and (min-width: 1501px) {
    .news {
        grid-template-columns: repeat(4, 1fr);
    }
	.main-content {
		margin: 40px;
	}
	
}

.admin-navigation {
    align-items: center;
    background: #1f252b;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 10px max(14px, calc((100% - 1400px) / 2));
    width: 100%;
}

.admin-navigation-title {
    color: #fff;
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-navigation-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-navigation-group-title {
    color: #aeb7c0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-right: 2px;
    text-transform: uppercase;
}

.admin-nav-link {
    background: #fff;
    border: 1px solid #c9d0d6;
    border-radius: 4px;
    color: #20262c;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding: 7px 10px;
    text-decoration: none;
}

.admin-nav-link:hover,
.admin-nav-link:focus,
.admin-nav-link.active {
    background: #b62025;
    border-color: #b62025;
    color: #fff;
}

.admin-navigation-system {
    margin-left: auto;
}

@media only screen and (max-width: 900px) {
    .admin-navigation {
        align-items: flex-start;
        gap: 10px;
    }

    .admin-navigation-title {
        flex-basis: 100%;
    }

    .admin-navigation-group {
        align-items: flex-start;
        border-left: 2px solid #59636c;
        flex-direction: column;
        padding-left: 8px;
    }

    .admin-navigation-system {
        margin-left: 0;
    }
}

.encyclopedia-profile {
    max-width: 820px;
}

.encyclopedia-profile .profile-introduction {
    font-size: 1.12rem;
    line-height: 1.6;
}

.profile-facts {
    background: #f4f6f8;
    border-left: 4px solid #b62025;
    display: grid;
    grid-template-columns: minmax(150px, 210px) 1fr;
    margin: 18px 0 28px;
    max-width: 680px;
    padding: 14px 18px;
}

.profile-facts dt,
.profile-facts dd {
    border-bottom: 1px solid #d7dce1;
    margin: 0;
    padding: 8px 0;
}

.profile-facts dt {
    font-weight: 700;
}

.related-encyclopedia-news {
    border-top: 1px solid #d7dce1;
    margin-top: 34px;
    padding-top: 12px;
}

.encyclopedia-overview-introduction {
    margin: 24px 0;
    max-width: 820px;
}

.encyclopedia-submenu {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.encyclopedia-overview-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0 36px;
}

.encyclopedia-overview-section {
    background: #f4f6f8;
    border-top: 4px solid #b62025;
    padding: 18px 22px;
}

.encyclopedia-overview-section h2,
.wsw-indextableheader h2 {
    margin-top: 0;
}

.encyclopedia-overview-note {
    color: #59636c;
    margin-top: -8px;
}

.encyclopedia-link-list {
    columns: 2;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.encyclopedia-link-list li {
    break-inside: avoid;
    margin-bottom: 8px;
    padding-right: 18px;
}

.championship-list {
    columns: 3;
}

@media only screen and (max-width: 600px) {
    .profile-facts {
        grid-template-columns: 1fr;
    }

    .profile-facts dt {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .encyclopedia-overview-grid {
        grid-template-columns: 1fr;
    }

    .encyclopedia-link-list,
    .championship-list {
        columns: 1;
    }
}
/* Privacy choices */
.privacy-consent {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 1000;
	max-width: 720px;
	margin: 0 auto;
	padding: 16px 20px;
	background: #1a1a1a;
	color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}
.privacy-consent p { margin: 0 0 12px; line-height: 1.45; }
.privacy-consent a { color: #fff; text-decoration: underline; }
.privacy-consent-actions { display: flex; gap: 10px; justify-content: flex-end; }
.privacy-consent button, .footer-link-button { font: inherit; cursor: pointer; }
.privacy-consent button { padding: 8px 14px; border: 1px solid #fff; }
.privacy-consent-decline { background: transparent; color: #fff; }
.privacy-consent-accept { background: var(--gp-red); color: #fff; }
.privacy-consent-accept:hover,
.privacy-consent-accept:focus {
    background: var(--gp-red-active-bg);
    color: var(--gp-red-active-text);
}
.footer-link-button { border: 0; padding: 0; background: transparent; color: inherit; text-decoration: underline; }
@media (max-width: 480px) {
	.privacy-consent-actions { justify-content: stretch; }
	.privacy-consent button { flex: 1; }
}
