/*
Theme Name: HostingNet Blog
Theme URI: https://www.hostingnet.pe/blog/
Author: HostingNet
Description: Theme del blog de HostingNet.pe, alineado al diseño y colores del sitio principal (Tailwind). Header tipo hero + footer idéntico al sitio corporativo.
Version: 1.0
Text Domain: hostingnet-blog
*/

/* Clase necesaria para que el CDN de Material Symbols funcione.
   El link de Google solo trae las @font-face; esta clase asigna
   la fuente y el tamaño/alineación por defecto de los íconos. */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

/* ==========================================================
   Estilos del contenido del post (reemplaza a "prose" de Tailwind,
   que no existe en el tailwind.css del sitio principal porque
   esas clases nunca se usaron ahí y Tailwind las purga).
   ========================================================== */
.post-content {
    color: #334155; /* slate-700 */
    font-size: 1.0625rem;
    line-height: 1.75;
}
.post-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b; /* slate-800 */
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.post-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.post-content p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.post-content ul,
.post-content ol {
    margin-top: 0;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.post-content ul {
    list-style-type: disc;
}
.post-content ol {
    list-style-type: decimal;
}
.post-content li {
    margin-bottom: 0.5rem;
}
.post-content strong {
    font-weight: 700;
    color: #1e293b;
}
.post-content a {
    color: #0c5adb;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-content a:hover {
    color: #083e9e;
}
.post-content img {
    border-radius: 1rem;
    margin: 1.75rem 0;
}
.post-content blockquote {
    border-left: 4px solid #0c5adb;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #475569;
}
