/* MAIN */
.article-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #94a3b8;
}

.breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
}

.article-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.article-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.article-404 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    border-radius: 10px !important;
    margin-bottom: 25px !important;
}

h1, h2, h3 {
    text-align: center;
}

.article-content p {
  margin-bottom: 18px;
  line-height: 1.7;
}

.article-content h2 {
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
    text-align: center;
    border-left: solid 3px #FF0000;
    border-right: solid 3px #FF0000;
    color: #FF0000;
    font-size: 25px;
    padding: 16px 10px 16px 20px;
    background: #FF7F7F;
}

.article-content h3 {
    color: #ffff;
    padding: 16px 10px 16px 20px;
    background: #1d2327;
    margin-top: 2rem !important;
    margin-bottom: .75rem !important;
}

.enlazatom-show-box {
    background: #fafafa !important;
    color: #181818 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,15%);
    border-radius: 5px !important;
    padding-right: 90px !important;
}

.enlazatom-show-box span, .enlazatom-show-plane span, .enlazatom-show-plane a, .enlazatom-a-plane a, span.enlazatom-title-box, a.enlazatom-a-plane {
    font-size: 14px;
    word-break: break-word;
}

.enlazatom-show-plane span, span.enlazatom-title-box {
    font-weight: bold;
}

.enlazatom-show-box:hover {
    background: #fafafaB3 !important;
}

.enlazatom-show-box:hover div.btn {
    background: #eaeaeaB3 !important;
}

.chevron::before {
    color: #181818 !important;
}

.enlazatom-show-box div.btn {
    background: #eaeaea !important;
}

.enlazatom-title-box {
    font-weight: bold;
    margin-bottom: 10px !important;
    display: block;
}

.enlazatom-show-box span {
    padding: 20px;
}

.enlazatom-content {
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.enlazatom-content div.enlazatom-a-plane {
    margin: 16px 0;
}

.enlazatom-show-box {
    display: flex;
    overflow: hidden !important;
    margin-bottom: 22px;
    align-items: center;
    padding: 0 1rem 0 0;
    /* line-height:1.4; */
}

.enlazatom-show-plane {
    margin-top: 22px;
    margin-bottom: 22px;
}

.enlazatom-show-plane div {
    display: inline !important;
}

.enlazatom-show-box:hover {
    text-decoration: none;
}

.enlazatom-show-box img {
    max-width: 100px;
    border: none !important;
    margin-right: 5px;
}

.enlazatom-show-box {
    position: relative;
    text-decoration: none !important;
}

.enlazatom-show-box div.btn {
    border: none;
    font-weight: 700;
    width: 80px;
    height: 100%;
    min-height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chevron::before {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    position: relative;
    transform: rotate(-45deg);
    width: 0.45em;
    margin-left: -2px;
}

.chevron.right:before {
    left: 0;
    transform: rotate(45deg);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #000000;
}

table tr td , table tr th {
    padding: .05rem;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid #cbcbcb;
    text-align: center;
}

table th {
    background-color: #2d6b89;
    color: #fff;
    font-weight: bold;
}

table tr:hover {
    background-color: #e6f7ff;
}

.vote-box {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: radial-gradient(circle at top, #0b1220, #020617);
    border-radius: 20px;
    color: #fff;
    font-family: system-ui, sans-serif;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    text-align: center;
}

.vote-box h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.vote-form {
    display: grid;
    gap: 15px;
}

.vote-option input {
    position: absolute;
    opacity: 0;
}

.vote-option span {
    display: block;
    padding: 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #cbd5f5;
}

.vote-option span:hover {
    background: rgba(56,189,248,.3);
    color: #fff;
}

.vote-option input:checked + span {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #020617;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(99,102,241,.7);
}

.vote-form button {
    padding: 14px;
    border-radius: 999px;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #020617;
    margin-top: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.vote-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(255,255,255,.45);
}

.lazyloaded{
    --smush-placeholder-width: 120px;
    --smush-placeholder-aspect-ratio: 120/120
}