﻿/* stylelint-disable selector-list-comma-newline-after */

.blog-header {
    line-height: 1;
    border-bottom: 1px solid #e5e5e5;
}

.blog-header-logo {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
}

.blog-header-logo:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.display-1 {
    font-size: 1rem;
}

.display-2 {
    font-size: 1.5rem;
}

.display-3 {
    font-size: 2rem;
}

.display-4 {
    font-size: 2.5rem;
}

.blog-title {
    min-height: 30vh;
    background-position: center;
    background-size: cover;
    text-shadow: 0 0 10px #000000;
}

.article-preview {
    display: block;
    min-height: 300px;
    padding-bottom: 1em;
    text-shadow: 0 0 10px #000000;
}
.article-preview a :hover {
    text-decoration: none;
}

.article-preview .badge {
    padding-top: 1.5em;
}

.article-preview h1,
.article-preview h2,
.article-preview h3,
.article-preview h4,
.article-preview h5,
.article-preview h6 {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    text-align: justify;
}

.article-preview-large
{
    min-height: 500px;
}

    .article-preview-large h1,
    .article-preview-large h2,
    .article-preview-large h3,
    .article-preview-large h4,
    .article-preview-large h5,
    .article-preview-large h6 {
        position: absolute;
        bottom: 0;
        left: 5%;
        right: 5%;
        text-align: justify;
    }

@media (min-width: 768px) {
    .display-4 {
        font-size: 3rem;
    }
    .blog-title {
        min-height: 50vh;
    }
    .blog-title p {
        font-size: 1.75rem;
        font-weight: 400;
    }
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .nav-scroller .nav-link {
        padding-top: .75rem;
        padding-bottom: .75rem;
        font-size: .875rem;
    }

.card-img-right {
    height: 100%;
    border-radius: 0 3px 3px 0;
}

.flex-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.h-250 {
    height: 250px;
}

@media (min-width: 768px) {
    .h-md-250 {
        height: 250px;
    }
}

/* Pagination */
.blog-pagination {
    margin-bottom: 4rem;
}

    .blog-pagination > .btn {
        border-radius: 2rem;
    }

/*
 * Blog posts
 */
.blog-post {
    margin-bottom: 4rem;
}

.blog-post-title {
    margin-bottom: .25rem;
    font-size: 2.5rem;
}

.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #999;
}

/*
 * Footer
 */
.blog-footer {
    padding: 2.5rem 0;
    color: #999;
    text-align: center;
    background-color: #f9f9f9;
    border-top: .05rem solid #e5e5e5;
}

    .blog-footer p:last-child {
        margin-bottom: 0;
    }


/*NavPublic*/
.navbar-nav .nav-link {
    color: #0056b3;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: #003366;
    }

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-item:hover {
    background-color: #e6f0ff;
}

/*Index css*/
.hospital-card-icon {
    font-size: 3rem;
}




.full-width {
    width: 100%;
    height: 75% ;
    display: block;
}


.icon-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: 3px solid #007bff; /* Ajusta el ancho del borde azul aquí */
    border-radius: 50%;
    padding: 5px; /* Ajusta el tamaño del padding aquí */
}

.rounded-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}


.hero {
    background: linear-gradient(to right, #f5f5f5, #e9ecef);
    color: #000000;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.5);
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        max-width: 700px;
        margin: 0.5rem auto;
        line-height: 1.6;
        color: #000000;
    }

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: #1d4a79;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background-color: lightsteelblue;
    }



  /*IndexTGW*/

.site-header {
    text-align: center;
    padding: 2rem 1rem;
}

    .site-header img {
        width: 80px;
    }

    .site-header h1 {
        font-size: 2rem;
        margin: 0.5rem 0;
    }

    .site-header p {
        color: #aaa;
    }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.dashboard-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

    .dashboard-item:hover {
      
        transform: translateY(-5px);
    }

    .dashboard-item img,
    .dashboard-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
    }

    .dashboard-item h3 {
        margin: 0.5rem 0;
        font-size: 1.3rem;
    }

    .dashboard-item p {
        font-size: 0.9rem;
        color: black;
    }