.alc-wrapper {
    padding: 0;
	margin: 0;
	max-width: 100%;
}

.alc-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.alc-col {
    flex: 1 1 250px;
}

.alc-form {
	margin: 0 auto;
	margin-bottom: 60px;
	max-width: 720px;
	position: relative;
}

.alc-form input[type="text"],
.alc-form select {
    width: 100%;
    max-width: 100%;
}

.alc-submit {
    padding: 8px 16px;
    padding: 8px 16px;
    cursor: pointer;
}

.alc-result {
	max-width: 720px;
	border-radius: .5rem;
	padding: 1.5em 1.5em .01em 1.5em;
	margin: 0 auto;
	background: #fefefe;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 6px 12px rgba(11,11,11,0.08);
	position: relative;
	text-align: center;
}

.alc-result h3 {
    text-align: center;
}

.alc-score {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.alc-cta {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
}

.alc-cta-button {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #333;
}
.alc-long{
	text-align: justify;
}
.alc-tip {
    margin-top: 10px;
    font-style: italic;
}
.alc-tip::before {
    content: '\f004';
	font-family: "Font Awesome 7 Free";
	font: var(--fa-font-solid);
	margin-right: 5px;
    font-style: normal;
	color: var(--accent);
}


/* Submit Button (disabled until required fields selected) */
.alc-submit[disabled],
.alc-submit[aria-disabled="true"]{
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

:root{
    --alc-el-fire:  currentColor;
    --alc-el-earth: currentColor;
    --alc-el-air:   currentColor;
    --alc-el-water: currentColor;
}

/* Symbol farbig nach Element */
.alc-el-fire  .alc-signsym { color: var(--alc-el-fire); }
.alc-el-earth .alc-signsym { color: var(--alc-el-earth); }
.alc-el-air   .alc-signsym { color: var(--alc-el-air); }
.alc-el-water .alc-signsym { color: var(--alc-el-water); }

:root{
    /* Feuer – Widder, Löwe, Schütze */
    --alc-el-fire:  #8b2f2f;

    /* Erde – Stier, Jungfrau, Steinbock */
    --alc-el-earth: #556b2f;

    /* Luft – Zwillinge, Waage, Wassermann */
    --alc-el-air:   #3f5f7f;

    /* Wasser – Krebs, Skorpion, Fische */
    --alc-el-water: #2f6f73;
}

.alc-signpair{
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 6px 0 14px 0;
    text-align: center;
}

.alc-sign{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.alc-signsym{
    font-size: 1.25em;
    line-height: 1;
	font-family: "Noto Sans Symbols 2","Noto Sans Symbols","Segoe UI Symbol","DejaVu Sans","Arial Unicode MS","Liberation Sans",Arial,sans-serif;
    font-variant-emoji: text;
}
.alc-signname{
    font-weight: 600;
    line-height: 1.2;
}
.alc-signsep{
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1;
    align-self: center;
}

/* Score Progress Bar */
.alc-scorebar{
	display: block;
    margin: 14px auto;
	max-width: 600px;
}

.alc-scorebar-track{
    width: 100%;
    height: 24px;
    background: var(--base-2);
    border-radius: 999px;
    overflow: hidden;
	border: 2px solid var(--accent);
}

.alc-scorebar-fill{
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 1.2s ease;
}

.alc-scorebar-meta{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
}

.alc-scorebar-value{
    font-weight: 900;
}

/* Advisors block spacing */
.alc-advisors {
    margin-top: 40px;
    padding-top: 30px;
}
.alc-advisors h3,
.alc-advisors p {
    text-align: center;
}

/* Fallback-Box bei keinen Beratern */
.pb-adv-big-list:has(> :only-child) > * {
    grid-column: 1 / -1;
    justify-self: center;
	width: 100%;
	max-width: 500px;
}

@media only screen and (max-width: 480px) {
	.alc-result {
		padding: 1em 1em .01em 1em;
	}
	.alc-long{
		text-align: center;
	}
}