/* Typography */
.heading1 {
    font-size: 27px;
    line-height: 24px;
    font-weight: semibold;
    letter-spacing: -2%;
    text-decoration: none;
    font-family: "Fjalla One", sans-serif;
}

.heading2 {
    font-size: 24px;
    line-height: 24px;
    font-weight: normal;
    letter-spacing: 0;
    text-decoration: none;
    font-family: "Fjalla One", sans-serif;
    text-transform: uppercase;
}

.heading3 {
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
    letter-spacing: 0%;
    text-decoration: none;
    font-family: "Fjalla One", sans-serif;
    text-transform: uppercase;
}

.para-large {
    font-size: 22px;
    line-height: 115%;
    font-weight: 500;
    letter-spacing: 0%;
    text-decoration: none;
    font-family: "Rubik", sans-serif;
}

.para-bold {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0%;
    text-decoration: none;
    font-family: "Rubik", sans-serif;
}

.para-normal {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
}

.small-text-1 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.small-text-2 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Components */

.btn {
    height: 34px !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;

    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-background-light) !important;
    transition: all 0.3s ease;
    border: none;
}

.btn-outline-primary {
    background-color: transparent !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
    transition: all 0.3s ease;
}

.card-container {
    background-color: var(--color-background-light);
    padding: 20px;
    border-radius: 16px;
}

.card-title {
    text-align: center;
    color: var(--color-primary);
}

.card-content {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-container::first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.button-small {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    border: none;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tribute-avatar-image {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.tribute-avatar-placeholder {
    background-color: var(--color-background-light);
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

/* Utilities */
.back-link {
    color: var(--color-gray);
    text-decoration: none;
}
