/* -- HEADER -- */
.navbar {
	margin-bottom: 0;
}

.jumbotron {
	background: #428BCA;
	color: #fff;
	padding: 20px 0;
}

/* -- POST -- */
.main {
	margin-top: 20px;
	margin-bottom: 20px;
}

.post {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #999;
}

.post .post-title a {
	color: #333;
}

.post .thumb {
	margin-right: 10px;
	width: 40%;
}

.post .thumb img {
	width: 100%;
}

.post .contenedor-botones {
	width: 100%;
}

/* -- Media Querie -- */
@media screen and (max-width: 768px) {
	.post .thumb {
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
}

.enlace-footer p {
	padding-top: 150px;

}

.estados {
	padding-top: 10px;
	padding-left: 10px;
}

.fechas {
	padding-top: 20px;
}

.textarea-container {
	position: relative;
	max-width: 80%;
	margin: 20px auto;
}

.textarea-container textarea {
	width: 100%;
	height: 150px;
	padding: 10px;
	padding-right: 45px;
	/* Espacio para que el botón no tape el texto */
	font-size: 16px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 6px;
	resize: vertical;
}

.mic-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	background: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.mic-btn.listening {
	background: #ffdddd;
	border-color: red;
	color: red;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}