.cards-container {
    display: grid;
    grid-template-columns: 1;
    gap: 1.5rem;
}




.design-2 .thesis-card {
    background-color: #fdfdfd;
    border: 1px solid #d1d5db;
      max-width: 90vw;
    display: flex;
    flex-direction: column;
}

.design-2 .thesis-card .status-finalizada { border-top: 5px solid #dc3545;}
.design-2 .thesis-card .status-en-curso { border-top: 5px solid #1d4ed8; }
.design-2 .thesis-card .status-disponible { border-top: 5px solid solid #107c41; }

.design-2 .thesis-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.design-2 .thesis-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: normal;
    color: #111827;
}

.design-2 .thesis-title a { text-decoration: none; color: inherit; }
.design-2 .thesis-title a:hover { color: #1d4ed8; }

.design-2 .thesis-status-label {    
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.design-2 .status-finalizada .thesis-status-label { color: #dc3545; }
.design-2 .status-en-curso .thesis-status-label { color: #1d4ed8; }
.design-2 .status-disponible .thesis-status-label { color: #107c41; }

.design-2 .thesis-content {
    padding: 20px;
    flex-grow: 1;
}

.design-2 .thesis-excerpt {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.design-2 .thesis-meta {
    padding: 20px;    
    font-size: 0.9rem;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.design-2 .meta-item { margin-bottom: 10px; }
.design-2 .meta-item:last-child { margin-bottom: 0; }
.design-2 .meta-item strong { font-weight: bold; color: #111827; }
.design-2 .meta-item i { margin-right: 6px; }

.design-2 .thesis-footer {
    padding: 20px;
    text-align: left;
}

.design-2 .btn-ver-mas {
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}





.design-2 .btn-ver-mas:after {
    content: ' →';
    transition: margin-left 0.2s;
}



.status-disponible-btn {
    color: #107c41;
}
.status-en-curso-btn {
    color: #1d4ed8;
}
.status-finalizada-btn {
    color: #dc3545;
}

.status-disponible-btn:hover {
    color: #107c41!important;
}
.status-en-curso-btn:hover{
    color: #1d4ed8;
}
.status-finalizada-btn:hover {
    color: #dc3545;
}
.empresas-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.company-card-link {
    text-decoration: none; /* Quita el subrayado del enlace */
    color: inherit; /* He#dc3545a el color del texto del padre */
    display: block; /* Asegura que el enlace ocupe todo el espacio */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.company-card {
    background-color: #ffffff;
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 1.5rem; /* 24px */
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-card-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- Contenido de la Tarjeta --- */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.company-logo {
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
    border-radius: 0.375rem; /* 6px */
    object-fit: cover;
    margin-right: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.company-name {
    font-size: 1rem; /* 20px */
    font-weight: 700;
    color: #111827;
}

.company-info {
    margin-bottom: 1rem;
}

.company-location {
    color: #4b5563; /* gris */
    display: flex;
    align-items: center;
}

.location-icon {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
    margin-right: 0.5rem;
}
