.std-main-container h1 {
	margin: 0 auto;
	width: fit-content;
	font-size: 1.75em;
	color: var(--text-light);
	border-bottom: 3px solid var(--accent);
	text-align: center;
}

/* Infobox - Customer Information and vCard download blocks */
.public-vcardbox { /* same as .supportbox-infobox */
	max-width: 760px;
	margin: calc(3 * var(--base-block-space-rem, 2rem) + 1rem) auto;
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	box-shadow: var(--shadow-soft-mediumdrop);
	overflow: hidden;
}

.vcard-infobox {
	border-left: 4px solid var(--border);
}

/* Header section */
.vcardbox-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 1.5rem; 
	background: linear-gradient(135deg, var(--primary-05) 0%, transparent 100%);
	border-bottom: 1px solid var(--border-light);
}

.vcardbox-header svg {
	flex-shrink: 0;
	color: var(--accent);
	width: 3rem;
	height: 3rem;
}

.vcardbox-header-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary);
}

.vcard-subtitle {
    margin: 0.125rem 0 0 0;
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-mono);
}


/* Infobox top message */
.public-vcard-info { /* same as .support-condition-statement */
	padding: 1rem 1.5rem;
	background: var(--accent-08);
	border-bottom: 1px solid var(--accent-10);
}

.public-vcard-info p { /* same as .support-condition-statement p */
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.public-vcard-info strong { /* same as .support-condition-statement strong */
	color: var(--accent);
	font-weight: 600;
}

/* Action cards - two column layout */
.support-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	padding: 1.5rem;
}

.vcardbox-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Action cards - two column layout */
.vcard-downloads {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0.5rem;
}

.vcard-downloads > a {
	text-decoration: none;
}

.support-action-card-standard {
        border-left: 3px solid var(--accent);
}

