body {
		margin: 0;
		padding: 0;
		font-family: Inter;
	}
	/*.column {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}*/
	.element {
		background-color: #f0f0f0;
		padding: 20px;
		border-radius: 5px;
	}
	/*.centered-element2 {
		grid-column: 1 / -1;
		justify-self: center;
		padding: 20px;
		border-radius: 5px;
		margin-top: 20px;
	}*/
	/*.centered-element {
		grid-column: 1 / -1;
		justify-self: center;
		background-color: #e0e0e0;
		padding: 20px;
		border-radius: 5px;
		margin-top: 20px;
	}*/
	/*.containerq {
		display: grid;
		place-items: center;
		height: 700px;
		}*/
	/*.contentq {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-left: 120px;
		margin-right: 120px;
	}*/
	/*.top-elementsq {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-bottom: 20px;
	}
	.top-elementsq > div {
		margin-bottom: 10px;
	}*/
	/*.centered-elementq {
		align-self: center;
	}*/

.containerq {
    display: grid;
    place-items: center;
    min-height: 200px;
    height: auto;
    margin-bottom: 40px;
}

.contentq {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    width: 80%;
    max-width: 1200px;
}

.debate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.block {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.homepage-landing .filter {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Trending section styles */
.trending-section {
    margin: 40px 0;
    padding: 20px;
}

.trending-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.trending-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.trending-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.trending-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trending-card .content {
    padding: 15px;
}

.trending-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.trending-card .stats {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 14px;
}