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

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#header, #footer {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 10px;
	}

#header img {
	width: 100%; height: auto;
}
	

.container {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.profile-wrapper {
    width: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: #D6D6D6;
	margin-bottom: -5px;
}

.terms {
	font-size: 12px;
    line-height: 15px;
    color: #666;
    padding-bottom: 10px;
    text-align: center;
}

.profile-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.info {
    text-align: left;
}

.name-location {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 0 5px;
}

.name {
    text-transform: uppercase;
    font-weight: bold;
}

.heart-count {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 0 5px 5px 5px;
}

.likes {
    font-size: 12px;
    text-align: left;
    padding: 0 5px;
}

.heart {
    color: red;
    margin-right: 5px;
}

.action-bar {
    background: red;
    color: white;
    text-align: center;
    padding: 10px 5px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 18px;
    border-radius: 0 0 5px 5px;
}

.row-text {
    text-align: center;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    color: #666;
    margin: 5px 0;
}

.mt {
	margin: -5px 0 0 0;
}

.desktop-action-bar {
    display: none;
}

.desktop-action-bar span {
	color: #333;
	font-family: 'Poppins', sans-serif;
}

.banners {
    width: 100%;
    text-align: center;
    margin: 0 0 15px 0;
}

.banners img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.footer-links {
	margin-top: 10px;
	padding: 5px;
	font-size: 16px;
	line-height: 21px;
	font-weight: bold;
	text-align: center;
}

.footer-links a {
	color: #d70000;
	text-decoration: none;
}

.footer-links p {
	padding: 5px;
	color: #666;
}
	
	
#footer {
	font-size: 13px;
	line-height: 18px;
	font-weight: bold;
	margin: 10px 0;
	color: #666;
}

.sticky-term {
	background-color:rgba(0, 0, 0, 0.6);
    color: #000000;
    position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	width: 100%;
	padding: 3px 0 2px 0;
    text-align: center;
	z-index: 1;
}

.sticky-term a {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
}

/* Mobile-specific styling */
@media (min-width: 768px) {
    
	    .profile-link {
        pointer-events: none;
        cursor: default; 
    }
	
	.name-location {
        font-size: 16px;
    }

    .heart-count {
        font-size: 16px;
    }

    .likes {
        font-size: 14px;
    }

    .action-bar {
        font-size: 16px;
        line-height: 18px;
    }

}

/* Tablet and larger screens (min-width 1024px) */
@media (min-width: 1024px) {
    .name-location {
        font-size: 18px;
    }

    .heart-count {
        font-size: 18px;
    }

    .likes {
        font-size: 16px;
    }

    .action-bar {
        font-size: 18px;
        line-height: 20px;
    }

    .mobile-action-bar {
        display: none;
    }

    .desktop-action-bar {
        display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 20px;
    }
}
