@import url('https://api.fontshare.com/v2/css?f[]=satoshi@500,501,700,701,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
    --xenor-primary: #F8931F;
    --xenor-primary-dark: #D9790B;
    --xenor-primary-soft: #FFF4E7;
    --xenor-ink: #404040;
    --xenor-muted: #757575;
    --xenor-border: #F6C78F;
}
*{
    font-family: 'Satoshi', sans-serif;
}
body {
    color: var(--xenor-ink);
}
.icon-color{
    color: var(--xenor-primary);
}
.link-color {
    text-decoration: none;
    color: var(--xenor-primary);
}

.link-color:hover{
    text-decoration: none;
    color: var(--xenor-primary-dark);
}

.link-color-two {
    text-decoration: none;
    color: var(--xenor-ink);
}

.link-color-two:hover{
    text-decoration: none;
    color: var(--xenor-primary);
}
.highlight {
    background-color: var(--xenor-primary-soft);
}
.btn-color{
    background-color: var(--xenor-primary) !important;
    color: white !important;
}
.col {
    padding: 10px;
}

.sidebar {
    box-shadow: 0 0 10px rgba(17, 24, 39, 0.08);
    border-right: 1px solid rgba(246, 199, 143, 0.7);
    width: 20%; 
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    overflow-y: auto; 
}

.sideContent {
    /* width: 80%;  */
    /* margin-left: 20%;  */
    float: right;
    overflow-y: auto; 
    background-color: #ffffff;
}
.ul-arrow{
    list-style-type: none;
    font-weight: 600;
    line-height: 1.8rem;
}
h5{
    font-weight: 700;
    font-size: large;
    color: var(--xenor-primary);
}
.description {
    color: var(--xenor-primary);
    font-weight: bold;
}
.ul-disc{
    list-style-type: disc;
}
.guide-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0 0.75rem;
}
.guide-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid var(--xenor-border);
    border-radius: 12px;
    padding: 0.4rem;
    background: #ffffff;
}
.guide-kicker {
    color: var(--xenor-primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}
.guide-title {
    margin: 0;
}
