/* --- Card Grid Layout --- */
.tefl-guide-articles .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tefl-guide-articles .card {
    background-color: #08B3BE;
    border-radius: 12px; 
    border: 1px solid #08B3BE;
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tefl-guide-articles .card:hover {
    transform: translateY(-5px); 
}

.tefl-guide-articles .card a {
    text-decoration: none;
}

.tefl-guide-articles .card a.card-link-wrapper, .tefl-guide-articles .card a.read-more {
    color: #fff;
}

.tefl-guide-articles .card a.read-more {
    text-decoration: underline;
}

.tefl-guide-articles .card a.read-more:hover {
    text-decoration: none;
}

.tefl-guide-articles .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.tefl-guide-articles .card-content {
    padding: 1.1rem;
    flex-grow: 1; 
}

.tefl-guide-articles .card-content h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.tefl-guide-articles .card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
.tefl-guide-articles .card-content p:last-child {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

.tefl-guide-articles .pagination {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1.5rem;
    color: #414141;
}

.tefl-guide-articles .pagination a {
    color: #414141;
    text-decoration: none;
}

.tefl-guide-articles .pagination a.arrows {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    cursor: pointer;
    margin: 0 5px;
}

.tefl-guide-articles .pagination a.arrows.next {
    transform: rotate(-45deg)
}

.tefl-guide-articles .pagination a.arrows.prev {
    transform: rotate(135deg);
}

.tefl-guide-articles .pagination span {
    background-color: #08B3BE;
    color: #fff;
    width: 20px;
    height: 20px;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}