/*!
Theme Name: golden-horse
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: golden-horse
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

golden-horse is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--gold: #D4AF37;
	--gold-light: #F0E68C;
	--gold-dark: #B8860B;
	--dark: #0a0a0a;
	--darker: #000000;
	--light: #ffffff;
	--gray: #cccccc;
	--light-gray: #2a2a2a;
}

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	color: var(--light);
	background-color: var(--darker);
	background-image:
		radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
		radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgb(10 10 10 / 44%);
	backdrop-filter: blur(15px);
	z-index: 1000;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border-bottom: 1px solid #d5b03875;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 20px;
}

.header-container.scrolled {
	padding: 14px 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
}

.logo-icon {
	width: 45px;
	height: 45px;
	background: #141414;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 18px;
	box-shadow: 0 0px 3px rgba(212, 175, 55, 0.3);
	overflow: hidden;
}

.logo-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: var(--light);
	letter-spacing: 1px;
}

.logo-text span {
	color: var(--gold);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--light);
	font-size: 26px;
	cursor: pointer;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 35px;
}

nav a {
	text-decoration: none;
	color: var(--light);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
}

nav a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--gold);
	transition: width 0.3s ease;
}

nav a:hover:after {
	width: 100%;
}

nav a:hover {
	color: var(--gold);
}

.phone-header {
	font-weight: 700;
	color: var(--gold);
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.phone-header:hover {
	color: var(--gold-light);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
		url('http://golden-horse.online/wp-content/themes/golden-horse/img/hero.jpg') top/cover no-repeat;
	display: flex;
	align-items: center;
	color: var(--light);
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.9) 70%);
	pointer-events: none;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 2;
	padding-top: 50px;
}

.hero-text {
	padding-right: 20px;
}

.hero h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 25px;
	line-height: 1.2;
	background: linear-gradient(to right, var(--light), var(--gold-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	opacity: 0.9;
	font-weight: 300;
	letter-spacing: 0.5px;
}

/* Form Styles */
.transfer-form {
	background: rgba(20, 20, 20, 0.95);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	color: var(--light);
	border: 1px solid rgb(213 176 56 / 70%);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	max-width: 500px;
	margin-left: auto;
}

/* 
.transfer-form:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), var(--gold-dark));
} */

.form-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 20px;
	text-align: center;
	color: var(--light);
	position: relative;
}

.form-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: var(--gold);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 0;
}

.form-group {
	margin-bottom: 10px;
	width: 100%;
	max-width: 38vw;
}

.form-group.full-width {
	grid-column: 1 / -1;
	max-width: 100%;
}

label {
	display: block;
	margin-bottom: 4px;
	font-weight: 500;
	font-size: 14px;
	color: var(--gray);
	letter-spacing: 0.5px;
}

input,
select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	font-size: 16px;
	transition: all 0.3s ease;
	background-color: rgba(40, 40, 40, 0.7);
	color: var(--light);
	font-weight: 400;
}

input:focus,
select:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

input::placeholder {
	color: var(--gray);
}

.checkbox-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 20px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

.checkbox-item input {
	width: auto;
	margin: 0;
}

.checkbox-item label {
	margin: 0;
	font-weight: 400;
	font-size: 0.9rem;
	color: var(--gray);
	white-space: nowrap;
}

.btn {
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: white;
	border: none;
	padding: 15px 25px;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Montserrat', sans-serif;
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.btn:after {
	content: '';
	position: absolute;
	top: -50%;
	left: -60%;
	width: 20px;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(30deg);
	transition: all 0.8s;
}

.btn:hover:after {
	left: 120%;
}

/* Section Styles */
section {
	padding: 100px 0;
	position: relative;
}

.section-title {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 70px;
	color: var(--light);
	position: relative;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.section-title span {
	color: var(--gold);
}

/* Why Us Section */
.features {
	background-color: var(--dark);
	position: relative;
}

.features:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 25%),
		radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 25%);
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.feature-card {
	background: rgba(25, 25, 25, 0.8);
	padding: 35px 25px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-15px);
	border-color: rgba(212, 175, 55, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover:before {
	opacity: 1;
}

.feature-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gold), var(--gold-dark));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 28px;
	box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--light);
}

.feature-card p {
	color: var(--gray);
	font-weight: 300;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* Tariffs Section */
.tariffs {
	background-color: var(--dark);
}

.tariffs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
}

.tariff-card {
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 35px 25px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	background: rgba(25, 25, 25, 0.8);
	backdrop-filter: blur(5px);
	position: relative;
	overflow: hidden;
}

.tariff-card:hover {
	border-color: var(--gold);
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tariff-card.popular {
	border-color: var(--gold);
	transform: scale(1.05);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* 
.tariff-card.popular:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--gold-dark));
} */

.popular-tag {
	position: absolute;
	top: -5px;
	right: 0;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.tariff-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--light);
}

.tariff-price {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--gold);
	margin-bottom: 25px;
	font-family: 'Montserrat', sans-serif;
}

.tariff-features {
	list-style: none;
	margin-bottom: 30px;
	text-align: left;
}

