.categoriesBox {
    text-align: center;
    width: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.categoriesBox-items {
    flex-shrink: 0;
    text-align: center;
    
    border-color: #1d1d1d;
    background-color: #1d1d1d;
    border-style: ridge;
    border-width: 2px;
    padding: 6px;
    
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.contentBox {
    flex-shrink: 0;
    border-color: #1d1d1d;
    background-color: #1d1d1d;
    border-style: ridge;
    border-width: 2px;
    padding: 15px;
    
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contentItem {
    text-align: left;
    border-color: #262626;
    background-color: #262626;
    border-style: ridge;
    border-width: 1px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contentItem-title {
    font-weight: bold;
    font-size: 13pt;
}

.contentItem-description {
    font-size: 11pt;
    line-height: 1.4;
}

.contentItem-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid white;
    width: fit-content;
}

.contentItem-link:hover {
    text-decoration: underline;
}

.blogIndex {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blogEntry {
    flex-shrink: 0;
    border-color: #1d1d1d;
    background-color: #1d1d1d;
    border-style: ridge;
    border-width: 2px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blogEntry-title {
    font-weight: bold;
    font-size: 13pt;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid white;
    width: fit-content;
}

.blogEntry-title:hover {
    text-decoration: underline;
}

.blogEntry-date {
    font-size: 10pt;
    color: #999;
}

.blogEntry-excerpt {
    font-size: 11pt;
    line-height: 1.4;
    margin: 8px 0;
}

.blogEntry-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid white;
    width: fit-content;
    font-size: 11pt;
}

.blogEntry-link:hover {
    text-decoration: underline;
}

.blogEntryFull {
    width: 100%;
}

.blogEntryMeta {
    font-size: 10pt;
    color: #999;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.blogEntryContent {
    line-height: 1.6;
    font-size: 11pt;
    margin-bottom: 30px;
}

.blogEntryContent p {
    margin-bottom: 15px;
    text-align: justify;
}

.blogEntryContent h2 {
    font-size: 13pt;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blogBackLink {
    display: inline-block;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid white;
    margin-top: 20px;
}

.blogBackLink:hover {
    text-decoration: underline;
}

/* Utilidades de texto para entradas */
.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.quote {
    border-left: 3px solid #666;
    padding-left: 12px;
    margin: 15px 0;
    font-style: italic;
    color: #ccc;
}

.inline-code {
    background-color: #262626;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 10pt;
    color: #aaa;
}

.code-block {
    background-color: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 4px;
    padding: 12px;
    margin: 15px 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', monospace;
    font-size: 10pt;
    color: #aaa;
    line-height: 1.4;
}

a {
    color: #7ebdfc;
}