.support-action-card {
	position: relative;
	background-color: var(--bg);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 1rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.support-action-detail {
	position: relative; /* Ensure detail doesn't shift on hover */
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 0.5rem;
	border-top: 1px solid var(--border-light);
	font-size: 0.875rem;
}

/* Primary vCard & PGP Key (same styling) */
.vcard-primary {
	display: grid;
	grid-template-columns: auto 1fr;
	background: var(--bg);
	border-radius: 10px;
	padding: 1rem;
	border: 1px solid var(--border-light);
	transition: all 0.2s ease;
}

.vcard-primary[role="button"] {
	-webkit-tap-highlight-color: var(--accent-05);
	cursor: pointer;
}

.vcard-icon {
	width: 32px;
	margin-right: 1rem;
}
.vcard-icon > img {
	width: 100%;
}

.vcard-alternatives {
    background: var(--bg);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.pgp-pubkey {
}

.vcard-primary:hover,
.vcard-pgp:hover {
    border-color: var(--accent-30);
    box-shadow: var(--shadow-soft-smalldrop);
}

.vcard-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.vcard-type svg {
    color: var(--accent);
}

.vcard-badge {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    background: var(--accent-15);
    color: var(--accent);
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.vcard-desc {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.vcard-action {
    margin-top: 0.5rem;
}

.vcard-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vcard-button:hover {
    background: color-mix(in srgb, var(--accent) 85%, black);
    transform: translateY(-1px);
}

.vcard-button svg {
    flex-shrink: 0;
}

.vcard-button small {
    font-size: 0.7rem;
    font-weight: normal;
    opacity: 0.8;
}

/* Alternatives section */
.vcard-alternatives {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--accent-05);
    border-radius: 8px;
    font-size: 0.8125rem;
}

.vcard-alt-label {
    color: var(--text-light);
    font-size: 0.75rem;
}

.vcard-alt-buttons {
    display: flex;
    gap: 0.5rem;
}

.vcard-alt-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

.vcard-alt-button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.vcard-alt-button small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.download-contact-a,
.download-contact-d {
        font-size: 0;
}
.download-contact-a::before {
	content: attr(data-mail);
	font-size: 0.7rem; /* .vcard-button small */
}
.download-contact-a::after {
	content: attr(data-name);
	font-size: 0.7rem; /* .vcard-button small */
}
.download-contact-d::before {
	content: '.';
	font-size: 0.7rem; /* .vcard-button small */
}
.download-contact-d::after {
	content: attr(data-cc);
	font-size: 0.7rem; /* .vcard-button small */
}


/* Responsive */
@media (max-width: 600px) {
    .vcard-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .vcard-primary,
    .vcard-pgp {
        padding: 0.875rem 1rem;
    }
    
    .vcard-alternatives {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vcard-button {
        width: 100%;
        justify-content: center;
    }
}
/* Category Sections */
.download-category {
	margin-bottom: 3rem;
}

.download-category h2 {
	display: inline-block;
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 0.5rem;
	margin-left: 0.5em;
}

/* Download List */
.download-list {
	list-style: none;
	padding-inline-start: var(--list-indent-increment);
	background-color: var(--card-bg);
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	overflow: hidden;
}

.download-list li {
	border-bottom: 1px solid #eee;
}

.download-list li a {
	text-decoration: none;
}

.download-list li:last-child {
	border-bottom: none;
}

/* Download Links */
.dnld-ribbon-multi-items,
.dnld-ribbon-single-item a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 1rem 0.5rem 0;
	padding-right: clamp(0.5rem, 1.5vw, 2rem);
	color: var(--text-light);
	transition: background 0.2s;
}

.download-list > li > a:hover {
	background-color: var(--accent-05);
}

.download-variant {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg);
    border-radius: 6px;
    transition: all 0.2s ease;
	color: var(--accent);
}

.download-variant:hover {
    background-color: var(--accent-20);
    transform: translateY(-1px);
}

/* File Icon */
.file-icon {
	font-size: 1.75rem;
	min-width: 40px;
	text-align: left;
}

.file-icon > svg {
	max-width: 40px;
	max-height: 40px;
}

.file-icon-large > svg {
	max-width: 60px;
	max-height: 60px;
}

.dnld-ribbon-single-item .file-icon-large > svg,
.dnld-ribbon-multi-items > .file-icon-large > svg {
	color: var(--accent);
}

.dnld-ribbon-multi-items > .file-icon-large > svg {
	opacity: 0.5;
}

/* File Info */
.file-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.file-info strong {
	font-size: 1rem;
	color: #2c3e50;
}

.download-action small,
.download-variant small {
	font-size: 0.8rem;
	color: #7f8c8d;
}

.file-info small {
	font-size: 0.8rem;
	color: #7f8c8d;
	margin-top: 0.2rem;
}

.download-variant {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	flex-direction: column;
	text-align: center;
}
/* Download Action */
.download-action {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	flex-direction: column;
    background-color: var(--bg);
	color: var(--accent);
	font-size: 0.9rem;
	opacity: 0.7;
	text-align: right;
}

.download-action svg,
.download-variant svg {
	margin-left: 0.5rem;
	max-width: 20px;
	max-height: 20px;
}
.download-variant svg {
	opacity: 0.4;
}


.download-variant:hover svg,
.download-action:hover svg,
.download-item:hover .download-action {
	opacity: 1;
}

/* FOSS Links Introduction */
.fosslinks-intro {
	margin: 0.5rem 0 1.5rem 1rem;
	border-left: 4px solid var(--accent);
	padding: 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-light);
}

.fosslinks-intro p {
	margin: 0 0 0.75rem 0;
}

.fosslinks-intro p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 640px) {
	.support-actions {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.support-footnote {
		flex-wrap: wrap;
	}

	.support-footnote-toolshint {
		margin: 0.5rem 0 0;
		padding-top: 0.5rem;
		border-top: 1px solid var(--border);
	}

	.support-footnote-toolshint::before {
			content: '';
			padding: 0;
	}
}
	
	
@media (max-width: 600px) {
	.download-link {
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	
	.file-icon {
		font-size: 1.5rem;
		min-width: 30px;
	}
	
	.file-info {
		width: calc(100% - 80px);
	}
	
	.download-action {
		margin-left: auto;
	}
}