.tariff-features li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--gray);
	font-weight: 300;
	padding-left: 30px;
	position: relative;
}

.tariff-features li:last-child {
	border-bottom: none;
}

/* Reviews Section */
.reviews {
	background-color: var(--dark);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}

.review-card {
	background: rgba(25, 25, 25, 0.8);
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	backdrop-filter: blur(5px);
}

.review-card:before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-family: 'Montserrat', sans-serif;
	font-size: 5rem;
	font-weight: 900;
	color: rgba(212, 175, 55, 0.2);
	line-height: 1;
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.review-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 20px;
	margin-right: 20px;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.review-info h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--light);
}

.review-info p {
	color: var(--gray);
	font-size: 1rem;
}

.review-text {
	font-style: italic;
	color: var(--light);
	line-height: 1.8;
	font-weight: 300;
	font-size: 1.1rem;
}

.review-rating {
	color: var(--gold);
	margin-top: 15px;
	font-size: 1.2rem;
}

/* Contacts Section */
.contacts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 50px;
}

.contact-info h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 30px;
	color: var(--light);
	position: relative;
	padding-bottom: 15px;
}

.contact-info h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--gold);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	margin-right: 20px;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.contact-details h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--light);
}

.contact-details p {
	color: var(--gray);
	margin-bottom: 5px;
	font-weight: 300;
}

/* Footer */
footer {
	background: var(--darker);
	color: var(--light);
	padding: 70px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
}

.footer-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.2rem;
	font-weight: 900;
	margin-bottom: 20px;
}

.footer-logo span {
	color: var(--gold);
}

.footer-about p {
	opacity: 0.8;
	margin-bottom: 25px;
	color: var(--gray);
	font-weight: 300;
	line-height: 1.8;
}

.social-links {
	display: flex;
	gap: 20px;
}

.social-link {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 18px;
}

.social-link:hover {
	background: var(--gold);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-links h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--gold);
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 400;
	display: flex;
	align-items: center;
}

.footer-links a:before {
	content: 'ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢';
	margin-right: 10px;
	color: var(--gold);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	color: var(--gold);
	transform: translateX(5px);
}

.footer-links a:hover:before {
	opacity: 1;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0.7;
	font-size: 1rem;
	color: var(--gray);
	font-weight: 300;
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100vh;
	background: linear-gradient(135deg, var(--darker), #1a1a1a);
	z-index: 1001;
	transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	padding: 90px 25px 25px;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.mobile-menu a {
	text-decoration: none;
	color: var(--light);
	font-size: 20px;
	font-weight: 600;
	padding: 15px 0;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.mobile-menu a:hover {
	color: var(--gold);
	padding-left: 10px;
}

.close-menu {
	position: absolute;
	top: 25px;
	right: 25px;
	background: none;
	border: none;
	color: var(--light);
	font-size: 28px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.close-menu:hover {
	color: var(--gold);
	transform: rotate(90deg);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: none;
	backdrop-filter: blur(5px);
}

.overlay.active {
	display: block;
}


#suggestions {
	background: #222222 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	padding: 20px !important;
	border-radius: 20px !important;
	border: 1px solid #383838 !important;
}

.logo-icon img {
	width: 95%;
	height: 95%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}


ul.header__media {
	display: flex;
	align-items: center;
	gap: 12px;
}

ul.header__media li::marker {
	content: '';
	display: none;
}

ul.header__media li {
	width: 24px;
	height: 24px;
}

ul.header__media li svg {
	width: 100%;
	height: 100%;
}

.contact-details p a {
	color: inherit;
	text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 10px;
		padding-top: 0;
	}

	.hero-text {
		padding-right: 0;
		text-align: center;
	}

	.transfer-form {
		margin: 0 auto;
		max-width: 100%;
	}

	.hero h1 {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	nav {
		display: none;
	}

	.header-container {
		padding: 10px 20px;
	}

	.header-container.scrolled {
		padding: 10px 20px;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.form-row {
		grid-template-columns: 1fr 1fr;
	}

	.checkbox-group {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.tariff-card.popular {
		transform: scale(1);
	}

	.transfer-form {
		padding: 25px;
	}

	.features-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {

	input,
	select {
		padding: 8px 16px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 70px;
		height: auto;
		min-height: 100vh;
	}

	.hero h1 {
		font-size: 2rem;
		margin-bottom: 0;
	}

	.hero p {
		font-size: 1rem;
		margin-bottom: 0;
	}

	.transfer-form {
		padding: 20px;
		width: 100%;
	}

	section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.feature-card,
	.tariff-card,
	.review-card {
		padding: 30px 20px;
	}

	.checkbox-group {
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
		gap: 10px 20px;
	}

	.form-title {
		font-size: 1.4rem;
		display: none;
	}

	.logo-text {
		display: none;
	}

	.hero-text p {
		display: none;
	}

	.menu-toggle {
		order: 1;
	}


	ul.header__media li {
		width: 28px;
		height: 28px;
	}

	.contact-details p a {
		color: inherit;
		text-decoration: none;
	}
}