.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.posts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contenthead {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--terminal-blue, #00a5c2);
}

.contentheading {
    color: var(--terminal-bright-blue, #00d5ff);
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 213, 255, 0.5);
}

.contenttypewritter {
    width: 100%;
    padding: 1rem 0;
}

.post-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--terminal-blue, #00a5c2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 165, 194, 0.3);
    border-color: var(--terminal-bright-blue, #00d5ff);
}

.post-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card h2 {
    color: var(--terminal-bright-blue, #00d5ff);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.post-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-summary {
    color: #ccc;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    color: var(--terminal-bright-blue, #00d5ff);
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 213, 255, 0.5);
}

.card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--terminal-blue, #00a5c2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 165, 194, 0.3);
    border-color: var(--terminal-bright-blue, #00d5ff);
}

.card-title {
    color: var(--terminal-bright-blue, #00d5ff);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #ccc;
    flex: 1;
}

.btn-primary {
    color: var(--terminal-bright-blue, #00d5ff);
    background-color: transparent;
    border: 1px solid var(--terminal-blue, #00a5c2);
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--terminal-blue, #00a5c2);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

