.infosummary-section {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	background-color: #f7f3f3eb;
	overflow: hidden;
	border-top: 1px solid rgba(150, 190, 220, 0.35);
	border-bottom: 1px solid rgba(150, 190, 220, 0.35);
}

.is-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.18;
	pointer-events: none;
	z-index: 0;
}

.infosummary-section::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.765) 0%, transparent 14%, transparent 86%, rgba(255, 255, 255, 0.235) 100%);
}

.infosummary-section .is-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

/* Chibi - left anchor */
.is-chibi {
	flex-shrink: 0;
}

.is-chibi img {
	max-height: 320px;
    transform: scale(1.0);
	width: auto;
	display: block;
}

/* Content - horizontal row of three columns */
.is-body {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 36px;
}

/* Stats - vertical stack of stats */
.is-stats {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 46px;
}

/* Each stat */
.is-stat {
	display: flex;
	align-items: center;
}

.is-stat-text {
	display: flex;
	font-family: 'Grobold', 'Arial Black', sans-serif;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.1;
}

.is-stat-label {
	margin-bottom: 4px;
	font-size: 11px;
	letter-spacing: 2.3px;
	text-transform: uppercase;
	color: #4f6782;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Value + icon side by side */
.is-stat-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.is-stat-value {
	font-size: 15px;
	font-weight: 300;
	color: #3776ad;
	letter-spacing: 2.3px;
	line-height: 1;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.is-stat-ico {
	font-size: 24px;
	line-height: 1;
}

/* Divider between columns */
.is-divider {
	align-self: stretch;
	width: 1px;
	background: linear-gradient(180deg, transparent, #dbe5ee, transparent);
	flex-shrink: 0;
}

/* Text - middle column, capped width so it doesn't stretch */
.is-text {
	flex: 0 1 auto;
	font-family: 'Informb';
	max-width: 340px;
	text-align: left;
}

.is-text h3 {
	font-size: 16px;
	letter-spacing: 1.5px;
	font-weight: bold;
	color: #345576;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.is-text h3.is-text-second {
	margin-top: 18px;
}

.is-text p {
	color: #6a7686;
	font-size: 14px;
	font-family: 'Informb';
	font-weight: 600;
	line-height: 1.6;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

/* Checklist */
.is-checklist {
	list-style: none;
	margin-top: 3px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.is-checklist li {
	position: relative;
	padding-left: 22px;
	color: #4a5e72;
	font-family: 'Informb';
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.is-checklist li::before {
	content: '✔';
	position: absolute;
	left: 0;
	top: 0;
	color: #0e2231;
	font-size: 10px;
	font-weight: 700;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

/* Actions - right column, stacked buttons */
.is-actions {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.is-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    gap: 10px;
    height: 100px;
    width: 100px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.18s ease,
        outline-color 0.18s ease,
        filter 0.18s ease;
}

.is-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.25);
    outline-color: rgba(255, 255, 255, 0.084);
    filter: brightness(1.1);
}

.is-btn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(0.95);
    transition-duration: 0.08s;
}

.is-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.18s ease;
    z-index: 2;
    pointer-events: none;
}

.is-btn:hover::after {
    opacity: 1;
}

.is-btn-ico {
    position: absolute;
    inset: 0;
    z-index: 0;
    filter: brightness(0.90) blur(1.5px);
    transform: scale(1.05);
}

.is-btn.vote .is-btn-ico img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    transform: scale(4.90) translateX(24.8px) translateY(30px);
    object-position: center;
    display: block;
}

.is-btn.forum .is-btn-ico img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    
    transform: scale(2.96) translateX(-4px) translateY(33px);
    display: block;
}

.is-btn-label {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.is-btn.vote {
    background: #144261;
    color: #e9f7ff;
}

.is-btn.forum {
    background: #144261;
    color: #e9f7ff;
}
/* Responsive home server-information composition */
@media (max-width: 960px) {
	.infosummary-section {
		min-height: 0;
		padding: 34px 0 40px;
	}

	.infosummary-section .is-inner {
		display: grid;
		grid-template-columns: minmax(145px, 190px) minmax(0, 1fr);
		align-items: center;
		gap: 24px;
		padding: 0 24px;
	}

	.infosummary-section .is-chibi {
		align-self: center;
		justify-self: center;
	}

	.infosummary-section .is-chibi img {
		max-height: 235px;
		max-width: 180px;
		object-fit: contain;
		transform: none;
	}

	.is-body {
		width: 100%;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"stats stats"
			"copy actions";
		align-items: start;
		gap: 22px 24px;
	}

	.is-stats {
		grid-area: stats;
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		gap: 14px;
	}

	.is-stat {
		flex: 1 1 0;
		justify-content: center;
	}

	.is-stat-text {
		align-items: center;
		text-align: center;
	}

	.is-text {
		grid-area: copy;
		max-width: none;
	}

	.is-actions {
		grid-area: actions;
		align-self: center;
		gap: 14px;
	}

	.is-btn {
		width: 88px;
		height: 88px;
		border-radius: 34px;
	}

	.is-divider {
		display: none;
	}
}

@media (max-width: 700px) {
	.infosummary-section {
		padding: 26px 0 34px;
	}

	.infosummary-section .is-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		padding: 0 18px;
		text-align: center;
	}

	.infosummary-section .is-chibi img {
		max-height: 165px;
		max-width: 150px;
	}

	.is-body {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.is-stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: min(100%, 390px);
		gap: 8px;
	}

	.is-stat {
		min-width: 0;
		justify-content: center;
	}

	.is-stat-label {
		font-size: 8px;
		letter-spacing: 1px;
	}

	.is-stat-value {
		font-size: 13px;
		letter-spacing: 1px;
	}

	.is-stat-ico {
		font-size: 18px;
	}

	.is-text {
		width: min(100%, 390px);
		max-width: 390px;
		text-align: left;
	}

	.is-text h3 {
		font-size: 15px;
	}

	.is-text p {
		font-size: 12px;
		line-height: 1.5;
	}

	.is-checklist {
		align-items: flex-start;
		width: 100%;
		text-align: left;
	}

	.is-actions {
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 18px;
	}

	.is-btn {
		width: 82px;
		height: 82px;
		border-radius: 30px;
	}
}

@media (max-width: 430px) {
	.infosummary-section .is-inner {
		padding: 0 14px;
	}

	.infosummary-section .is-chibi img {
		max-height: 145px;
		max-width: 132px;
	}

	.is-stat-label {
		font-size: 7px;
		letter-spacing: .7px;
	}

	.is-stat-row {
		gap: 4px;
	}

	.is-stat-ico {
		font-size: 16px;
	}
}